/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #f44336;
    --text-color: #000;
    --body-bg: #f5f5f5;
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

body {
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    font-size: 12px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #3e8e41;
    text-decoration: none;
}

ul {
    list-style: none;
}



.img-fluid {
    max-width: 100%;
    height: auto;
}

button:focus,
a:focus,
input:focus {
    outline: none;
    box-shadow: none;
}

.btn-custom {
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 0;
    display: inline-block;
    text-align: center;
}

.btn-dark {
    background-color: #fff;
    border: 1px solid #000;
    color: black;
    text-transform: uppercase;
    font-size: 12px !important;
}

.btn-dark:hover {
    background-color: #333;
    color: #fff;
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

.cart-wrapper {
    position: relative;
    cursor: pointer;
}

.mini-cart {
    position: absolute;
    top: 150%;
    right: 0;
    width: 320px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
    border: 1px solid #eee;
}

.cart-wrapper:hover .mini-cart {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav-link {
    color: #333;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.header-icons i {
    font-size: 14px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 20px 0;
    border-top: 0;
    border-bottom: 0;
    border: 1px solid #000;
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-content span::after {
    content: "•";
    margin: 0 40px;
    color: #d1d1d1;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.category-box {
    overflow: hidden;
    cursor: pointer;
}

.category-box img {
    transition: transform 0.5s ease;
    display: block;
}

.category-box:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.category-box:hover .overlay {
    background: rgb(255 255 255 / 80%)
}

.cat-btn {
    background: #fff;
    border: none;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cat-btn:hover {
    background: #000;
    color: #fff;
}

.category-box:hover .overlay .cat-btn {
    background: transparent;
    color: red;
}


.brand-item img {
    transition: opacity 0.3s ease-in-out;
}

.brand-item img:hover {
    opacity: 1 !important;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #888 !important;
}

.footer input::placeholder {
    color: #666 !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #333 !important;
    color: #fff !important;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    margin-right: 5px;
}

.social-icons a:hover {
    background-color: #fff !important;
    color: #000 !important;
    cursor: pointer;
}


.hero-slider .hero-slide {
    height: 80vh;
    background: #fff;
}

.hero-slider .row {
    height: 100%;
}

@media (max-width: 991px) {
    .slider-area .hero-slider .hero-slide {
        height: auto;
        padding-bottom: 30px;
    }

    .slider-area .hero-slider .col-12 {
        text-align: center;
    }
}

/* product start */

.product-image {
    position: relative;
    overflow: hidden;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.4s ease;
}

.product-image:hover .hover-img {
    opacity: 1;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    color: #ff5722;
    border: 1px solid #ff5722;
    padding: 5px;
    line-height: 1;
}

.product-actions {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 0.4s ease;
    gap: 10px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.single-product:hover .product-actions {
    bottom: 20px;
}

@media (min-width: 1400px) {
    .container-xxl {
        max-width: 95%;
    }
}

.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    padding: 8px 10px;
    border-radius: 50%;
}

.single-product:hover .heart-icon {
    opacity: 1;
    visibility: visible;
}

.single-product {
    border: 1px solid #ddd;
}

#pills-tab .nav-link {
    color: #888;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    background: none !important;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

#pills-tab .nav-link.active,
#pills-tab .nav-link:hover {
    color: #000;
}

#pills-tab .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#pills-tab .nav-link.active::after {
    width: 40%;
}

.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    background: #ffffff;
    color: #000000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.single-product:hover .heart-icon {
    opacity: 1;
    visibility: visible;
}

.heart-icon:hover {
    background: #000000;
    color: #ffffff;
}

.product-actions i {
    font-size: 10px;
    margin-right: 8px;
}

.product-slider .owl-item {
    border-right: 1px solid #ddd;
}

.product-slider .owl-item:first-child {
    border-left: 1px solid #ddd;
}


.product-slider .owl-stage {
    display: flex;
}

.product-slider .owl-item {
    border-right: 1px solid #ddd;
}


/* --- DASHBOARD CUSTOM NAV --- */
.custom-dashboard-nav .nav-link {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-bottom: 1px solid #ebebeb;
    transition: all 0.3s ease;
}

.custom-dashboard-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: #000;
}

.custom-dashboard-nav .nav-link.active {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.custom-dashboard-nav .nav-link:last-child {
    border-bottom: none;
}

.product-actions .btn {
    font-size: 12px;
}

/* promo */
.promo-section {
    padding-top: 5rem;
    padding-bottom: 0;
}

/* --- PROMO CARD STYLES --- */
.promo-card {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 400px;
}


.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 1.2s ease;
}

/* --- OVERLAY STYLES --- */
.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 1.2s ease;
    z-index: 1;
}

/* --- CONTENT STYLES --- */
.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 300px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    transition: all 1.2s ease;
}

.promo-content .category {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.promo-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.promo-content .shop-link {
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.promo-content .shop-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.5s ease-out;
    transform-origin: bottom right;
}

/* --- HOVER INTERACTIONS --- */
.promo-card:hover::after {
    background-color: rgba(255, 255, 255, 0.7);
}

.promo-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.promo-card:hover .promo-content,
.promo-card:hover .promo-content h3,
.promo-card:hover .promo-content h3 a,
.promo-card:hover .promo-content .shop-link,
.promo-card:hover .promo-content .category {
    color: #000000;
}

.promo-card:hover .promo-content .shop-link::after {
    background-color: #000000;
    transform: scaleX(1);
    transform-origin: bottom left;
}

.promo-card:hover .promo-content {
    transform: translate(-50%, -50%) translateY(-10px);
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 767.98px) {
    .promo-card {
        height: 250px;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }
}


@media (min-width: 768px) {
    .promo-slider.owl-carousel {
        display: flex !important;
        flex-wrap: nowrap;
    }

    .promo-slider .owl-item {
        width: 33.33% !important;
        float: left !important;
    }
}

.dropdown-menu-custom {
    transform-origin: top center;
    will-change: transform, opacity;
}

.submenu-caret {
    transition: transform 0.22s ease;
    font-size: 12px;
}

/* rotate caret when associated link has aria-expanded=true */
a[aria-expanded="true"] .submenu-caret {
    transform: rotate(180deg);
}



/* Header search styling */
.search-input {
    height: 44px;
    border-radius: 50px 0 0 50px;
    border-right: 0;
}

.search-btn {
    border-radius: 0 50px 50px 0;
    background: #28a745;
    border-color: #28a745;
}

.navbar .search-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(40, 167, 69, 0.15);
}

@media (max-width: 767px) {

    .search-input,
    .search-btn {
        height: 42px;
    }
}

/* Make desktop centered search a bit smaller and neater */
@media (min-width: 768px) {
    .navbar .w-50 {
        max-width: 480px;
    }

    .search-input {
        height: 40px;
        font-size: 14px;
    }
}

/* Mobile search panel styles */
.mobile-search-panel {
    display: none;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: max-height 0.22s ease, opacity 0.2s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.mobile-search-panel.show {
    display: block;
    max-height: 120px;
    opacity: 1;
}

.mobile-search-close {
    border-left: 1px solid #e9e9e9;
    color: #777;
}

.mobile-search-toggle {
    font-size: 18px;
}

/* Top info bar */
.topbar {
    background: #0b0b0b;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.topbar a {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
}

.topbar a:hover {
    opacity: 1;
    text-decoration: underline;
}

.topbar .topbar-left span,
.topbar .topbar-left a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar .topbar-right a {
    color: #fff;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .topbar {
        display: none !important;
    }
}

/* Prevent inline collapse panels from appearing under items in the offcanvas — use side panel instead */
.offcanvas .collapse {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Header polish */
.navbar-brand {
    letter-spacing: 2px;
    color: #111;
}

.header-icons a {
    color: #333;
    transition: transform .12s ease, color .12s ease;
}

.header-icons a:hover {
    transform: translateY(-3px);
    color: #000;
}

/* Sticky header styles */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1110;
    transform: translateY(0);
    transition: transform .28s cubic-bezier(.2, .9, .25, 1), box-shadow .22s ease, background .22s ease, padding .22s ease;
    will-change: transform;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
}

/* hidden when scrolling down */
header.header-hidden {
    transform: translateY(-110%);
}

/* compact / scrolled state */
header.header-scrolled {
    box-shadow: 0 8px 30px rgba(10, 10, 10, 0.08);
}

header.header-scrolled .navbar {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

header.header-scrolled .navbar-brand {
    transform: scale(0.96);
    transition: transform .22s ease;
}

/* Make centered search a bit smaller and neater */
@media (min-width: 768px) {
    form.d-md-flex.mx-auto.w-50 {
        max-width: 560px;
    }
}

.search-input {
    height: 40px;
    border-radius: 0;
}

.search-btn {
    border-radius: 0;
}

/* Dropdown hover animation (desktop single-column dropdown) */
.dropdown-menu-custom {
    border: 0;
    box-shadow: 0 8px 24px rgba(8, 9, 10, 0.08);
    padding: 12px 0;
    min-width: 220px;
    transition: transform .18s ease, opacity .18s ease;
    transform-origin: top center;
    opacity: 0;
    transform: translateY(0);
}

.nav-item.dropdown:hover>.dropdown-menu-custom {
    display: block;
    transform: translateY(6px);
    opacity: 1;
}

.dropdown-menu-custom .dropdown-item {
    padding: 8px 24px;
    font-size: 14px;
    color: #333;
}

.dropdown-menu-custom .dropdown-item:hover {
    background: transparent;
    color: #000;
}

/* Offcanvas panel polish */
.offcanvas-panel {
    position: absolute;
    right: -320px;
    top: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 30px rgba(10, 10, 10, 0.06);
    transition: right .22s cubic-bezier(.2, .9, .25, 1);
    z-index: 1055;
}

.offcanvas-panel[aria-hidden="false"] {
    right: 0;
}

.panel-header .panel-back {
    color: #333;
}

.panel-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.panel-list li a {
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-item-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin-right: 12px;
    transition: background .15s ease, transform .18s ease;
}

.panel-list li a:hover .panel-item-icon {
    background: #111;
    transform: translateX(4px);
}

/* Mobile search panel smoothing */
.mobile-search-panel {
    transition: max-height .22s ease, opacity .18s ease;
    overflow: hidden;
}

.mobile-search-panel .search-input {
    height: 44px;
}

/* Mobile search behaviour: overlay the slider when opened (no layout shift) */
@media (max-width: 767px) {
    header {
        position: relative;
    }

    .mobile-search-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 1070;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height .22s ease, opacity .18s ease, transform .18s ease;
        transform-origin: top center;
    }

    .mobile-search-panel.show {
        max-height: 160px;
        opacity: 1;
        transform: none;
    }

    .mobile-search-panel .container-fluid {
        padding: 8px 12px;
    }

    .mobile-search-toggle {
        display: inline-block;
    }

    /* slider stays in place; search overlays it */
    .slider-area {
        margin-top: 0;
    }

    /* Sticky search bar (appears after user scrolls) */
    .sticky-search {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1099;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        transition: transform .22s cubic-bezier(.2, .9, .25, 1), opacity .18s ease;
        opacity: 0;
    }

    .sticky-search .container-fluid {
        padding: 10px 12px;
    }

    .sticky-search.show {
        transform: translateY(0);
        opacity: 1;
    }

    .sticky-search .search-input {
        height: 42px;
    }

    .sticky-search .search-btn {
        height: 42px;
    }

    .sticky-search-close {
        font-size: 20px;
        line-height: 1;
    }

    /* Ensure page content is not hidden behind sticky bar when visible (small offset) */
    body.has-sticky-search {
        padding-top: 62px;
    }
}

/* Shift main list when panel opens */
.offcanvas-main.shifted {
    transform: translateX(-320px);
    transition: transform .22s cubic-bezier(.2, .9, .25, 1);
}

/* Center desktop search visually */
@media (min-width: 768px) {
    header>nav.navbar.py-1 {
        position: relative;
    }

    header>nav.navbar.py-1 form.d-md-flex.mx-auto.w-50 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 560px;
        max-width: 60%;
        z-index: 1050;
    }

    header>nav.navbar.py-1 .navbar-brand,
    header>nav.navbar.py-1 .header-icons {
        position: relative;
        z-index: 1060;
    }
}

/* Quick View Modal Styles */
#quickViewModal .modal-content {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#quickViewModal .btn-close {
    background-color: #fff;
    border-radius: 50%;
    padding: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

#quickViewModal .btn-close:hover {
    opacity: 1;
}

.quantity-control input:focus {
    outline: none;
    box-shadow: none;
}

.qty-btn i {
    color: #555;
    transition: color 0.2s ease;
}

.qty-btn:hover i {
    color: #000;
}

/* Share Hover Effect */
.social-icons-popup {
    top: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-icons-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    display: block;
    width: 0;
}

.share-wrapper:hover .social-icons-popup {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.social-icons-popup a {
    font-size: 14px;
    transition: color 0.2s ease;
}

.social-icons-popup a:hover {
    color: #000 !important;
}

/* White Blurred Backdrop for Modal */
.modal-backdrop.show {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(8px);
}

/* Quick View Slider Nav Arrows */
.quickview-slider .owl-nav button.owl-prev,
.quickview-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    color: #000 !important;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 12px !important;
}

.quickview-slider .owl-nav button.owl-prev {
    left: 10px;
}

.quickview-slider .owl-nav button.owl-next {
    right: 10px;
}

.quickview-slider:hover .owl-nav button.owl-prev,
.quickview-slider:hover .owl-nav button.owl-next {
    opacity: 1;
}

.quickview-slider .owl-nav button.owl-prev:hover,
.quickview-slider .owl-nav button.owl-next:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Mini Cart Hover Styling */
.cart-wrapper {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.cart-wrapper:hover .mini-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart {
    position: absolute;
    top: 100%;
    right: -10px;
    width: 320px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    padding: 20px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.25, 1);
    text-align: left;
}

/* Caret/Pointer on Top */
.mini-cart::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 18px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #eaeaea;
}

.mini-cart::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 18px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.cart-items {
    list-style: none;
    margin: 0;
}

.remove-cart-item {
    font-size: 14px;
    color: #999 !important;
    transition: color 0.2s;
}

.remove-cart-item:hover {
    color: #000 !important;
}

/* Review Slider */
.review-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-slider-wrapper .owl-stage-outer {
    overflow: visible !important;
}

.review-slider .owl-item {
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.review-slider .owl-item.center {
    opacity: 1;
}

.review-slider .review-card {
    padding: 40px;
    margin: 20px 0;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    background: #fff;
}

.review-slider .owl-item.center .review-card {
    border: 1px solid #ccc;
}

.review-slider .owl-nav button.owl-prev,
.review-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    border: 1px solid #ccc !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    font-size: 10px !important;
    z-index: 10;
}

.review-slider .owl-nav button.owl-prev {
    left: -15px;
}

.review-slider .owl-nav button.owl-next {
    right: -15px;
}

.review-slider .owl-nav button:hover {
    background: #f8f8f8 !important;
}

.review-slider .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.review-slider .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.review-slider .owl-dots .owl-dot.active {
    background: #fff !important;
}

.review-slider .owl-dots .owl-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #000;
    border-radius: 50%;
}

/* Product Details Gallery */
.product-gallery .gallery-item {
    cursor: zoom-in;
    overflow: hidden;
}

.product-gallery .zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    z-index: 2;
}

.product-gallery .gallery-item:hover .zoom-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Custom Magnific Popup Styling */
.mfp-zoom-in.mfp-bg {
    background: #fff;
    opacity: 1 !important;
}

.mfp-zoom-in .mfp-close {
    color: #000 !important;
    border: 1px solid #ddd !important;
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    text-align: center;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    opacity: 1;
    font-weight: 300;
    background: #fff !important;
    transition: all 0.3s ease;
    z-index: 1046;
}

.mfp-zoom-in .mfp-close:hover {
    background: #f8f8f8 !important;
}

.mfp-zoom-in .mfp-arrow {
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 44px !important;
    height: 44px !important;
    top: 50% !important;
    margin-top: -22px !important;
    transform: none !important;
    background: transparent !important;
}

.mfp-zoom-in .mfp-arrow-left {
    left: 40px !important;
}

.mfp-zoom-in .mfp-arrow-right {
    right: 40px !important;
    left: auto !important;
}

.mfp-zoom-in .mfp-arrow::before,
.mfp-zoom-in .mfp-arrow::after {
    display: none;
    /* Hide default arrows */
}

/* Custom Arrow Icons inside mfp-arrow using pseudo elements */
.mfp-zoom-in .mfp-arrow-left::after {
    content: '\f104';
    /* fa-angle-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #000;
    position: absolute;
    display: block !important;
    top: 0;
    left: 0;
    transform: none;
    font-size: 16px;
    border: 1px solid #ddd;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mfp-zoom-in .mfp-arrow-right::after {
    content: '\f105';
    /* fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #000;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transform: none;
    font-size: 16px;
    border: 1px solid #ddd;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mfp-zoom-in .mfp-arrow-left:hover::after,
.mfp-zoom-in .mfp-arrow-right:hover::after {
    background: #f8f8f8;
}

/* Reduce Magnific Popup Shadow */
.mfp-zoom-in .mfp-figure::after {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

img.mfp-img {
    box-shadow: none !important;
}

.product-info.section-padding.py-5 {
    border-bottom: 1px solid #000;
}

.add-to-cart-btn:hover {
    background-color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cursor-pointer {
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background-color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Icon Actions Layout */
.product-action-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.single-product:hover .product-action-top-right {
    opacity: 1;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
}

.action-btn:hover {
    color: #000;
    transform: scale(1.1);
}

/* Show on mobile by default */
@media (max-width: 767px) {
    .product-action-top-right {
        opacity: 1;
    }
}

/* Fix Z-index and Cross Icon */
.mfp-bg {
    z-index: 10500 !important;
}

.mfp-wrap {
    z-index: 10501 !important;
}

.mfp-zoom-in .mfp-close {
    z-index: 10505 !important;
    font-size: 28px !important;
    font-family: Arial, sans-serif !important;
    color: #000 !important;
    opacity: 1 !important;
}

.mfp-arrow-right::after {
    border-left: 17px solid #FFF;
    margin-left: 0 !important;
}

/* Category Slider Customization */
.category-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.category-slider .owl-nav button.owl-prev,
.category-slider .owl-nav button.owl-next {
    pointer-events: auto;
    background: transparent !important;
    color: #333 !important;
    font-size: 24px !important;
    margin: 0 -20px;
}

.category-slider .owl-nav button.owl-prev:hover,
.category-slider .owl-nav button.owl-next:hover {
    color: #000 !important;
}

.category-slider .owl-dots {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0 !important;
    padding: 6px 14px !important;
    border: 2px solid #ebebeb;
    border-radius: 30px;
    background: #fff;
}

.category-slider .owl-dots.disabled {
    display: none !important;
}

.category-slider .owl-dots .owl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
}

.category-slider .owl-dots .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    background: #ebebeb !important;
    border-radius: 50% !important;
    margin: 0 !important;
    display: block;
    transition: all 0.3s ease;
}

.category-slider .owl-dots .owl-dot.active span {
    background: #000 !important;
}

.category-slider {
    text-align: center;
    /* Centers the inline-flex owl-dots */
}

.category-slider .owl-stage-outer {
    /* No border here to prevent it going down to text */
}

.category-item .icon-wrapper {
    border-top: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.category-slider .owl-item:first-child .icon-wrapper {
    border-left: 1px solid #ebebeb;
}

.category-slider-container {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.category-item:hover {
    background: #fafafa;
}

/* Custom Dropdown Styling for Breadcrumb */
.custom-dropdown .dropdown-toggle::after {
    display: none;
}

.custom-dropdown .dropdown-toggle i.fa-angle-down {
    font-size: 10px;
}

.custom-dropdown .dropdown-menu {
    min-width: 260px;
    padding: 0;
    border: 1px solid #ebebeb !important;
}

.custom-dropdown .dropdown-item {
    font-size: 13px;
    padding: 14px 20px;
    color: #777;
    border-bottom: 1px solid #f9f9f9;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #000;
}

.custom-dropdown .dropdown-item.active-sort {
    background-color: #000;
    color: #fff;
}

/* Sticky Filter Button */
.fixed-filter-btn {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 1030;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    background-color: #212529 !important;
    color: #fff !important;
    border: none !important;
}

/* Offcanvas Subcategory Styles */
.subcat-item {
    transition: all 0.2s ease-in-out;
    border-left: 2px solid transparent;
}

.subcat-item:hover {
    background-color: #f8f9fa;
    border-left-color: #212529;
}

.subcat-item .subcat-text {
    color: #6c757d;
    transition: color 0.2s ease;
}

.subcat-item:hover .subcat-text {
    color: #212529;
    font-weight: 500;
}

/* Custom Pagination */
.custom-pagination .page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-pagination .page-btn:hover,
.custom-pagination .page-btn.active {
    background-color: #000;
    color: #fff;
}

/* Login Animation */
.login-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wishlist Remove Icon Hover */
.wishlist-remove-icon {
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    color: #999;
    font-size: 15px;
}

.wishlist-row:hover .wishlist-remove-icon {
    opacity: 1;
}

.wishlist-remove-icon:hover {
    color: #ff4747 !important;
}

/* Custom Radio Button for Cart & Checkout */
.custom-radio {
    border-color: #000;
    box-shadow: none !important;
    border-radius: 50% !important;
    cursor: pointer;
}

.custom-radio:checked {
    background-color: #000;
    border-color: #000;
}

/* Custom Checkbox for Checkout */
.custom-checkbox {
    border-color: #000;
    box-shadow: none !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: #000;
    border-color: #000;
}

/* Blog Styles */
.group-hover:hover .blog-img {
    transform: scale(1.05);
}

.hover-title {
    transition: color 0.3s ease;
}

.hover-title:hover {
    color: #6c757d !important;
}

.hover-bg-light {
    transition: background-color 0.3s ease;
}

.hover-bg-light:hover {
    background-color: #f8f9fa !important;
}