@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Utendo';
    src: url('../../fonts/utendo/Utendo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Utendo';
    src: url('../../fonts/utendo/Utendo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #5F0005;
    --secondary-color: #504D50;
    --background-color: #E9EAE9;
    --border-color: #ddd;
    --font-family: "Utendo", "Noto Sans Bengali", sans-serif;
    --size-hover-bg: rgba(0, 0, 0, 0.05);
    --size-hover-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.25s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--secondary-color);
    background: white;
}

a{
    text-decoration: none;
}

/* Global Container */
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 8px;
    box-sizing: border-box;
}

.row{
    padding: 0px !important;
    margin: 0px !important;
}

@media (min-width: 768px) {
    
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 992px) {
    .section-gap {
        padding: 8px 0;
    }
}


/* Header Styles */
.header {
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    padding: 0;
    overflow: visible;
}

.nav {
    padding: 16px 0;
    display: block;
    z-index: 1000;
}

.nav .row {
    display: flex;
    align-items: center;
}

/* .logo {
    display: flex;
    align-items: center;
} */

.logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.logo h1 a {
    color: #000;
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.logo-s-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: 2px;
    right: -3px;
}

.logo-text {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    flex-direction: row;
    justify-content: center;
    z-index: 1000;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    z-index: 1000;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: flex-end;
    color: #333;
}
.nav-icons i{
    color: #333 !important;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn svg {
    display: block;
}

.mobile-search-container {
    position: relative;
    background: white;
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 100%;
    animation: t6-search-slide-down 0.2s ease;
}

@keyframes t6-search-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Category Menu Navigation */
.category-menu-nav {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: visible;
    position: relative;
}

.category-menu-nav .container,
.category-menu-nav .row,
.category-menu-nav .row > [class*="col-"] {
    overflow: visible;
}

.category-menu-nav .container {
    padding: 0;
    position: relative;
}

@media (max-width: 991px) {
    /* Center the Shop By Category section on mobile */
    .shop-category-btn{
        justify-content: center;
    }
}

.category-menu-nav-mobile {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.category-menu-nav-mobile .container {
    padding: 0 8px;
}

.mobile-main-category-list ul {
    list-style: none;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    overflow-x: visible;
    text-align: right;
}

.mobile-main-category-list li a {
    font-size: 14px;
    font-weight: 500;
    color: #504D50;
    white-space: nowrap;
}

.mobile-main-category-list li a:hover {
    color: var(--primary-color);
}

.shop-by-category-menu {
    position: relative;
    overflow: visible;
}

.shop-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0px;
    background: white;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.shop-category-btn:hover {
    /* background: #1a4d8a; */
}

.shop-category-btn i {
    font-size: 20px;
    color: var(--primary-color);
}

.shop-category-btn span{
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.category-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    border: 1px solid #eee;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    max-height: 600px;
    overflow: visible;
}


.shop-by-category-menu:hover .category-dropdown-menu {
    display: block;
}

.category-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.category-menu-item {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    overflow: visible;
}

.category-menu-item:last-child {
    border-bottom: none;
}

.category-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.category-menu-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.category-menu-link i {
    font-size: 12px;
    color: #999;
}

.category-menu-item:hover .category-menu-link i {
    color: var(--primary-color);
}

.subcategory-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 240px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 600px;
    overflow: visible; /* no overflow - lets child flyout show on right; scroll via inner wrapper if needed */
    margin-left: 0;
}

.category-menu-item:hover > .subcategory-menu {
    display: block !important;
}

/* Keep subcategory menu open when hovering over it */
.subcategory-menu:hover {
    display: block !important;
}

.subcategory-menu li,
.subcategory-menu-item {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.subcategory-menu li:last-child,
.subcategory-menu-item:last-child {
    border-bottom: none;
}

.subcategory-menu a,
.subcategory-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.subcategory-menu a i,
.subcategory-menu-link i {
    font-size: 12px;
    color: #999;
}

.subcategory-menu a:hover,
.subcategory-menu-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 20px;
}

.subcategory-menu-item:hover .subcategory-menu-link i {
    color: var(--primary-color);
}

/* Child category flyout menu - shows on right when hovering subcategory */
.childcategory-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: -1px; /* eliminate gap so hover doesn't break */
    min-width: 240px;
    width: 240px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 600px;
    overflow-y: auto;
}

.subcategory-menu-item:hover > .childcategory-menu {
    display: block !important;
}

.subcategory-menu-item .childcategory-menu:hover {
    display: block !important;
}

.childcategory-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.childcategory-menu li:last-child {
    border-bottom: none;
}

.childcategory-menu a {
    display: block;
    padding: 7px 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.childcategory-menu a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 20px;
}

/* Navigation Links Menu */
.nav-links-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    min-height: 48px;
    overflow: visible;
    position: relative;
}

.nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link-arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.25s ease, color 0.25s ease;
}

.nav-link-wrap:hover .nav-link-arrow {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.nav-link-item:last-child {
    border-right: none;
}

.nav-link-item:hover {
    color: var(--primary-color);
    background: #f8f9fa;
}

/* Nav link wrap – no position so mega menu uses nav-links-menu as containing block */
.nav-link-wrap {
    position: static;
    overflow: visible;
}

.nav-link-wrap > .nav-link-item {
    position: relative;
    z-index: 1;
}

/* Mega menu – full width of nav-links-menu, appears below it on hover */
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    padding: 0px 24px;
}

.nav-link-wrap:hover .mega-menu {
    display: block;
}

.mega-menu-inner {
    width: 100%;
}

.mega-menu-main-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
    letter-spacing: 0.02em;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 36px;
}

.mega-menu-column {
    min-width: 0;
    padding: 12px 0;
}

.mega-menu-header {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 6px;
    padding: 6px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    transition: color 0.2s, padding-left 0.2s;
}

.mega-menu-header:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-links li {
    margin: 0;
    position: relative;
    padding-left: 16px;
}

.mega-menu-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.mega-menu-links a {
    display: block;
    padding: 1px 0;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.mega-menu-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

/* Outlets Link Styling */
.outlets-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.outlets-link:hover {
    color: #000;
    background: #f8f9fa;
}

.outlets-icon {
    width: 18px;
    height: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    fill: var(--primary-color);
}

.outlets-link:hover .outlets-icon {
    transform: scale(1.1);
    fill: #000;
}

/* Responsive Category Menu */
@media (max-width: 991px) {
    .category-dropdown-menu {
        width: 100%;
        position: static;
        border-top: 1px solid #eee;
        box-shadow: none;
        display: none;
    }
    
    .shop-by-category-menu:hover .category-dropdown-menu {
        display: block;
    }
    
    .subcategory-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        border-top: 1px solid #f0f0f0;
        margin-top: 5px;
    }

    .childcategory-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        border-top: 1px solid #f0f0f0;
        margin-top: 5px;
    }
    
    .nav-links-menu {
        flex-wrap: wrap;
        padding: 8px 0;
    }
    
    .nav-link-item {
        padding: 8px 12px;
        font-size: 13px;
        border-right: 1px solid #eee;
    }
    
    .nav-link-item:last-child {
        border-right: none;
    }
    
    .mega-menu {
        display: none !important;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .shop-category-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .nav-link-item {
        padding: 8px 10px;
        font-size: 12px;
    }
}

.nav-menu {
    width: 100%;
    background: white;
    padding: 0;
    border-top: 1px solid #eee;
}
.nav-menu ul li {
    padding: 8px 25px;
    border-right: 1px solid #eee;
}
.nav-menu ul li:last-child {
    border-right: none;
}
.nav-menu ul li .submenu li {
    padding: 0px;
    display: block;
}
.nav-menu ul li a:hover:after {
    width: 100%;
    left: 0;
}

/* Submenu */
.has-submenu {
    position: relative;
    z-index: 1000;
}
.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--secondary-color);
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
}
.submenu-toggle:hover {
  color: var(--primary-color);
  z-index: 1000;
}
.sub.has-submenu .submenu-toggle {
    padding: 0;
    border: 0;
    z-index: 1000;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.submenu {
    display: none !important;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    position: absolute;
    min-width: 300px;
    left: 0 !important;
    top: 43px;
    border-radius: 0;
    border: 1px solid #eee;
    z-index: 1000;
}
.has-submenu .sub.submenu {
    top: -1%;
    left: -101% !important;
    z-index: 1000;
}
.submenu li a {
    padding: 10px 15px;
    display: block;
    color: var(--secondary-color);
    transition: all ease-in-out 0.1s;
    border-bottom: 1px solid #eee;
}
.submenu li:last-child a {
    border-bottom: none;
    z-index: 1000;
}
.submenu li a:hover{
    color: var(--primary-color);
    z-index: 1000;
}
.submenu li a:hover, .submenu .submenu-toggle:hover {
    background-color: #e1e1e170;
}
.arrow {
    transition: transform 0.3s;
    font-size: 12px;
    color: #777;
}
.has-submenu.open > .submenu {
  display: block !important;
}
li.sub.has-submenu ul li{
    padding:0px;
    border: 0px;
}
li.sub.has-submenu ul li a{
    padding: 10px 15px;
    display: block;
    border-bottom:1px solid #eee;
}
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 716px;
    margin: 0 auto;
    width: 100%;
}

.search-box input {
    padding: 0.75rem 4rem 0.75rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 35px;
    border-radius: 6px;
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.search-btn:hover {
    background-color: #FF1493;
}

.search-btn i {
    color: #fff;
    font-size: 0.9rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-icon i {
    color:  var(--primary-color) !important;
}



.cart-icon svg {
    display: block;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: none;
    min-width: 20px;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 999999;
}

.user-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.user-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-icon-wrapper svg {
    display: block;
}

.user-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.user-text-login {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.user-text-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.user-text-register {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.user-btn:hover .user-text-login,
.user-btn:hover .user-text-register {
    color: var(--primary-color);
}
.user-menu {
    position: relative;
}

.user-submenu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 160px;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-submenu a {
    display: block;
    padding: 10px 18px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.user-menu.open .user-submenu {
    display: block;
}

.user-submenu a:hover{
  background: #f8f9fa;
  color: var(--primary-color) !important;
}

.login-link, .register-link{
  border-bottom: 1px solid var(--border-color);
}
.user-submenu i{
  color: var(--primary-color) !important;
}


.login-link i{
  color: var(--primary-color) !important;
}

/* Left Navigation Links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 8px !important;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 10px;
    margin-left: 3px;
}

.dropdown-nav {
    position: relative;
    cursor: pointer;
}

.dropdown-menu-nav {
    display: none;
    position: absolute;
    top: 82%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    width: 224px;
    overflow-y: auto;
    overflow-x: visible;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    margin-top: 5px;
    border-radius: 4px;
}

.dropdown-nav:hover .dropdown-menu-nav {
    display: block;
}

/* Keep dropdown open when hovering over the menu */
.dropdown-menu-nav:hover {
    display: block;
}

.dropdown-menu-nav a {
    display: block;
    padding: 10px 15px;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: none;
    font-weight: normal;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.dropdown-menu-nav a:last-child {
    border-bottom: none;
}

.dropdown-menu-nav a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

/* Nested Category Dropdown Styles */
.dropdown-category-item {
    position: relative;
    overflow: visible;
}

.category-main-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.category-arrow,
.child-arrow {
    font-size: 10px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.dropdown-category-item:hover .category-arrow,
.subcategory-link:hover .child-arrow {
    transform: translateX(3px);
}

.dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 200px;
    max-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: visible;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    margin-left: 2px;
    white-space: nowrap;
}

/* Show submenu on hover - multiple selectors for reliability */
.dropdown-category-item:hover .dropdown-submenu,
.category-main-link:hover + .dropdown-submenu,
.category-main-link:hover ~ .dropdown-submenu,
.dropdown-category-item:hover > .dropdown-submenu {
    display: block !important;
}

/* Keep submenu open when hovering over it */
.dropdown-submenu:hover {
    display: block !important;
}

/* Ensure category item doesn't clip submenu */
.dropdown-menu-nav {
    overflow: visible !important;
}

.dropdown-menu-nav > * {
    overflow: visible !important;
}

.dropdown-submenu a {
    display: block;
    padding: 10px 15px;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: none;
    font-weight: normal;
    border-bottom: 1px solid #eee;
    position: relative;
}

.dropdown-submenu a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.dropdown-subcategory-item {
    position: relative;
}

.subcategory-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-childmenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 200px;
    max-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    margin-left: 2px;
}

.dropdown-subcategory-item:hover .dropdown-childmenu {
    display: block;
}

/* Keep child menu open when hovering over it */
.dropdown-childmenu:hover {
    display: block;
}

.childcategory-link {
    display: block;
    padding: 10px 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    padding-left: 20px;
}

.childcategory-link:last-child {
    border-bottom: none;
}

.childcategory-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.dropdown-submenu a:last-child,
.dropdown-subcategory-item:last-child a {
    border-bottom: none;
}

/* Center Logo/Brand */
.logo-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-graphic {
    position: relative;
    width: 70px;
    height: 35px;
    margin-bottom: 8px;
}

.logo-graphic::before,
.logo-graphic::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 25px;
    border-radius: 50% 50% 0 0;
}

.logo-graphic::before {
    left: 0;
    background: #A8D5BA;
    z-index: 1;
}

.logo-graphic::after {
    right: 0;
    background: var(--primary-color);
    z-index: 2;
}

.logo-brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: lowercase;
    
}

.logo-brand-tagline {
    font-size: 10px;
    color: #999;
    text-transform: lowercase;
    
}

.brand-tagline {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    margin-top: 2px;
    position: relative;
}

.brand-tagline::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo h1 a {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    flex-direction: row;
    justify-content: center;
    z-index: 1000;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    z-index: 1000;
}

.nav-menu a:hover {
    color: var(--primary-color);
}


.search-icon,
.user-icon-btn,
.wishlist-icon,
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover,
.user-icon-btn:hover,
.wishlist-icon:hover{
    color: var(--primary-color);
}

.user-icon-btn {
    font-size: 20px;
}

.wishlist-icon {
    position: relative;
}

.wishlist-count {
    position: absolute;
    top: -2px;
    right: -9px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.toggleMenu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0;
}
.nav-menu {
    width: 100%;
    background: white;
    padding: 0;
    border-top: 1px solid #eee;
}
.nav-menu ul li {
    padding: 8px 25px;
    border-right: 1px solid #eee;
}
.nav-menu ul li:last-child {
    border-right: none;
}
.nav-menu ul li .submenu li {
    padding: 0px;
    display: block;
}
.nav-menu ul li a:hover:after {
    width: 100%;
    left: 0;
}

/* Submenu */
.has-submenu {
    position: relative;
    z-index: 1000;
}
.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--secondary-color);
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
}
.submenu-toggle:hover {
  color: var(--primary-color);
  z-index: 1000;
}
.sub.has-submenu .submenu-toggle {
    padding: 0;
    border: 0;
    z-index: 1000;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.submenu {
    display: none !important;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    position: absolute;
    min-width: 300px;
    left: 0 !important;
    top: 43px;
    border-radius: 0;
    border: 1px solid #eee;
    z-index: 1000;
}
.has-submenu .sub.submenu {
    top: -1%;
    left: -101% !important;
    z-index: 1000;
}
.submenu li a {
    padding: 10px 15px;
    display: block;
    color: var(--secondary-color);
    transition: all ease-in-out 0.1s;
    border-bottom: 1px solid #eee;
}
.submenu li:last-child a {
    border-bottom: none;
    z-index: 1000;
}
.submenu li a:hover{
    color: var(--primary-color);
    z-index: 1000;
}
.submenu li a:hover, .submenu .submenu-toggle:hover {
    background-color: #e1e1e170;
}
.arrow {
    transition: transform 0.3s;
    font-size: 12px;
    color: #777;
}
.has-submenu.open > .submenu {
  display: block !important;
}
li.sub.has-submenu ul li{
    padding:0px;
    border: 0px;
}
li.sub.has-submenu ul li a{
    padding: 10px 15px;
    display: block;
    border-bottom:1px solid #eee;
}
.search-box {
    position: relative;
}

.search-box input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    outline: none;
    width: 100%;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 8px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: none;
    animation: fadeInUp 0.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box-lg .search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 12px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 12px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.search-suggestions > div {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.search-suggestions > div:last-child {
    border-bottom: none;
}

.search-suggestions > div:hover {
    background: #f9fafb;
    padding-left: 24px;
}

.search-suggestions > div img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    margin-right: 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.search-suggestions > div span {
    color: #1f2937;
    font-size: 15px;
    font-weight: 400;
    flex: 1;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -8px;
    background: #FF1A58;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    
}

@media (max-width: 767px) {
    .cart-count {
        background: #FF1A58;
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -4px;
        right: -8px;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay-content {
    width: 100%;
    max-width: 900px;
    padding: 0 30px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box-lg {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 8px;
    transition: box-shadow 0.3s ease;
}

.search-box-lg:focus-within {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.search-box-lg input {
    width: 100%;
    padding: 18px 70px 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    background: #ffffff;
    color: #1f2937;
    transition: all 0.3s ease;
}

.search-box-lg input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-box-lg input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 105, 58, 0.1);
}

.search-box-lg i.fa-search {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 20px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-box-lg:focus-within i.fa-search {
    color: var(--primary-color);
}

.close-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #f3f4f6;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: translateY(-50%) rotate(90deg);
}

.close-search:active {
    transform: translateY(-50%) rotate(90deg) scale(0.95);
}
.user-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
}
.user-menu {
    position: relative;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    margin: 16px 0px;
}

.hero-section .row {
    margin: 0;
}

.hero-banner-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Main Banner: 910x512 ratio */
.hero-banner-main {
    aspect-ratio: 862 / 412;
    width: 100%;
}

/* Small Banners Grid: 2x2 layout */
.hero-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
}

/* Small Banner: 292x243 ratio */
.hero-banner-small {
    aspect-ratio: 292 / 243;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .hero-banner-main {
        margin-bottom: 12px;
    }
    
    .hero-banner-grid {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-banner-main {
        margin-bottom: 12px;
    }
    
    .hero-banner-grid {
        gap: 8px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}


.hero-text-inner {
    width: 100%;
}

@media (max-width: 767px) {
    .hero-text-inner {
        max-width: 215px;
    }
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .hero-title {
    font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title-line {
    display: block;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta-button:hover {
    background: var(--secondary-color);
    color: #fff;
}

.hero-arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-arrow-icon {
    transform: translateX(4px);
}



.hero-section img{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
/* Products Section */
/* New Arrivals Section */
.new-arrivals-section {
    background: var(--background-color);
}
.new-arrivals-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left: Text Block */
.new-arrivals-text-block {
    flex: 0 0 30%;
    padding: 60px 40px;
    background: var(--background-color);
}

.new-arrivals-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
    
    line-height: 1.2;
}

.new-arrivals-description {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
    
}

.new-arrivals-shop-btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    
}

.new-arrivals-shop-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Right: Product Cards */
.new-arrivals-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Hide 4th product on desktop (show only 3) */
.new-arrival-product-card.mobile-only {
    display: none;
}

.new-arrival-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.new-arrival-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* height: 100%; */
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f5f5;
}

.product-card-image[src=""],
.product-card-image[src="/"],
.product-card-image:not([src]) {
    opacity: 0;
}

.product-image-container.no-image,
.product-image-container:has(img[src=""]),
.product-image-container:has(.product-card-image[src=""]),
.product-image-container:has(.product-card-image:not([src])) {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container.no-image::after,
.product-image-container:has(img[src=""])::after,
.product-image-container:has(.product-card-image[src=""])::after,
.product-image-container:has(.product-card-image:not([src]))::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: block;
}

/* Product Sale Badge */
.product-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Product New Badge */
.product-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Product Badges (legacy - keeping for backward compatibility) */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.badge-hot,
.badge-discount {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    
}

.badge-hot {
    background: #f5f5f5;
    color: var(--secondary-color);
}

.badge-discount {
    background: var(--secondary-color);
    color: #fff;
}

/* Product Add to Cart Button - Pink Rounded Half Background */
.product-add-to-cart-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 0 12px 0 48px;
    background: #FF1A58;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 26, 88, 0.3);
    padding: 0;
    line-height: 1;
}

.product-add-to-cart-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-top: -2px;
    margin-left: 4px;
    font-size: 18px;
    line-height: 1;
}

.new-arrival-product-card:hover .product-add-to-cart-btn {
    opacity: 1;
    visibility: visible;
}

.product-add-to-cart-btn:hover {
    background: #E91E63;
    box-shadow: 0 4px 12px rgba(255, 26, 88, 0.4);
}

/* Hover Overlay - Hidden (replaced by circular button) */
.product-hover-overlay {
    display: none;
}

.quick-view-btn,
.add-to-bag-btn {
    display: none;
}

/* Sold Out Overlay - Circular, Centered */
.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sold-out-overlay:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Ensure parent containers are positioned relatively */
.product-image-container,
.product-card > a,
.product-card {
    position: relative;
}

.sold-out-overlay .sold-out-text {
    font-size: 12px;
    font-weight: 500;
    color: #504D50;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

/* Product Card Info */
.product-card-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

/* Center product card text across all product grids (index, category, related, etc.)
   Keeps layout consistent and visually balanced for template9 product cards */
.product-card-info,
.related-product-card .product-card-info,
.new-arrival-product-card .product-card-info {
    /* text-align: center; */
    /* align-items: center; */
}
/* .product-card-name {
    text-align: center;
    margin: 0 auto 8px auto;
} */


.product-category {
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.brand-card-link{
    text-decoration: none;
}

.brand-card-link:hover {
    color: #000;
    transform: translateY(-5px);
}

.product-brand-name {
    font-size: 12px;
    color: #D4A574;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

.product-card-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 43.2px;
}

.product-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.discounted-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Legacy product-card-name styles */
.product-card-name-old {
    font-size: 14px;
    font-weight: 500;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.4;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* non-webkit fallback */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 39.2px;
}

.product-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
}

 .original-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
    margin-right: 8px;
}

.discounted-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.category-wise-product-products .discounted-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-align: center;
}



/* Responsive Design for New Arrivals */
@media (max-width: 1200px) {
    .new-arrivals-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .new-arrivals-text-block {
        flex: 0 0 auto;
        padding: 40px 20px;
        text-align: center;
    }
    
    .new-arrivals-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .product-card-name{
        font-size: 14px !important;
    }
    .new-arrivals-section {
        padding: 40px 0;
    }

    .sale-price, .original-price{
        font-size: 14px !important;
    }

    .discounted-price{
        font-size: 14px !important;
    }
    
    .new-arrivals-title {
        font-size: 32px;
    }
    
    .new-arrivals-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Show 4th product on mobile (show all 4 products in 2x2 grid) */
    .new-arrival-product-card.mobile-only {
        display: flex;
    }
    

}

@media (max-width: 480px) {
  

    .sale-price, .original-price{
        font-size: 14px !important;
    }

    .discounted-price{
        font-size: 14px !important;
    }
    

    
    .product-hover-overlay {
        flex-direction: column;
    }
    /* When stacked on very small screens make each action button full width */
    .product-hover-overlay .quick-view-btn,
    .product-hover-overlay .add-to-bag-btn {
        flex: 1 1 100%;
        width: 100%;
        padding: 10px 14px;
        justify-content: center;
    }
    .product-hover-overlay .add-to-bag-btn {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.18);
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    width: 100%;
    /* margin-bottom: 40px; */
}

.breadcrumb-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-bg-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}

.breadcrumb-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    
    letter-spacing: 1px;
}

.breadcrumb-path {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0;
    
    letter-spacing: 0.5px;
}

/* Responsive Breadcrumb */
@media (max-width: 991px) {
    
    .breadcrumb-title {
        font-size: 36px;
    }
    
    .breadcrumb-path {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    
    .breadcrumb-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .breadcrumb-path {
        font-size: 12px;
    }
}

.products-section {
    padding: 60px 0px;
    background: #f8f9fa;
}

product-gallery {
    flex: 1;
    max-width: 100%;
    /* Updated: layout to support vertical thumbnail column on the LEFT of the main image
       Thumbnails will occupy a narrow fixed column and 4 thumbnails will align vertically
       and collectively match the main-image's height. */
    display: flex;
    gap: 16px;
    align-items: stretch; /* ensure thumbnail column stretches to match main image height */
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--background-color);
}
.thumbnail-container {
    display: block; /* not used for vertical layout; kept for compatibility */
}
.thumbnail {
    border: 1px solid #ddd;
    width: 100%;
    /* Height will be calculated to make exactly 4 thumbnails fit the column (subtracting gaps)
       We use calc based on 4 items and 3 gaps of 12px each. */
    height: calc((100% - 36px) / 4);
    object-fit: cover;
    margin: 0;
    border-radius: 0px;
    cursor: pointer;
}
.thumbnail:hover {
    border-color: var(--primary-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Category-wise layout */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-section {
    display: block;
}

.category-section.hidden {
    display: none;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    line-height: 2rem;
}

.category-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.category-container {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
    border: 1px solid #ddd;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 164px;
}
.related-products .product-info {
    min-height: auto;
}
.product-image {
    width: 100%;
    aspect-ratio: 23 / 32; /* Keeps 1380×1920 ratio */
    object-fit: cover;
    object-position: center;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price-value {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
    margin-top: 0.75rem;
    gap: 4rem
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.product-price-heading span{
    font-weight: 400;
    font-size: 18px;
    border-bottom: 1px solid #504D50;
    color: #504D50;
}
.product-price-amount{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* gap: 14px; */
}

.quantity-btn {
width: 30px;
height: 30px;
cursor: pointer;
border: none;
outline: none;
background-color: var(--background-color);
}

.quantity-btn:hover {
background: #f0f0f0;
}

.sale-price, .original-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 8px;
}
.original-price{
    text-decoration: line-through;

}
.product-discount{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.discount-badge {
    background-color: var(--secondary-color);
    color: white;
    font-size: 16px;
    height: 26px;
    width: 95px;
    text-align: center;
    font-weight: 400;
}

.product-rating {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    display: none;
}
.stars i {
    font-size: 10px;
    color: var(--secondary-color);
    letter-spacing: 3px;
}

.attribute-name-heading{
    font-size: 18px;
    font-weight: 400;
}

.select-heading {
    border-bottom: 1px solid var(--secondary-color);
}

.single-product-page .product-title {
    text-align: left;
}
.single-product-page .product-info {
    width: 100%;
}
.add-to-cart-btn {
    width: 100%;
    padding: 8px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    font-weight: 400;
}

.add-to-cart-btn:hover {
    background: #c0392b;
}

/* Product slider start */

/* ----------------------
   Container & Layout
----------------------- */
.zoom-container {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: auto;
    z-index: 1;
    /* padding: 0px; */
    /* border-radius: 10px; */
    width: 100%;
    /* border: 1px solid #eee; */
}

.main-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ----------------------
   Zoom Viewer
----------------------- */
.zoom-result {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 24px); /* Show to the right of the image, past gutter */
    width: 100%;
    border: 1px solid #eaeaec;
    border-radius: 8px; /* Matching the main image wrapper radius */
    background-repeat: no-repeat;
    background-size: 200% 200%;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Add a nice shadow */
    pointer-events: none; /* so mouse events still go to the mainImage underneath */
    background-color: #fff;
}

/* ----------------------
   Thumbnail Grid Container
----------------------- */
.thumbnail-grid-container {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: calc((100% - 36px) / 4); /* 4 rows with 3 gaps of 12px each */
    gap: 12px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 4px;
}

.thumbnail-grid::-webkit-scrollbar {
    width: 4px;
}

.thumbnail-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.thumbnail-grid::-webkit-scrollbar-thumb {
    background: #c3c0c3;
    border-radius: 2px;
}

.thumbnail-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ----------------------
   Thumbnail Grid Images
----------------------- */
.thumbnail-grid-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.thumbnail-grid-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(20, 105, 58, 0.1);
}

.thumbnail-grid-image.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 105, 58, 0.2);
}

/* Legacy thumbnail styles for compatibility */
.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
}
.thumbnail.active { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(20,105,58,0.06); }

/* ----------------------
   Slider Buttons
----------------------- */
.slider-btn {
    border: 1.5px solid #504D50;
    border-radius: 50%;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    color: #504D50;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(63, 61, 63, 0.8);
}

/* Show navigation buttons when hovering over the slider container */
.slider-container:hover .slider-btn {
    opacity: 1;
    display: inline-flex;
}

.slider-btn:hover:not(:disabled) {
    background: #504D50;
    color: #fff;
    border-color: #504D50;
    box-shadow: 0 4px 12px rgba(80, 77, 80, 0.3);
    transform: translateY(-1px);
}

.slider-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(80, 77, 80, 0.2);
}

.slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background: #f9f9f9;
    border-color: #ddd;
    box-shadow: none;
}

/* Product slider End */

/* ============================================
   Cart Sidebar
   ============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 420px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.close-cart {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #666;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.close-cart:hover {
    color: #333;
    background-color: #f5f5f5;
}

.cart-body {
    background-color: #fff;
    padding: 0;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-progress-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.cart-progress {
    height: 16px;
    background-color: #d0d0d0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.cart-progress-bar {
    background-color: #4a4a4a;
    height: 100%;
    width: 25%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
    transition: width 0.3s ease;
}

.cart-progress-text {
    color: #555;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty-message {
    text-align: center;
    color: #666;
    padding: 3rem 1rem;
    font-size: 16px;
    margin: 0;
}

.cart-product-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f7f2f2;
}

.cart-product-item:last-child {
    border-bottom: none;
}

.cart-product-image {
    width: 75px;
    height: 90px;
    background-color: #f5f5f5;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.cart-product-name {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.cart-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF1A58;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.cart-delete-btn:hover {
    color: #e0164a;
    background-color: #fff5f7;
}

.cart-delete-btn i {
    font-size: 14px;
}

.cart-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 6px
}

.cart-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.cart-price-current {
    font-size: 14px;
    color: #FF1A58;
    font-weight: 600;
}

.cart-price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.cart-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
}

.cart-qty-btn {
    background-color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: all 0.2s ease;
    padding: 0;
}

.cart-qty-btn:hover {
    background-color: #f5f5f5;
}

.cart-qty-value {
    width: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0;
    line-height: 32px;
}

.qty-input:focus {
    outline: none;
}

.delete-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 20px;
    margin-left: 10px;
    transition: all 0.2s ease;
    padding: 0;
}

.delete-btn:hover {
    color: #555;
}

.cart-see-more {
    margin: 20px 0;
}

.see-more-link,
.see-more {
    text-align: center;
    color: #555;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    padding-bottom: 5px;
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}

.see-more-link:hover,
.see-more:hover {
    color: #333;
}

.cart-divider,
.divider {
    border-top: 1px solid #999;
    margin: 20px 0;
}

/* Cart Footer */
.cart-footer {
    border-top: 1px solid #e0e0e0;
    padding: 20px 24px;
    background: #fff;
}

.cart-shipping-message {
    margin-bottom: 16px;
}

.shipping-progress-bar {
    height: 4px;
    background: #4caf50;
    border-radius: 2px;
    margin-bottom: 8px;
}

.shipping-text {
    font-size: 14px;
    color: #4caf50;
    margin: 0;
    font-weight: 500;
}

.cart-total-section-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 0;
}

.cart-total-section {
    display: flex;
    flex-direction: column;
}

.cart-total-label {
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.cart-total-amount {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

.cart-view-cart-wrapper {
    display: flex;
    justify-content: flex-end;
}

.btn-view-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-view-cart:hover {
    background-color: #e0164a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 26, 88, 0.3);
}

/* Cart Sidebar Mobile Responsive */
@media (max-width: 767px) {
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 16px 20px;
    }
    
    .cart-title {
        font-size: 18px;
    }
    
    .cart-items {
        padding: 16px 20px;
    }
    
    .cart-product-image {
        width: 70px;
        height: 90px;
    }
    
    .cart-product-name {
        font-size: 14px;
    }
    
    .cart-footer {
        padding: 16px 20px;
    }
    
    .product-price {
        font-size: 14px;
    }
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 0px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1003;
}

.modal-body {
    padding: 2rem;
}

.modal-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #766f6f;
}
.contact-buttons {
    margin-top: 5px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.contact-buttons a{
    font-size: 1.4rem;
    padding: 0.5rem 2rem; 
    border-radius: 5px;
    text-decoration: none;
    width: 100%;
}
.contact-buttons i{
    font-size: 1.5rem;
}
/* Footer */
.footer {
    /* background: #f5f5f5; */
    color: var(--secondary-color);
    padding-top: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 30px;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Footer Logo Section */
.footer-logo-section {
    gap: 8px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    min-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    margin-top: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    padding-top: 0;
    margin-top: 0;
}

.footer-logo .logo-img{
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-logo-shape {
    width: 40px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 8px 8px 4px 4px;
    position: relative;
}

.footer-logo-shape::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 0 0 8px 8px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    
}

.footer-logo-tagline {
    font-size: 11px;
    color: #666;
    
}


.footer-contact-item {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

/* App Download Section */
.footer-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.app-store-badge,
.google-play-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 160px;
    height: 48px;
}

.app-store-badge:hover,
.google-play-badge:hover {
    opacity: 0.8;
}

.app-store-badge img,
.google-play-badge img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    object-fit: contain;
}

.app-badge-text {
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Social Media Section */
.footer-app-social-section .footer-social {
    /* margin-top: 24px; */
}

.footer-social {
    display: flex;
    gap: 16px;
    /* margin-top: 15px; */
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0;
    padding-top: 0;
    line-height: 1.2;
}

/* Align logo and headings on same horizontal line */
.footer-logo-section .footer-logo-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.footer-section .footer-heading {
    margin-top: 0;
    padding-top: 0;
}

/* Ensure all footer sections align at the top */
.footer-section {
    align-items: flex-start;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 30px 0;
    background: #f5f5f5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--secondary-color);
    
}

.footer-copyright p {
    margin: 0;
}

.footer-payment-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}


.payment-logo {
    width: 50px;
    height: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #666;
    font-weight: 600;
    text-align: center;
    padding: 2px;
    
}

.footer-ssl {
    margin-top: 10px;
    max-width: 100%;
    overflow: hidden;
}

.ssl-badge {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-app-social-section {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .footer-payment-section {
        align-items: flex-start;
        width: 100%;
    }
    
}

@media (max-width: 767px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-payment-section {
        align-items: center;
        width: 100%;
    }
    
    .footer-ssl {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .ssl-badge {
        max-width: 100%;
        height: auto;
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Footer Fixed Bar */
.mobile-footer-bar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-footer-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f5f5f5;
        border-top: 1px solid #ddd;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 8px 0;
        justify-content: space-around;
        align-items: center;
    }
    
    .mobile-footer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        padding: 8px 12px;
        flex: 1;
        text-decoration: none;
        color: var(--secondary-color);
        transition: color 0.3s ease;
        position: relative;
        min-width: 0;
        border: none;
        background: none;
    }
    
    /* Make div look like link */
    div.mobile-footer-item {
        text-decoration: none;
    }
    
    .mobile-footer-item:hover,
    .mobile-footer-item:active {
        color: var(--primary-color);
    }
    
    .mobile-footer-item i {
        font-size: 20px;
        display: block;
    }
    
    .mobile-footer-item svg {
        width: 20px;
        height: 20px;
        display: block;
        stroke: var(--secondary-color);
    }
    
    .mobile-footer-item svg path,
    .mobile-footer-item svg rect,
    .mobile-footer-item svg circle {
        stroke: var(--secondary-color);
    }
    
    .mobile-footer-item svg text {
        fill: var(--secondary-color);
    }
    
    .mobile-footer-item span:not(.wishlist-icon-container):not(.mobile-wishlist-badge):not(.cart-icon-container):not(.mobile-cart-badge) {
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
        display: block;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        color: var(--secondary-color);
    }
    
    .cart-icon-container {
        position: relative;
        display: inline-block;
    }
    
    .mobile-cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
        min-width: 16px;
        padding: 2px;
    }
    
    .mobile-cart-badge:empty,
    .mobile-cart-badge[style*="display: none"] {
        display: none !important;
    }
    
    .wishlist-icon-container {
        position: relative;
        display: inline-block;
    }
    
    .mobile-wishlist-badge {
        position: absolute;
        top: 1px;
        right: -5px;
        background: var(--secondary-color);
        color: #fff;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 600;
        line-height: 1;
        min-width: 16px;
        padding: 2px;
    }
    
    .mobile-wishlist-badge:empty {
        display: none;
    }
    
    /* Add padding to body to prevent content from being hidden behind fixed footer */
    body {
        padding-bottom: 70px;
    }
    
    /* Ensure footer doesn't overlap with mobile bar */
    .footer {
        margin-bottom: 0;
    }
    
    /* Ensure site content has bottom padding on mobile */
    .site-content {
        padding-bottom: 20px;
    }
}

.product-button-price {
    color: white;
}

/* For the product details page */
.product-details-section {
    padding: 20px 0px 0px;
    /* background: var(--background-color); */
}

/* Breadcrumb */
.product-breadcrumb {
    margin-bottom: 20px;
    color: #504D50;
    font-size: 14px;
}
.product-breadcrumb a {
    color: #504D50;
    text-decoration: none;
    padding: 0px 0px;
}
.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb span {
    padding: 0px 8px
}

.product-gallery {
    flex: 1;
    max-width: 600px;
}
.thumbnail-container {
    display: flex;
    gap: 10px;
}
.thumbnail {
    border: 1px solid #ddd;
    width: 120px;
    height: 126px;
    object-fit: cover;
    margin: 0 0px;
    border-radius: 0px;
    cursor: pointer;
}
.thumbnail:hover {
    border-color: var(--primary-color);
}

/* Use more specific selectors to avoid index page conflicts */
.product-details-section .product-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 45px;
    min-height: auto;
    font-weight: 400;
}
.product-details-section .product-price {
    font-size: 20px;
    /* font-weight: bold; */
    color: var(--primary-color);
    margin: 10px 0px 20px;
}
.product-details-section .product-info {
    padding: 0px 0px 20px;
    justify-content: flex-start;
}
.product-meta {
    margin-bottom: 2rem;
}
.meta-item {
    display: flex;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    margin: 18px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.meta-label {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
}
.meta-value {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
}
.size-guide{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
}
.product-details-section .product-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

.control-panel-container {
    display: flex;
    flex-direction: row;
    align-self: start;
    margin: 1rem 0px;
}

.control-panel {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #504D50;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.control-panel .quantity-btn {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #504D50;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0;
}

.control-panel .quantity-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.control-panel .quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    padding: 0;
    color: #504D50;
    font-weight: 400;
    outline: none;
}

.control-panel .quantity-input:focus {
    outline: none;
    background-color: #fff;
}

.quantity-label {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
}

.quantity-label::after {
    content: "";
    position: absolute;
    left: 26%;
    transform: translateX(-50%);
    bottom: 0;
    width: 54%;
    height: 1px;
    background: var(--secondary-color);
    border-radius: 2px;
}
/* optional: left-aligned 40% underline if you prefer
.quantity-label.left-underline::after{
    left: 0;
    transform: none;
}
*/



.total-quantity-value span{
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-color);
}
.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.quantity-label {
    font-size: 18px;
    font-weight: 400;
}
.quantity-input {
    width: 70px;
    height: 30px;
    text-align: center;
    font-size: 1rem;
    background: var(--background-color);
    outline: none;
    border: none
}
.action-buttons {
    display: flex;
    gap: 15px;
}
/* Desktop: vertical thumbnails on the LEFT, main image on the RIGHT */
@media (min-width: 768px) {
    .product-gallery { 
        display: flex; 
        gap: 8px; 
        align-items: flex-start;
        flex-direction: row;
    }
    .thumbnail-grid-container {
        width: 125px;
        /* flex: 0 0 100px; */
        /* order: -1;  */
        height: 600px;
        max-height: 600px;
    }
    .thumbnail-grid {
        height: 600px;
        max-height: 600px;
        grid-auto-rows: calc((600px - 36px) / 4); /* Exactly 4 rows visible: (600px - 3 gaps of 12px) / 4 */
    }
    .main-image-wrapper {
        flex: 1 1 auto;
        order: 1; /* Ensures main image appears after thumbnails (right side) */
        height: 600px;
        max-height: 600px;
    }
    .thumbnail-grid-image {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }
    .main-image-wrapper .ratio-23x32 {
        position: relative;
        width: 100%;
        padding-bottom: 150%;
    }
    .main-image-wrapper .main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile: main image on TOP, thumbnails BELOW (horizontal) */
@media (max-width: 767px) {
    .product-gallery { 
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .main-image-wrapper {
        order: 1; /* Main image appears first (on top) */
        width: 100%;
    }
.main-image-wrapper .ratio-23x32 {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    overflow: hidden;
}
 .main-image-wrapper .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 10px 0px;
}
    .thumbnail-grid-container {
        order: 2; /* Thumbnails appear after main image (below) */
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    .thumbnail-grid { 
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        padding: 5px 0;
        max-height: none;
        height: auto;
        /* Hide scrollbar for cleaner look */
        scrollbar-width: thin;
        scrollbar-color: #c3c0c3 #f1f1f1;
    }
    .thumbnail-grid::-webkit-scrollbar {
        height: 4px;
    }
    .thumbnail-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    .thumbnail-grid::-webkit-scrollbar-thumb {
        background: #c3c0c3;
        border-radius: 2px;
    }
    .thumbnail-grid::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }
    .thumbnail-grid-image {
        flex: 0 0 auto;
        width: 84px;
        /* min-width: 100px; */
        height: 125px;
        aspect-ratio: 1;
        object-fit: cover;
        border: 2px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .thumbnail-grid-image:hover,
    .thumbnail-grid-image:active {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(20, 105, 58, 0.1);
        transform: scale(1.05);
    }
    .thumbnail-grid-image.active {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(20, 105, 58, 0.2);
    }
}

/* Thumbnail fixed width inside horizontal slider (handled by .thumbnail rules) */
.product-details-section .add-to-cart-btn {
    background: var(--secondary-color);
    color: white;
    font-size: 16px;
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .product-details-section .add-to-cart-btn:hover {
    background: var(--primary-color);
} */
.buy-now-btn {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50%;
    /* border-radius: 5px; */
    /* padding: 10px; */
    font-size: 16px;
    text-transform: uppercase;
    background: var(--background-color) !important;
}
.product-details-section .buy-now-btn:hover {
    background: #111;
}

/* Out of Stock Button Styles */
.out-of-stock-btn {
    background: #555 !important;
    color: white !important;
    font-size: 16px;
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: not-allowed;
    text-transform: uppercase;
    opacity: 0.8;
}

.out-of-stock-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Continue Shipping Button Styles */
.continue-shipping-btn {
    border: 1px solid #555;
    color: #555;
    width: 50%;
    font-size: 16px;
    text-transform: uppercase;
    background: var(--background-color) !important;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shipping-btn:hover {
    background: #f5f5f5 !important;
    border-color: #333;
    color: #333;
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 40px 0;
    background: #fff;
}

.product-tabs-wrapper {
    max-width: 100%;
}

.product-tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    gap: 0;
}

.product-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-tab-btn:hover {
    color: #333;
}

.product-tab-btn.active {
    color: #000;
    font-weight: 500;
    border-bottom-color: #000;
}

.product-tabs-content {
    background: #fff;
    padding: 24px 0;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.product-tab-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-row {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
}

.product-detail-row .detail-label {
    font-weight: 400;
    color: #333;
    min-width: 140px;
    margin-right: 16px;
}

.product-detail-row .detail-value {
    color: #333;
    flex: 1;
}

.product-tab-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.product-tab-note strong {
    font-weight: 600;
    color: #000;
}

.product-tab-content-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.product-tab-content-text p {
    margin-bottom: 12px;
}

.product-tab-content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Product Tabs */
@media (max-width: 768px) {
    .product-tabs-section {
        padding: 30px 0;
    }
    
    .product-tabs-nav {
        flex-wrap: wrap;
    }
    
    .product-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .product-tabs-content {
        padding: 20px 0;
    }
    
    .product-detail-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .product-detail-row .detail-label {
        min-width: auto;
        margin-right: 0;
        font-weight: 500;
    }
    
    .product-tab-note {
        margin-top: 20px;
        padding-top: 16px;
        font-size: 13px;
    }
}

/* Old tab styles - keeping for backward compatibility */
.product-tabs {
    margin-top: 2rem;
    background: var(--background-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
}
.tab-content {
    display: none;
    padding: 1rem 0;
    line-height: 1.7;
    color: #555;
}
.tab-content.active {
    display: block;
}

/* Related Products */
.related-products {
    margin-top: 50px;
}
.related-products .section-title {
    font-size: 28px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related-product-card {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.related-product-card:hover .product-hover-overlay {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-details-container {
        flex-direction: column;
    }
    .product-gallery {
        max-width: 100%;
    }
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991.98px) {
    .product-details-container .col-12.col-md-6.col-lg-6 {
        margin-top: 16px;
    }
}
@media (max-width: 768px) {
    .main-image {
        height: 400px;
    }
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .action-buttons {
        flex-direction: column;
    }
.product-details-section .add-to-cart-btn, .product-details-section .buy-now-btn {
    width: 59%;
    justify-content: center;
}
    .related-product-card .product-image-container,
    .related-product-card .product-card-image {
        height: 100%;
    }
    .related-product-card .product-image-container.no-image::after {
        height: 100%;
    }
}
@media (max-width: 480px) {
    .main-image {
        height: 300px;
    }
    .product-details-section .product-title {
        font-size: 1.3rem;
    }
    .product-details-section .product-price {
        font-size: 1.5rem;
    }
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .related-product-card .product-image-container,
    .related-product-card .product-card-image {
        height: 100%;
    }
    .related-product-card .product-image-container.no-image::after {
        height: 100%;
    }
    .related-product-card .product-hover-overlay {
        flex-direction: column;
    }
}
/* New Product Details Design - Matching Image */
.product-image-section {
    position: relative;
    margin-bottom: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}


.main-image-wrapper-new {
    width: 100%;
    position: relative;
    background: transparent;
    border: 1px solid #eaeaec;
    border-radius: 8px;
    overflow: visible;
}

.main-image-new {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border-radius: 8px;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.image-nav-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-nav-prev {
    left: 15px;
}

.image-nav-next {
    right: 15px;
}

.product-social-icons {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.social-icon-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 14px;
}

.social-icon-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail-swiper-container {
    padding: 10px 0;
    width: 100%;
}

.thumbnail-swiper {
    width: 100%;
    padding: 0;
}

.thumbnail-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.thumbnail-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .thumbnail-swiper .swiper-slide {
        width: 20%;
    }
}

.thumbnail-new {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    display: block;
}

.thumbnail-new:hover {
    border-color: var(--primary-color);
}

.thumbnail-new.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(95, 0, 5, 0.2);
}

/* Product Info New Design */
.product-info-new {
    padding: 0;
}

.product-category-brand {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-wrapper-new {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0px;
}

.product-title-new {
    font-size: 28px;
    font-weight: 600;
    color: #494545;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.wishlist-btn-new {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wishlist-btn-new:hover {
    color: #ff1a58;
    transform: scale(1.1);
}

.wishlist-btn-new.active {
    color: #ff1a58;
}

.wishlist-btn-new.active i {
    font-weight: 900;
}

.product-rating-new {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ddd;
}

.rating-stars i {
    font-size: 16px;
    color: #FF1958
}

.review-count-new {
    font-size: 14px;
    color: #666;
}

.product-price-new {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.price-amount {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.original-price2 {
    font-size: 22px;
    font-weight: 600;
    text-decoration: line-through;
    margin-left: 12px;
    color: #999;
}

/* Product Meta Lines */
.product-meta-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.product-meta-line .meta-label {
    font-weight: 500;
    color: #333;
    min-width: 120px;
    margin-right: 8px;
}

.product-meta-line .meta-label {
    font-weight: 500;
    color: #333;
    min-width: 100px;
    margin-right: 8px;
}

.product-meta-line .meta-value {
    color: #333;
    flex: 1;
}

.product-meta-line .visit-store-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 4px;
}

.product-meta-line .visit-store-link:hover {
    text-decoration: underline;
}

.product-meta-line .category-link {
    color: #333;
    text-decoration: none;
}

.product-meta-line .category-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.category-link-new {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.category-link-new:hover {
    text-decoration: underline;
}

.action-buttons-new {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.add-to-cart-btn-new {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    background: #808080;
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    white-space: nowrap;
}

.add-to-cart-btn-new:hover {
    background: #707070;
}

.buy-now-btn-new {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    white-space: nowrap;
}

.buy-now-btn-new:hover {
    background: #0052a3;
}

.add-to-bag-btn {
    background: linear-gradient(90deg,#960063,#ff1a58);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: calc(50% - 6px);
    justify-content: center;
}

.add-to-bag-btn:hover {
    background: linear-gradient(40deg,#960063,#ff1a58);
    box-shadow: 0 4px 12px rgba(255, 26, 88, 0.3);
}

.app-price-btn {
    position: relative;
    width: calc(50% - 6px);
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  
    color: #333;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(90deg, #960063, #ff1a58) border-box;
  
    border: 6px solid transparent;
    border-radius: 25px;
  
    overflow: hidden;
  }
  

.app-price-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(90deg, #FF1A58, #FF6B35, #FF1A58);
    background-size: 200% 100%;
    z-index: -1;
    animation: gradient-border 3s linear infinite;
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.app-price-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 23px;
    background: white;
    z-index: -1;
}

.app-price-btn i {
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 1;
}

.app-price-btn span {
    color: #333;
    position: relative;
    z-index: 1;
}

.app-price-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 26, 88, 0.2);
}

/* Features Box (Light Pink) */
.features-box {
    background: #fff3eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px; /* row-gap | column-gap */
  }
  

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.feature-item i {
    color: #FF1A58;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Delivery Info Box (Light Gray) */
.delivery-info-box {
    background: #fbfbfb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.info-header i {
    color: #666;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.info-content {
    font-size: 13px;
    color: #666;
    padding-left: 26px;
}

.quantity-controls-new {
    margin-bottom: 24px;
}

.quantity-controls-new .quantity-controls-heading {
    margin-bottom: 12px;
}

.quantity-controls-new .quantity-label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.quantity-controls-new .quantity-label::after {
    display: none;
}

.quantity-input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn-new {
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0;
    background: #fff;
}

.quantity-btn-new:hover {
    background-color: #f5f5f5;
    color: #333;
}

.quantity-input-new {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    text-align: center;
    font-size: 14px;
    padding: 0;
    color: #333;
    font-weight: 400;
    outline: none;
    background: #fff;
}

.quantity-input-new:focus {
    outline: none;
    background-color: #fff;
}

.quantity-controls-new .control-panel-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quantity-controls-new .control-panel {
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.quantity-controls-new .control-panel .quantity-btn {
    color: var(--secondary-color);
    transition: all 0.2s ease;
}

.quantity-controls-new .control-panel .quantity-btn:hover {
    background-color: rgba(255, 26, 88, 0.1);
    color: var(--primary-color);
}

.quantity-controls-new .total-quantity-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Attributes/Variations Styling */

.attribute-group {
    margin-bottom: 20px;
}



.attribute-name-heading {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.attribute-name-heading .select-heading {
    color: #333;
    font-weight: 400;
}

/* Social Sharing Section */
.social-sharing-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.social-sharing-label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.social-sharing-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.facebook-share {
    background: #1877f2;
    color: white;
}

.facebook-share:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.twitter-share {
    background: #000;
    color: white;
}

.twitter-share:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-share {
    background: #25d366;
    color: white;
}

.whatsapp-share:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.attribute-values {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.attribute-item {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 4px !important;
    padding: 4px 12px !important;
    text-align: center !important;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.attribute-item:hover:not(.selected) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 26, 88, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 26, 88, 0.15);
}

.attribute-item.selected {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(255, 26, 88, 0.3);
    transform: translateY(-2px);
}

/* New Attribute Item Style (for Size selection like image) */
.attribute-item-new {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    text-align: center !important;
    color: #333;
    border: 2px solid var(--primary-color);
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attribute-item-new:hover:not(.selected) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.attribute-item-new.selected {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-meta-new {
    margin-top: 24px;
}

/* Out of Stock Buttons New */
#outOfStockButtons {
    display: none;
    gap: 12px;
    flex-wrap: wrap;
}

#outOfStockButtons.active {
    display: flex;
}

.out-of-stock-btn-new {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    background: #9c2626 !important;
    color: white !important;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: not-allowed;
    white-space: nowrap;
}

.continue-shipping-btn-new {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    background: transparent !important;
    color: #555;
    border: 2px solid #555;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.continue-shipping-btn-new:hover {
    background: #555 !important;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .image-nav-prev {
        left: 10px;
    }
    
    .image-nav-next {
        right: 10px;
    }
    
    .product-social-icons {
        right: 10px;
        top: 10px;
    }
    
    .social-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    
    .product-title-new {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .add-to-bag-btn {
        width: 100%;
        min-width: auto;
    }
    
    .app-price-btn {
        width: 100%;
    }
    
    /* .action-buttons-new flex-direction is controlled by responsive.css for mobile row layout */
}

/* Product Info Section */
.product-info-section {
    padding: 40px 0;
    background: #fff;
}

.product-info-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-info-banner {
    background: #ff1a58cc;
    color: white;
    text-align: center;
    padding: 20px 24px;
    font-size: 22px;
    font-weight: 500;
}

.product-info-table {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.product-info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.product-info-row:last-child {
    border-bottom: none;
}

.product-info-row:nth-child(odd) {
    background: #f5f5f5;
}

.product-info-row:nth-child(even) {
    background: #fff;
}

.product-info-label {
    padding: 16px 20px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    border-right: 1px solid #e0e0e0;
}

.product-info-value {
    padding: 16px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.product-info-value.product-info-pink a {
    color: #000 ;
    font-weight: 500;
}

/* Responsive Design for Product Info */
@media (max-width: 768px) {
    .product-info-section {
        padding: 30px 0;
    }
    
    .product-info-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .product-info-banner {
        padding: 12px 16px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .product-info-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .product-info-label {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        font-size: 14px;
    }
    
    .product-info-value {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .product-info-row:nth-child(odd) .product-info-label {
        background: #f5f5f5;
    }
    
    .product-info-row:nth-child(even) .product-info-label {
        background: #fff;
    }
}

/* Product Description Section */
.product-description-section {
    padding: 40px 0;
    background: #fff;
}

.product-description-wrapper {
    position: relative;
}

.product-description-content {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.7;
    color: #555;
}

.product-description-content.expanded {
    max-height: none;
}

.read-more-btn {
    display: none;
    margin-top: 15px;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #ff1a58;
}

.read-more-text {
    font-weight: bold;
}

.read-more-arrow {
    font-weight: bold;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .product-description-section {
        padding: 30px 0;
    }
    
    .product-description-content {
        max-height: 120px;
        font-size: 14px;
    }
    
    .read-more-btn {
        font-size: 13px;
        margin-top: 12px;
    }
}

/* End of Product Details Page Styles */

/* Responsive Design */
/* Mobile Menu Sidebar */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #f5f5f5;
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.show {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-mobile-menu:hover {
    background: #f0f0f0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    
    transition: background 0.3s ease;
}

.mobile-nav-item:hover {
    background: #f0f0f0;
}

.mobile-has-submenu {
    border-bottom: 1px solid #ddd;
}

.mobile-submenu-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    transition: background 0.3s ease;
}

.mobile-submenu-toggle-wrapper:hover {
    background: #f0f0f0;
}

.mobile-submenu-link {
    flex: 1;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-color);
}



.mobile-submenu-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu-open {
    display: block !important;
}

.mobile-nav-item-expanded + .mobile-submenu {
    display: block;
}

.mobile-has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-has-submenu.open .mobile-submenu-icon {
    transform: rotate(180deg);
}

.mobile-submenu li {
    border-bottom: 1px solid #eee;
}

.mobile-submenu-category {
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    
    transition: background 0.3s ease, color 0.3s ease;
}

/* Mobile Child Menu Styles */
.mobile-has-childmenu {
    border-bottom: 1px solid #eee;
}

.mobile-childmenu-toggle {
    width: 100%;
    padding: 12px 20px 12px 40px;
    background: none;
    border: none;
    text-align: left;
    color: var(--secondary-color);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.mobile-childmenu-toggle:hover {
    background: #f8f8f8;
}

.mobile-childmenu-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-childmenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
}

.mobile-has-childmenu.open .mobile-childmenu {
    display: block;
}

.mobile-has-childmenu.open .mobile-childmenu-icon {
    transform: rotate(180deg);
}

.mobile-childmenu li {
    border-bottom: 1px solid #eee;
}

.mobile-childmenu a {
    display: block;
    padding: 10px 20px 10px 60px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-childmenu a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.mobile-submenu a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.logo-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Header Section Organization */
.header-left-section {
    display: flex;
    align-items: center;
}

.header-center-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .header-row {
        min-height: 70px;
        flex-wrap: nowrap !important;
    }
    
    .mobile-search-icon {
        display: flex !important;
        font-size: 20px;
    }
    
    .header-row > div[class*="col-"] {
        flex: 0 0 auto;
        max-width: none;
    }
    
    .header-left-section {
        justify-content: flex-start;
        padding-left: 15px;
        width: auto !important;
        flex: 0 0 auto;
    }
    
    .header-center-section {
        flex: 1;
        justify-content: center;
        padding: 0 10px;
        width: auto !important;
        min-width: 0;
    }
    
    .header-right-section {
        justify-content: flex-end;
        padding-right: 15px;
        width: auto !important;
        flex: 0 0 auto;
    }
    
    .nav-icons {
        justify-content: flex-end;
        gap: 20px;
        width: 100%;
    }
    
    .logo-brand {
        margin: 0;
    }
    
    /* Hide mobile search bar on same row */
    .header-row + .row .col-12.d-lg-none {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-row {
        min-height: 60px;
        flex-wrap: nowrap !important;
    }
    
    .header-row > div[class*="col-"] {
        flex: 0 0 auto;
        max-width: none;
    }
    
    .header-left-section {
        padding-left: 10px;
        flex: 0 0 50px !important;
        max-width: 50px !important;
        width: 50px !important;
    }
    
    .header-center-section {
        padding: 0 5px;
        flex: 1 !important;
        min-width: 0;
        width: auto !important;
    }
    
    .header-right-section {
        padding-right: 10px;
        flex: 0 0 auto !important;
        width: auto !important;
    }
    
    .logo-brand-text {
        font-size: 16px;
    }
    
    .logo-brand-tagline {
        font-size: 9px;
    }
    
    .logo-graphic {
        width: 60px;
        height: 30px;
    }
    
    .logo-graphic::before,
    .logo-graphic::after {
        width: 30px;
        height: 20px;
    }
    
    .nav-icons {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .mobile-menu-btn {
        font-size: 20px;
        padding: 5px;
        min-width: 40px;
    }
    
    .cart-icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    /* Ensure logo stays in center */
    .logo-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
    
    /* Mobile Search Icon */
    .mobile-search-icon {
        display: flex !important;
        font-size: 18px;
    }
    
    /* Mobile Search Box Fixed Position */
    .mobile-search-box-fixed {
        position: fixed;
        top: 60px; /* Fallback, will be set dynamically by JS */
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-search-box-fixed .search-box {
        width: 100%;
    }
    
    .mobile-search-box-fixed .search-box input {
        padding: 12px 50px 12px 15px;
        font-size: 16px;
        width: 100%;
        border: 2px solid #ddd;
        border-radius: 25px;
        outline: none;
    }
    
    .mobile-search-box-fixed .search-box input:focus {
        border-color: var(--primary-color);
    }
    
    .close-mobile-search {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #666;
        font-size: 20px;
        cursor: pointer;
        padding: 5px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        z-index: 10;
        line-height: 1;
    }
    
    .close-mobile-search:hover {
        color: var(--primary-color);
    }
    
    .mobile-search-box-fixed .search-box i.fa-search {
        right: 20px;
        color: var(--primary-color);
    }
    
    /* Adjust site content when search box is open */
    body.search-box-open .site-content {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .nav {
        /* padding: 1rem 0; */
    }
    
    .header-row {
        min-height: auto;
    }
    
    .logo-brand {
        margin: 15px 0;
    }
    
    
    .brand-tagline {
        font-size: 11px;
    }
    
    .nav-icons {
        gap: 15px;
        justify-content: flex-end;
    }

    .nav-menu ul {
        gap: 1rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }

    .category-filter {
        flex-wrap: wrap;
    }

    .category-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    .category-header h3 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInNotification {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutNotification {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Site Content */
/* Product Details */
.attribute-group {
    margin-bottom: 8px;
}

.attribute-values{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 14px;
}

/* Product */
.demo-products-grid{
    display: flex; 
    flex-wrap: wrap; 
    gap: 24px; 
    justify-content: center; 
    margin-top: 100px;
}
.demo-product-card{
    border:1px solid #eee;
    border-radius:8px; 
    padding:24px; 
    width:180px; 
    text-align:center;
}
.box-open-icon{
    font-size:48px; 
    color:#888;
}
/* Empty Product */
.empty-products-container{
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px; 
    width: 100%;
    min-height: 400px;
}
.empty-products-content{
    max-width: 500px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.empty-icon{
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 20px;
}
/* Newsletter */
.newsletter-section {
    background: #eee;
    padding: 3rem 0;
}
.newsletter-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}
.newsletter-description {
    color: var(--secondary-color);
    margin: 0;
    font-size: 18px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    flex: 1 1 300px;
    justify-content: flex-end;
}
.newsletter_inp {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    outline: none !important;
    box-shadow: none !important;
}
.newsletter-btn {
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-message {
    display: none;
    margin-top: 0.75rem;
    padding: 0.6rem 0.9rem;
    font-size: 14px;
    border-radius: 4px;
    max-width: 520px;
}
.newsletter-message--success {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}
.newsletter-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Shop By Category Section */
.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
}

.category-swiper-navigation {
    display: flex;
    gap: 8px;
    align-items: center;
}

.category-swiper-button-prev,
.category-swiper-button-next {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.category-swiper-button-prev:hover,
.category-swiper-button-next:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

.category-swiper-button-prev:active,
.category-swiper-button-next:active {
    transform: scale(0.95);
}

.category-swiper-button-prev.swiper-button-disabled,
.category-swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.category-see-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-see-all-btn:hover {
    background: transparent;
    color: #0052a3;
    text-decoration: underline;
}

.popular-categories-swiper {
    width: 100%;
    padding: 10px 0 30px 0;
    overflow: hidden;
}

.popular-categories-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.popular-categories-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 180px;
    margin-bottom: 0;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.category-image-wrapper::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.category-image {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.05);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    color: #999;
    font-size: 48px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0;
    text-transform: capitalize;
    line-height: 1.2;
}

/* Responsive Design for Category Section */
@media (max-width: 1200px) {
    .category-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .category-item {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .category-section-header {
        margin-bottom: 8px;
    }
    
    .category-section-title {
        font-size: 22px;
        margin: 0;
    }
    
    .category-swiper-navigation {
        gap: 6px;
    }
    
    .category-swiper-button-prev,
    .category-swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .category-swiper-button-prev svg,
    .category-swiper-button-next svg {
        width: 16px;
        height: 16px;
    }
    
    .category-image-wrapper {
        width: 88px;
        height: 88px;
    }
    
    .category-item {
        max-width: 150px;
    }
    
    .category-name {
        font-size: 13px;
    }

    .popular-categories-swiper {
        padding: 0px;
        padding-top: 0px;
        padding-bottom: 15px;
    }
}



/* Best Offer Brands Section */
.best-offer-brands-section {
    /* padding: 30px 0; */
}

.best-offer-brands-section .category-wise-product-container {
    background-color: #f1f5f9;
    padding: 40px;
    border-radius: 12px;
}

.best-offer-brands-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.best-offer-brands-swiper {
    width: 100%;
    overflow: hidden;
}

.best-offer-brands-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.best-offer-brands-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.best-offer-brands-swiper .brand-card {
    width: 100%;
    max-width: 100%;
}

.best-offer-brands-swiper .swiper-button-next,
.best-offer-brands-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.best-offer-brands-swiper .swiper-button-next:after,
.best-offer-brands-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.best-offer-brands-swiper .swiper-button-next:hover,
.best-offer-brands-swiper .swiper-button-prev:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.best-offer-brands-swiper .swiper-button-next {
    right: 0;
}

.best-offer-brands-swiper .swiper-button-prev {
    left: 0;
}

.best-offer-brands-swiper .swiper-pagination {
    bottom: 0;
    display: none;

}

.best-offer-brands-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.5;
    display: none;

}

.best-offer-brands-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    display: none;

}

.brand-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.brand-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.brand-card-top {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.brand-main-image {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* object-position: center; */
    border-radius: 8px;
    z-index: 1;
    position: relative;
}

.brand-sub-image {
    width: 100%;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    object-fit: contain;
    z-index: 4;
}

@media (min-width: 640px) {
    .brand-sub-image {
        height: 50px;
    }
}

.brand-card-bottom {
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.brand-logo-text {
    font-size: 12px;
    color: #000;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.brand-offer {
    font-size: 20px;
    font-weight: 700;
    color: #FF1A58;
    margin: 0;
    text-align: center;
}

.brand-description {
    font-size: 16px;
    color: #5A5A5A;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 1400px) {
    .brand-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .brand-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .best-offer-brands-section {
        /* padding: 20px 0; */
    }
    
    .best-offer-brands-section .category-wise-product-container {
        padding: 30px 20px;
    }
    
    .best-offer-brands-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .best-offer-brands-swiper .swiper-button-next,
    .best-offer-brands-swiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }
    
    .best-offer-brands-swiper .swiper-button-next:after,
    .best-offer-brands-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-card-top {
        min-height: 180px;
        padding: 20px 15px 0 15px;
    }

    .brand-sub-image {
        width: 60px;
        height: 60px;
        bottom: -25px;
    }
    
}

@media (max-width: 480px) {
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    
    .brand-card-top {
        min-height: 160px;
        padding: 15px 10px 0 10px;
    }
    
    
    .brand-sub-image {
        width: 55px;
        height: 55px;
        bottom: -22px;
    }
    
}

.category-wise-product-section {
    padding: 30px 0;
}

.category-wise-product-container{
    background-color: #f1f5f9;
    padding: 20px 0px       ;
    border-radius: 12px;
}

.category-wise-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0px 50px;
}

.category-wise-product-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-title-wrapper {
    flex: 0 0 auto;
    position: relative;
}

.category-wise-product-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.category-products-swiper-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Align category title with first product card */
.category-wise-product-container {
    position: relative;
}

.category-products-swiper {
    width: 100%;
    overflow: hidden;
}

.category-products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.category-products-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.category-products-swiper .swiper-button-next,
.category-products-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-products-swiper .swiper-button-next:after,
.category-products-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.category-products-swiper .swiper-button-next:hover,
.category-products-swiper .swiper-button-prev:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.category-products-swiper .swiper-button-next {
    right: 0;
}

.category-products-swiper .swiper-button-prev {
    left: 0;
}

.category-products-swiper .swiper-pagination {
    bottom: 0;
    display: none;

}

.category-products-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.5;
    display: none;

}

.category-products-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    display: none;

}

/* New Arrivals Products Swiper - Same styling as category products */
.new-arrivals-products-swiper {
    width: 100%;
    overflow: hidden;
}

.new-arrivals-products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.new-arrivals-products-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.new-arrivals-products-swiper .swiper-button-next,
.new-arrivals-products-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.new-arrivals-products-swiper .swiper-button-next:after,
.new-arrivals-products-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.new-arrivals-products-swiper .swiper-button-next:hover,
.new-arrivals-products-swiper .swiper-button-prev:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.new-arrivals-products-swiper .swiper-button-next {
    right: 0;
}

.new-arrivals-products-swiper .swiper-button-prev {
    left: 0;
}

.new-arrivals-products-swiper .swiper-pagination {
    bottom: 0;
    display: none;
}

.new-arrivals-products-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.5;
    display: none;

}

.new-arrivals-products-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    display: none;

}

/* Similar Products Swiper - Same styling as category products */
.similar-products-swiper {
    width: 100%;
    overflow: hidden;
}

.similar-products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.similar-products-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.similar-products-swiper .swiper-button-next,
.similar-products-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.similar-products-swiper .swiper-button-next:after,
.similar-products-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.similar-products-swiper .swiper-button-next:hover,
.similar-products-swiper .swiper-button-prev:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.similar-products-swiper .swiper-button-next {
    right: 0;
}

.similar-products-swiper .swiper-button-prev {
    left: 0;
}

.similar-products-swiper .swiper-pagination {
    bottom: 0;
    display: none;

}

.similar-products-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.5;
    display: none;

}

.similar-products-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    display: none;

}

.category-wise-product-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.category-wise-product-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1400px) {
    .category-wise-product-products {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .category-wise-product-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .category-wise-product-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* View More Button */
.category-view-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}


/* Category-wise product cards now use .new-arrival-product-card class - styles defined above */

/* Responsive Design for Category Wise Products */

@media (max-width: 768px) {
    .category-wise-product-section {
        padding: 20px 0;
    }
    
    .category-wise-product-header {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .category-wise-product-header2 {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .category-wise-product-title {
        font-size: 20px;
    }
    
    .category-see-all-btn {
        font-size: 14px;
    }
    
    .category-wise-product-header {
        padding: 0px 40px;
    }
    
    .category-products-swiper-wrapper {
        padding: 0 14px;
    }
    
    .category-products-swiper .swiper-button-next,
    .category-products-swiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }
    
    .category-products-swiper .swiper-button-next:after,
    .category-products-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .category-wise-product-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .new-arrival-product-card .product-image-container.no-image::after,
    .new-arrival-product-card .product-image-container:has(img[src=""])::after {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .category-wise-product-header, .category-wise-product-header2 {
        padding: 0px 14px;
    }    
    
    .category-wise-product-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Keep aspect-ratio so product-card-info (price, name) stays visible on mobile */
    .new-arrival-product-card .product-image-container,
    .new-arrival-product-card .product-card-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }
    
    .new-arrival-product-card .product-image-container.no-image::after,
    .new-arrival-product-card .product-image-container:has(img[src=""])::after {
        height: 100%;
    }
    
    .new-arrival-product-card .product-hover-overlay {
        flex-direction: column;
    }
}

/* Responsive Design for Top Reels */
@media (max-width: 1200px) {
    .top-reels-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-reels-section {
        padding: 40px 0;
    }
    
    .top-reels-title {
        font-size: 24px;
    }
    
    .top-reels-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .top-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
}

/* Checkout Page  */
#checkout {
    padding: 25px 0px;
}
.page-title {
    font-size: 21px;
    color: var(--secondary-color);
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0.5rem;
    line-height: 19px;
    text-align: center;
    font-weight: 600;
}
.page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}
.checkout-flex {
    margin: 10px 0px 0px;
}
.checkout-sub-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Header navigation (migrated from checkout.html inline styles) */
.checkout-header-nav {
    margin-bottom: 25px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.checkout-nav-btn {
    display: inline-block;
    padding: 8px 20px;
    margin: 0;
    text-decoration: none;
    color: #666;
    background: #f5f5f5;
    border: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 0px;
}
.checkout-nav-btn.active {
    background: #504D50;
    color: #fff;
}
.checkout-nav-btn:hover {
    color: var(--secondary-color);
    background: #e0e0e0;
}

.checkout-summary, .checkout-form {
    border-radius: 0px;
    min-height: auto;
}
.checkout-payment-section {
   
}
.checkout-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #c3c0c3;
    padding: 20px;
}
.cart-items {
    background: transparent;
    border-radius: 0px;
    padding: 0;
    min-height: auto;
    max-height: 600px;
    overflow-y: auto;
}
.cart-item-title {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 26px;
}
/* Order Summary card */
.cart-total {
    font-size: 16px;
    background: transparent;
    padding: 15px 0;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
    margin: 15px 0 0;
    border-top: 1px solid #E0E0E0;
}
.cart-total-divider {
    height: 1px;
    background: #E0E0E0;
    margin: 5px 0;
}
.cart-total .cart-total-item-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    font-size: 16px;
    color: var(--secondary-color);
}
.cart-total .total {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}
.promo-message{
    margin-top: 8px;
    font-size: 0.9rem;
}
/* Coupon Section */
.checkout-coupon-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
}
.checkout-coupon-section .form-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}
.promo-code-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promo-code {
    position: relative;
    width: 100%;
}
.promo-code input {
    line-height: 40px;
    height: 40px;
    border-radius: 0px;
    border: 1px solid var(--secondary-color);
    outline: none;
    box-shadow: none !important;
    margin-top: 0;
    width: 100%;
    padding: 0 140px 0 15px;
    background: #f9f9f9;
    color: var(--secondary-color);
}
.promo-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}
.promo-btn:hover {
    background: var(--secondary-color);
}
.promo-code input:focus{
    border: 1px solid var(--secondary-color);
}
.empty-cart-message{
    text-align: center;
    color: #999;
    padding: 2rem;
    font-size: 14px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 18px;
    font-size: 13px;
    color: #000;
    text-transform: none;
}
.form-control {
    border: 1px solid #c3c0c3;
    border-radius: 0px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 22px;
    height: 42px;
    transition: border-color 0.3s;
    color: var(--secondary-color);
    box-sizing: border-box;
}
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}
/* Placeholder color aligned with theme */
.form-control::placeholder,
.promo-code input::placeholder {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Payment Method Grid Layout */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.payment-method-card {
    position: relative;
    display: block;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.payment-method-card:hover {
    border-color: #ccc;
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card-content {
    display: flex;
    gap: 12px;
    position: relative;
}

.payment-radio-wrapper {
    display: flex;
    align-items: center;
}

.payment-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
}

.payment-method-card input[type="radio"]:checked ~ .payment-card-content .payment-radio {
    border-color: var(--primary-color);
}

.payment-method-card input[type="radio"]:checked ~ .payment-card-content .payment-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.payment-method-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Payment icon brand colors */
.payment-method-text .fa-money-bill-wave { color: #27ae60; margin-right: 6px; }
.payment-method-text .fa-wallet { color: #e2136e; margin-right: 6px; }
.payment-method-text .fa-rocket { color: #8e44ad; margin-right: 6px; }
.payment-method-text .fa-mobile-alt { color: #f26522; margin-right: 6px; }
.payment-method-text .fa-credit-card { color: #0f8344; margin-right: 6px; }

.payment-icons-group {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.payment-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.payment-selected-badge {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    gap: 6px;
}

.payment-method-card input[type="radio"]:checked ~ .payment-card-content .payment-selected-badge,
.payment-method-card.payment-selected .payment-card-content .payment-selected-badge {
    display: flex;
}

.payment-selected-badge i {
    font-size: 10px;
}

/* Responsive Payment Methods */
@media (max-width: 991px) {
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}

.payment-method-card:has(input[type="radio"]:checked),
.payment-method-card.payment-selected {
    border-color: var(--primary-color);
    border-width: 2px;
}

.required-asterisk {
    color: #dc3545;
    margin-left: 4px;
}

/* Legacy styles for backward compatibility */
.payment-method-label {
    display: flex;
    align-items: center;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
    gap: 12px;
}
.payment-method-label:hover,
.payment-method-label:focus {
    border-color: var(--secondary-color);
    background: #fff;
}
.payment-method-label:has(input[type="radio"]:checked) {
    border-color: #2196F3;
    background: #fff;
}
.payment-method-label input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}
.payment-method-label span {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
}
.payment-icons-group {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

/* Bag Section Styles */
.checkout-section {
    min-height: 300px;
}

.bag-promo-bar {
    background: transparent;
    padding: 24px ;
    border-radius: 0px;
    border: 1px solid #c1b2c1;
}

.bag-progress-container {
    width: 100%;
}

.bag-progress-bar {
    width: 100%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.bag-progress-fill {
    height: 100%;
    background: #504D50;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 15px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-progress-percent {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1;
    text-align: center;
}

.bag-progress-text {
    text-align: left;
}

.bag-progress-text p {
    margin: 5px 0 0 0;
    color: var(--secondary-color);
    font-size: 14px;
}

.bag-products-table {
    background: transparent;
    border: 1px solid #c1b2c1;
    border-radius: 0px;
    overflow: hidden;
}

.bag-products-table table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.bag-products-table thead {
    background: transparent;
}

.bag-products-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    border-bottom: 2px solid #c1b2c1;
}

.bag-products-table tbody tr {
    border-bottom: 1px solid #c1b2c1;
}

.bag-products-table tbody tr:first-child {
    border-top: 1px solid #c1b2c1;
    border-bottom: 1px solid #c1b2c1;
}

.bag-products-table td {
    padding: 20px 15px;
    border-bottom: none;
    vertical-align: middle;
    background: transparent;
}

.bag-products-table td.text-center {
    color: #fff;
    padding: 40px 15px;
}

.bag-table-footer {
    background: transparent;
    border: 1px solid #c1b2c1;
    border-top: none;
    padding: 0px 20px ;
}

.bag-table-footer td {
    padding: 20px 15px;
    /* border-top: 2px solid #504D50; */
    background: transparent;
}

.bag-actions {
    padding: 0;
}

.bag-table-footer .form-control {
    background: #fff;
    /* border: 1px solid #ddd; */
    color: var(--secondary-color);
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 0px;
}

.bag-table-footer .form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: none;
}

.bag-table-footer .form-control::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

/* Mobile Responsive Styles for Bag Products Table */
@media (max-width: 768px) {

    .cart-items{
        max-height: 330px;
        overflow-y: auto;
    }
    .bag-products-table {
        border: none;
        background: transparent;
    }
    
    .bag-products-table table,
    .bag-products-table thead,
    .bag-products-table tbody,
    .bag-products-table th,
    .bag-products-table td,
    .bag-products-table tr {
        display: block;
    }
    
    .bag-products-table thead {
        display: none;
    }
    
    .bag-products-table tbody tr {
        border: 1px solid #c1b2c1;
        border-bottom: 1px solid #c1b2c1;
        border-radius: 0px;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .bag-products-table tbody td {
        border: none;
        padding: 10px 0;
        position: relative;
        background: transparent;
    }
    
    /* Product info - full width */
    .bag-products-table tbody td:first-child {
        padding: 0 0 15px 0;
        border-bottom: 1px solid #c1b2c1;
        margin-bottom: 10px;
    }
    
    /* Price, Quantity, Subtotal - with labels */
    .bag-products-table tbody td:not(:first-child):not(:last-child) {
        padding-left: 40%;
        text-align: right;
    }
    
    .bag-products-table tbody td:not(:first-child):not(:last-child):before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 35%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 12px;
        text-transform: uppercase;
    }
    
    /* Delete button - full width */
    .bag-products-table tbody td:last-child {
        padding: 10px 0 0 0;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 10px;
    }
    
    .bag-product-info {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .bag-product-image {
        width: 80px !important;
        height: 80px !important;
        margin-right: 15px !important;
        margin-bottom: 0 !important;
    }
    
    .bag-quantity-controls {
        justify-content: flex-end;
    }
    
    .bag-delete-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        transition: all 0.3s;
    }
    
    .bag-delete-btn:hover {
        background: #f5f5f5;
        border-color: #d32f2f;
    }
    
    .bag-product-price,
    .bag-subtotal {
        font-size: 14px;
    }
    
    /* Bag Actions Mobile Responsive */
    .bag-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch !important;
    }
    
    .bag-coupon-section {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .bag-coupon-section input {
        width: 100% !important;
        margin-right: 0 !important;
    }
    
    .bag-coupon-section button {
        width: 100%;
    }
    
    .bag-actions .btn {
        width: 100%;
    }
}

.bag-product-info {
    gap: 15px;
}

.bag-product-image {
    flex-shrink: 0;
}

.bag-product-details {
    flex: 1;
}

.bag-product-title {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.bag-product-attr {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}

.bag-product-price {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.bag-quantity-controls {
    gap: 10px;
}

.quantity-controls{
    margin-top: 16px;
}

.bag-qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #ddd;
    background: #fff;
    color: var(--secondary-color);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0px;
}

#checkout .bag-qty-btn, #checkout .bag-qty-input{
    background: transparent;
}

.bag-qty-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.bag-qty-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 14px;
}

.bag-subtotal {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.bag-delete-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    opacity: 0.8;
}

.bag-delete-btn:hover {
    color: #ff6b6b;
    opacity: 1;
}

.bag-actions {
    padding: 20px 0;
}

.bag-coupon-section {
    gap: 10px;
}

.bag-order-summary {
    /* background: #fff; */
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 0px;
}

.bag-summary-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.bag-summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bag-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--secondary-color);
}

.bag-summary-item span:first-child {
    font-weight: 400;
}

.bag-summary-item span:last-child {
    font-weight: 500;
}

.bag-summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.bag-summary-total {
    font-size: 16px;
    margin-top: 5px;
}

/* Mobile banking choices under the Mobile Banking radio */
.mobile-banking-options {
    display: none; /* toggled via JS */
    gap: 10px;
    margin: 10px 0 0 44px; /* indent to align under label radio */
    flex-wrap: wrap;
}
.mobile-option {
    border: 1px solid var(--secondary-color);
    background: #fff;
    border-radius: 0px;
    padding: 8px 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    transition: border-color 0.2s ease;
}
.mobile-option img {
    width: 70px;
    height: 32px;
    object-fit: contain;
}
.mobile-option.active {
    border-color: #d32f2f; /* red highlight on selection */
}

.process-checkout-btn{
    background: #504D50;
    color: #fff;
    border-radius: 0px;
}

.apply-coupon-btn{
    background: #504D50;
    color: #fff;
    border-radius: 0px;
    min-width: 250px !important;
    padding: 10px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-shopping-btn{
    border: 1px solid #504D50 !important;
    color: #504D50;
    border-radius: 0px;
    min-width: 200px ;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.order-place-btn {
    width: 100%;
    background: #504D50;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.order-place-btn:hover {
    background: #000;
    transform: none;
    box-shadow: none;
}
.checkout-form-inner {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
}

.payment-icon{
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Checkout product list (migrated) */
.checkout-product-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}
.checkout-product-item:first-child {
    padding-top: 0;
}
.checkout-product-item:last-child {
    border-bottom: none;
}
.checkout-product-image {
    width: 115px;
    height: 160px;
    object-fit: cover;
    border-radius: 0px;
    flex-shrink: 0;
    border: 1px solid #E0E0E0;
}
.checkout-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.checkout-product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2px;
}
.checkout-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #746c74;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}
.checkout-product-attributes {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 2px 0;
}
.checkout-product-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
    gap: 12px;
}
.checkout-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    padding: 0;
}
.checkout-quantity-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
}
.checkout-quantity-btn:hover {
    background: #f5f5f5;
}
.checkout-quantity-value {
    min-width: 40px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    padding: 0 8px;
    border: none;
    background: transparent;
}
.checkout-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #746c74;
    white-space: nowrap;
    line-height: 1.4;
}
.checkout-delete-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    font-size: 22px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0;
}
.checkout-delete-btn:hover {
    color: #666;
}
.checkout-delete-btn i {
    font-size: 20px;
}
.checkout-see-more {
    margin: 10px 0 5px;
    text-align: center;
}
.see-more-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
}
.see-more-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.see-more-link i {
    font-size: 12px;
}

/* Payment instructions box */
.payment-instructions {
    background: #f9f9f9;
    border-radius: 8px;
}

/* Checkout responsive tweaks */
@media (max-width: 991px) {
    .checkout-product-item { 
        flex-direction: row;
        gap: 10px;
    }
    .checkout-product-image { 
        width: 60px; 
        height: 80px; 
    }
    .payment-icons-group { 
        margin-left: 0; 
        margin-top: 10px; 
        flex-wrap: wrap;
    }
    .checkout-summary, .checkout-form, {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .checkout-product-item {
        gap: 8px;
    }
    .checkout-product-image {
        width: 50px;
        height: 70px;
    }
    .checkout-product-title {
        font-size: 13px;
    }
    .checkout-product-price {
        font-size: 13px;
        min-width: 70px;
        text-align: right;
    }
    .checkout-product-attributes {
        font-size: 11px;
    }
    .checkout-quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    .checkout-quantity-value {
        min-width: 35px;
        font-size: 13px;
        padding: 0 5px;
    }
    .checkout-delete-btn {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    .checkout-delete-btn i {
        font-size: 16px;
    }
    .payment-method-label {
        flex-wrap: wrap;
    }
}

.product-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* non-webkit fallback */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* Offer Of The Week Section */
.offer-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background: #f5f5f5;
}

.offer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.offer-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.offer-text-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    max-width: 480px;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .offer-text-content {
        left: 3rem;
        transform: translateY(-50%);
        padding: 0;
    }
}

@media (min-width: 992px) {
    .offer-text-content {
        left: 12rem;
        max-width: 480px;
    }
}

.offer-text-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 767px) {
    .offer-text-inner {
        max-width: 100%;
        width: 100%;
    }
    .meta-item{
        margin: 0px;
    }
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
    
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .offer-title {
        font-size: 2.5rem;
    }
}

.offer-subtitle {
    font-size: 12px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .offer-subtitle {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .offer-subtitle {
        font-size: 16px;
    }
}

.countdown-timer {
    margin-bottom: 30px;
}

.timer-display {
    background: #fff;
    border-radius: 60px;
    padding: 10px 45px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .timer-display {
        padding: 10px 20px;
        border-radius: 40px;
    }
}

.timer-numbers {
    font-size: 1.3rem;
    font-weight: 500;
    color: #504D50;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .timer-numbers {
        font-size: 2rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 992px) {
    .timer-numbers {
        font-size: 2.5rem;
    }
}

.timer-labels {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.timer-label {
    font-size: 9px;
    color: var(--secondary-color);
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .timer-label {
        font-size: 14px;
    }
}

.offer-cta-button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--secondary-color);
    background: #f5f5f5;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}

.offer-cta-button:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Offer Section Responsive Heights */
@media (max-width: 767px) {
    .offer-section,
    .offer-background,
    .offer-content-wrapper {
        min-height: 500px;
    }
    
    .offer-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .offer-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .countdown-timer {
        margin-bottom: 25px;
        width: 100%;
    }
    
    .timer-numbers {
        font-size: 2.3rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    
    .timer-labels {
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .timer-label {
        font-size: 9px;
        flex: 1;
        min-width: calc(25% - 3px);
    }
    
    .offer-cta-button {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .offer-section,
    .offer-background,
    .offer-content-wrapper {
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    .offer-section,
    .offer-background,
    .offer-content-wrapper {
        min-height: 600px;
    }
}

/* Promotional Banner Section */
.promotional-banner-section {
    width: 100%;
    /* padding: 60px 0; */
    background: #f5f5f5;
}

.promo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    /* max-width: 1400px;
    margin: 0 auto; */
}

.promo-item {
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 40px;
    position: relative;
}

.promo-item-left {
    background: #fff;
    flex-direction: row;
}

.promo-item-right {
    background: #EBF2EC;
    flex-direction: row;
}

.promo-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.promo-rounded-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.promo-rounded-bg-green {
    width: 350px;
    height: 350px;
    background: #E8F5E9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.promo-rounded-bg-white {
    width: 350px;
    height: 350px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.promo-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.promo-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-item-left .promo-content {
    padding-left: 40px;
}

.promo-item-right .promo-content {
    padding-left: 40px;
}

.promo-offer {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    
}

.promo-title-line {
    display: block;
}

.promo-button {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--secondary-color);
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.promo-button:hover {
    background: var(--secondary-color);
    color: #fff;
}

.promo-item-right .promo-button {
    background: #fff;
}

.promo-item-right .promo-button:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive Design for Promotional Banner */
@media (max-width: 991px) {
    .promo-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .promo-item {
        min-height: 300px;
        padding: 20px 15px;
    }
    
    .promo-item-left{
        flex-direction: row;
        background: #fff;
    }
    .promo-item-right {
        flex-direction: row;
    }
    
    .promo-image-wrapper {
        min-height: 250px;
        flex: 0 0 40%;
        margin-right: 15px;
    }
    
    .promo-item-right .promo-image-wrapper {
        margin-right: 0;
        margin-left: 15px;
    }
    
    .promo-rounded-bg-green,
    .promo-rounded-bg-white {
        width: 180px;
        height: 180px;
    }
    
    .promo-content {
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .promo-item-left .promo-content,
    .promo-item-right .promo-content {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-button {
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .promotional-banner-section {
        padding: 30px 0;
    }
    
    .promo-item {
        min-height: 280px;
        padding: 15px 10px;
    }
    
    .promo-image-wrapper {
        min-height: 220px;
        flex: 0 0 35%;
        margin-right: 10px;
    }
    
    .promo-item-right .promo-image-wrapper {
        margin-left: 10px;
    }
    
    .promo-rounded-bg-green,
    .promo-rounded-bg-white {
        width: 150px;
        height: 150px;
    }
    
    .promo-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .promo-offer {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .promo-button {
        padding: 8px 20px;
        font-size: 10px;
    }
    
    .promo-image {
        max-height: 250px;
    }
}

/* Latest Blog Section */

.blog-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 10px;
    
}

.blog-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 300;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
    margin: 0 auto;
}

.blog-card {
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 15px;
    
    line-height: 1.4;
}

.blog-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3; /* non-webkit fallback */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.blog-read-more:hover {
    color: var(--primary-color);
}

/* Responsive Design for Blog Section */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    
    .blog-section-title {
        font-size: 24px;
    }
    
    .blog-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .blog-image-wrapper {
        height: 250px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .blog-card-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .blog-read-more {
        font-size: 13px;
    }
}

/* Follow Us Section */
.follow-us-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.follow-us-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-us-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.follow-us-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0;
    
}

.follow-us-description {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
    
}

.follow-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 50px;
}

.follow-us-image {
    width: 100%;
    height: 438px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    aspect-ratio: 1 / 1;
}

/* Responsive Design for Follow Us Section */
@media (max-width: 991px) {
    .follow-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .follow-us-header {
        margin-bottom: 20px;
    }
    
    .follow-us-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .follow-us-title {
        font-size: 20px;
    }
    
    .follow-us-description {
        font-size: 14px;
    }
    .follow-us-grid {
        gap: 10px;
    }

    .follow-us-image{
        height: 225px;
        aspect-ratio: 4 / 3;
    }
}

.size-guide-container{
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0px;
}

.size-guide-link{
    color: var(--primary-color);
    text-decoration: none;
}

.product-contact-actions {
    width: 100%;
    padding: 15px 0;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--secondary-color);  
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 14px;
    min-height: 40px;
    background: var(--background-color);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--background-color);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

.contact-button__icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.contact-button__text {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* All buttons use primary color */
.contact-button--call,
.contact-button--whatsapp,
.contact-button--messenger {
    background: var(--background-color);
}

.contact-button--call:hover,
.contact-button--whatsapp:hover,
.contact-button--messenger:hover {
    background: var(--background-color);
}

/* Pulse animation for call button */
.contact-button--call {
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 2px 16px rgba(37, 99, 235, 0.5);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-buttons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-button {
        padding: 12px 16px;
        min-height: 50px;
    }
    
    .contact-button__icon {
        font-size: 16px;
        width: 20px;
        height: 20px;
    }
    
    .contact-button__text {
        font-size: 14px;
    }
}

/* 2-column layout for medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.order-place-container {
    margin-top: 15px;
    border: 1px solid var(--secondary-color);
    background: var(--background-color);
    padding: 0;
}

.modal-content {
    border: 4px solid #2b7ac9;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #e8e8e8;
    border-bottom: none;
    padding: 30px 30px 20px;
    position: relative;
}

.modal-title {
    font-size: 24px;
    color: #555;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.modal-body {
    background-color: #e8e8e8;
    padding: 30px;
}

.progress-box {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.progress {
    height: 16px;
    background-color: #d0d0d0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-bar {
    background-color: #4a4a4a;
    height: 100%;
    width: 25%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.progress-text {
    color: #555;
    font-size: 15px;
    font-weight: 400;
}

.product-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.product-image {
    width: 140px;
    height: 160px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-name {
    font-size: 16px;
    color: #555;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
    border: 1px solid #999;
    border-radius: 3px;
}

.qty-btn {
    background-color: white;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-input {
    width: 50px;
    border: none;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    text-align: center;
    font-size: 15px;
    padding: 0;
    background-color: white;
}

.qty-input:focus {
    outline: none;
}

.delete-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 20px;
    margin-left: 10px;
    transition: all 0.2s ease;
}

.delete-btn:hover {
    color: #555;
}

.see-more {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin: 20px 0;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    padding-bottom: 5px;
    display: inline-block;
    width: 100%;
}

.see-more:hover {
    color: #333;
}

.divider {
    border-top: 1px solid #999;
    margin: 20px 0;
}

.subtotal-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.subtotal-label {
    font-size: 16px;
    color: #555;
    font-weight: 400;
}

.subtotal-amount {
    font-size: 16px;
    color: #555;
    font-weight: 400;
}

/* Duplicate styles removed - all cart sidebar styles are defined in the cart sidebar section above */

/* ========================================
   Order Success Page Styles
   ======================================== */

.order-success-section {
    padding: 60px 0 80px;
    /* background: var(--background-color); */
}

.order-success-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Success Icon with Animation */
.success-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #14693a 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(20, 105, 58, 0.3);
    position: relative;
    z-index: 2;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon-inner {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark {
    width: 60px;
    height: 60px;
}

.success-checkmark-circle {
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.success-ripple-effect {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(20, 105, 58, 0.3);
    animation: ripple 2s ease-out infinite;
    z-index: 1;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Heading Section */
.order-success-heading {
    margin-bottom: 35px;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 18px;
    color: #746c74;
    font-weight: 400;
}

/* Order Details Card */
.order-details-card {
    background: #fff;
    border: 1px solid #c3c0c3;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 35px;
    text-align: left;
}

.order-number-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-label {
    font-size: 16px;
    color: #746c74;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.order-info-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.order-info-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f5f5f5;
    border-left: 4px solid var(--primary-color);
}

.order-info-message i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.order-info-message p {
    margin: 0;
    font-size: 14px;
    color: #746c74;
    line-height: 1.6;
}

/* Next Steps Section */
.next-steps-section {
    background: #fff;
    border: 1px solid #c3c0c3;
    border-radius: 0;
    padding: 35px 30px;
    margin-bottom: 35px;
}

.next-steps-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: #fff;
    font-size: 22px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.step-description {
    font-size: 14px;
    color: #746c74;
    margin: 0;
    line-height: 1.6;
}

/* Action Buttons */
.order-success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.order-success-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.order-success-actions .btn-primary:hover {
    background: #0d5325;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 105, 58, 0.3);
}

.order-success-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #c3c0c3;
    cursor: pointer;
    transition: all 0.3s;
}

.order-success-actions .btn-secondary:hover {
    background: var(--background-color);
    border-color: var(--secondary-color);
}

/* Support Section */
.support-section {
    text-align: center;
}

.support-divider {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 20px;
}

.support-question {
    font-size: 16px;
    color: #746c74;
    margin-bottom: 15px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.support-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.support-link i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-success-section {
        padding: 40px 0 60px;
    }

    .success-icon-circle {
        width: 100px;
        height: 100px;
    }

    .success-icon-inner {
        width: 75px;
        height: 75px;
    }

    .success-checkmark {
        width: 50px;
        height: 50px;
    }

    .success-title {
        font-size: 26px;
    }

    .success-subtitle {
        font-size: 16px;
    }

    .order-details-card,
    .next-steps-section {
        padding: 25px 20px;
    }

    .order-number {
        font-size: 20px;
    }

    .next-steps-title {
        font-size: 20px;
    }

    .order-success-actions {
        flex-direction: column;
        gap: 12px;
    }

    .order-success-actions .btn-primary,
    .order-success-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .support-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .success-title {
        font-size: 22px;
    }

    .order-details-card,
    .next-steps-section {
        padding: 20px 15px;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .order-number-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================
   Order Status Page Styles
   ======================================== */

.order-status-section {
    padding: 60px 0 80px;
    background: var(--background-color);
}

.order-status-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Status Icon */
.status-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-icon-circle.status-pending {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
}

.status-icon-circle.status-processing {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
}

.status-icon-circle.status-shipped {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.status-icon-circle.status-delivered {
    background: linear-gradient(135deg, #14693a 0%, #27ae60 100%);
}

.status-icon-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-inner i {
    font-size: 50px;
    color: #fff;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Heading Section */
.order-status-heading {
    margin-bottom: 35px;
}

.status-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.status-subtitle {
    font-size: 18px;
    color: #746c74;
    font-weight: 400;
}

/* Status Details Card */
.status-details-card {
    background: #fff;
    border: 1px solid #c3c0c3;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 35px;
    text-align: left;
}

.current-status-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-label {
    font-size: 16px;
    color: #746c74;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge i {
    font-size: 8px;
}

.status-badge.status-pending-badge {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge.status-processing-badge {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.status-shipped-badge {
    background: #f3e5f5;
    color: #7b1fa2;
}

.status-badge.status-delivered-badge {
    background: #e8f5e9;
    color: #14693a;
}

.status-message-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f5f5f5;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

.status-message-box i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.status-message-box p {
    margin: 0;
    font-size: 14px;
    color: #746c74;
    line-height: 1.6;
}

.estimated-delivery-section {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-info i {
    font-size: 24px;
    color: var(--primary-color);
}

.delivery-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-label {
    font-size: 12px;
    color: #746c74;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-date {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Order Timeline */
.order-timeline-section {
    background: #fff;
    border: 1px solid #c3c0c3;
    border-radius: 0;
    padding: 35px 30px;
    margin-bottom: 35px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.order-timeline {
    position: relative;
    padding-left: 40px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    opacity: 0.4;
    transition: all 0.3s;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e0e0e0;
    transition: all 0.3s;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
    text-align: left;
}

.timeline-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item.active .timeline-step-title {
    color: var(--primary-color);
}

.timeline-step-desc {
    font-size: 14px;
    color: #746c74;
    margin: 0;
    line-height: 1.6;
}

/* Action Buttons */
.order-status-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-action:hover {
    background: #0d5325;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 105, 58, 0.3);
}

.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #c3c0c3;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-action:hover {
    background: var(--background-color);
    border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-status-section {
        padding: 40px 0 60px;
    }

    .status-icon-circle {
        width: 100px;
        height: 100px;
    }

    .status-icon-inner i {
        font-size: 40px;
    }

    .status-title {
        font-size: 26px;
    }

    .status-subtitle {
        font-size: 16px;
    }

    .status-details-card,
    .order-timeline-section {
        padding: 25px 20px;
    }

    .order-number {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .order-status-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-action,
    .btn-secondary-action {
        width: 100%;
        justify-content: center;
    }

    .order-timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -22px;
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .status-title {
        font-size: 22px;
    }

    .status-details-card,
    .order-timeline-section {
        padding: 20px 15px;
    }

    .order-number-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .current-status-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .delivery-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Product Accordion Styles
   ======================================== */

.product-accordion {
    margin-top: 15px;
}

.accordion-item {
    margin-bottom: 0;
    border: none;
    background: transparent;
    border-bottom: 1px solid #bcb9bc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.static-item {
    cursor: default;
}

.accordion-header-static {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #504D50;
    text-align: left;
    background: transparent;
    cursor: default;
}

.accordion-header-static span:first-child {
    flex: 1;
    color: #504D50;
}

.accordion-header-static .meta-value {
    color: #504D50;
    font-size: 14px;
    font-weight: 400;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #504D50;
    text-align: left;
    transition: all 0.3s;
    background: transparent;
}

.accordion-header:hover {
    background: transparent;
    color: #504D50;
}

.accordion-header:focus,
.accordion-header:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

button.accordion-header {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.accordion-header span {
    flex: 1;
    color: #504D50;
}

.accordion-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #504D50;
    margin-left: 10px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 12px 0;
    font-size: 14px;
    color: #746c74;
    line-height: 1.6;
}

.accordion-body p {
    margin: 0 0 10px 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* Review Form Styles */
.review-form {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fafafa;
}

.review-form h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.review-form .form-group {
    margin-bottom: 15px;
}

.review-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
}

.review-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c3c0c3;
    border-radius: 0;
    font-size: 14px;
    background: #fff;
    color: var(--secondary-color);
}

.review-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-review-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.submit-review-btn:hover {
    background: #c0392b;
}

/* Review Items */
.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review-item:first-child {
    padding-top: 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.reviewer-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: var(--secondary-color);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 12px;
}

.review-date {
    font-size: 13px;
    color: #746c74;
}

.review-text {
    font-size: 14px;
    color: #746c74;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {

    .checkout-left-col {
        padding-right: 0px !important;
    }
    
    .checkout-right-col {
        padding-left: 0px !important;
    }
    .accordion-header {
        padding: 9px 0px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 0 15px 15px;
        font-size: 15px;
    }

    .review-form {
        padding: 15px;
    }

    .review-form h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 9px 0px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 0 12px 12px;
        font-size: 14px;
    }
}

/* Support Section Styles */
.support-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    align-items: center;
    gap:8px;
}

.support-icon {
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 45px;
    height: 45px;
}

.support-title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-align: start;
}

.support-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #504D50;
    margin: 0;
    line-height: 1.5;
    text-align: start;
}

/* Responsive Support Section */
@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .support-section {
        padding: 24px 0;
    }
    
    .support-grid {
        /* grid-template-columns: 1fr; */
        gap: 12px !important;
    }
    
    .support-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .support-title {
        font-size: 12px;
        margin-bottom: 0px !important;
    }
    
    .support-subtitle {
        font-size: 10px;
    }
}

/* Match select2 dropdown height with form-control input height */
.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 1px solid #c3c0c3 !important;
    border-radius: 0px !important;
    height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 22px !important;
    padding: 10px 15px !important;
    padding-right: 30px !important;
    display: block !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
    top: 0 !important;
    right: 8px !important;
    width: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--secondary-color) transparent transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: relative !important;
}

/* Match focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--secondary-color) !important;
}

/* Checkout Cart Items Styling */
.checkout-cart-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.checkout-cart-items {
    background: #fff;
    border-radius: 8px;
}

.checkout-cart-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.checkout-cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-item-name-wrapper {
    flex: 1;
}

.cart-item-brand {
    font-size: 14px;
    font-weight: 600;
    color: #bc9072;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cart-item-name {
    font-size: 15px;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.checkout-cart-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF1A58;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.checkout-cart-delete-btn:hover {
    color: #e0164a;
    background-color: #fff5f7;
}

.checkout-cart-delete-btn i {
    font-size: 14px;
}

.cart-item-price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    margin-bottom: 0;
}

.cart-price-current {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.cart-price-original {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

/* Order Summary Styling */
.checkout-order-summary {
    background: #fff;
    border-radius: 8px;
    padding: 24px 0px;
}

.order-summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.free-shipping-message {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.free-shipping-message p {
    margin: 0;
    font-size: 14px;
    color: #0369a1;
    font-weight: 500;
}

.free-shipping-bar {
    height: 4px;
    background: #22c55e;
    border-radius: 2px;
    margin-top: 8px;
}

.order-summary-details {
    margin-top: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #666;
}

.summary-item.summary-total {
    font-size: 18px;
    color: #333;
    padding-top: 12px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 12px 0;
}

/* Order Confirm Button */
.order-confirm-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.order-confirm-btn:hover {
    background: #db2777;
    color: #fff;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

.checkout-left-col {
    padding-right: 36px;
}

/* Mobile Category Sidebar */
.mobile-category-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-category-sidebar.show {
    left: 0;
}

.mobile-category-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-category-sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.mobile-category-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: opacity 0.3s;
}

.mobile-category-close-btn:hover {
    opacity: 0.7;
}

.mobile-category-sidebar-content {
    padding: 0;
}

.mobile-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-category-item:last-child {
    border-bottom: none;
}

.mobile-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-category-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.mobile-category-link span {
    flex: 1;
}

.mobile-submenu-icon {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
    margin-left: 10px;
}

.mobile-has-submenu.open .mobile-submenu-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    display: none;
}

.mobile-has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border-bottom: 1px solid #eee;
}

.mobile-subcategory-link:last-child {
    border-bottom: none;
}

.mobile-subcategory-link:hover {
    background: #e9ecef;
    color: var(--primary-color);
    padding-left: 45px;
}

.mobile-category-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-category-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .mobile-category-sidebar,
    .mobile-category-overlay {
        display: none !important;
    }
}

.checkout-right-col {
    padding-left: 36px;
}

/* Policy Pages Styles (About Us, Privacy Policy, Terms & Conditions, Return & Refund Policy) */
.policy-page-section {
    /* padding: 60px 0; */
    background: #fff;
    min-height: 600px;
}

.policy-page-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.policy-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.3;
}

.policy-page-content {
    text-align: left;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.8;
}

.policy-page-content p {
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.policy-page-content h2,
.policy-page-content h3,
.policy-page-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 16px;
}

.policy-page-content h2 {
    font-size: 24px;
}

.policy-page-content h3 {
    font-size: 20px;
}

.policy-page-content h4 {
    font-size: 18px;
}

.policy-page-content ul,
.policy-page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-page-content li {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.policy-page-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-page-content a:hover {
    color: var(--secondary-color);
}

.policy-page-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-page-section {
        padding: 40px 0;
    }
    
    .policy-page-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .policy-page-content {
        font-size: 15px;
    }
    
    .policy-page-content h2 {
        font-size: 22px;
    }
    
    .policy-page-content h3 {
        font-size: 18px;
    }
    
    .policy-page-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .policy-page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .policy-page-content {
        font-size: 14px;
    }
}

/* Outlets Page Styles */
.breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item a {
    color: #1F5DA0;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #1a4d8a;
}

.breadcrumb-item.active {
    color: #333;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 8px;
    color: #999;
}



.outlets-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.outlet-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.outlet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
    border-color: rgba(148, 163, 184, 0.6);
}

.outlet-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.outlet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.outlet-card:hover .outlet-image {
    transform: scale(1.08);
}

/* Overlay redesigned: subtle gradient band from bottom instead of full solid overlay */
.outlet-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.0)
    );
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.outlet-card:hover .outlet-overlay {
    transform: translateY(0);
    opacity: 1;
}

.outlet-overlay-content {
    color: white;
    text-align: left;
    width: 100%;
}

.outlet-name-overlay {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    background: var(--primary-color);
    padding: 10px 15px;
    border-radius: 4px;
}

.outlet-info {
    font-size: 14px;
    line-height: 1.8;
    margin: 8px 0;
    color: white;
}

.outlet-info strong {
    font-weight: 600;
}

.get-direction-link {
    display: inline-block;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.get-direction-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.outlet-card-content {
    padding: 20px;
}

.outlet-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.outlet-address {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

.outlet-hours {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
}

.outlet-contact {
    font-size: 14px;
    color: #1F5DA0;
    margin: 8px 0;
    font-weight: 500;
}

/* Responsive Outlets */
@media (max-width: 991px) {
    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .outlets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .outlet-image-wrapper {
        height: 200px;
    }
    
    .outlet-name-overlay {
        font-size: 20px;
    }
    
    .outlet-info {
        font-size: 13px;
    }
}

/* =========================================================================
   TASK 04: SARA-STYLE PROMO / COUPON SECTION
   ========================================================================= */
.product-promo-section {
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 20px;
    font-family: 'Utendo', sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-block {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.promo-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #444;
}

.promo-icon {
    font-size: 18px;
    color: #666;
}

.rewards-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crown-icon {
    color: #f5b041;
}

.rewards-text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.rewards-earn {
    font-size: 13px;
    color: #d32f2f;
    margin: 0;
}

.offer-block {
    text-align: center;
    background-color: #fff;
}

.offer-coupon-code {
    margin-bottom: 12px;
}

.offer-coupon-code .dashed-border {
    display: inline-block;
    border: 2px dashed #333;
    padding: 6px 15px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: #333;
    background-color: #fdfdfd;
}

.offer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.offer-text {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.apply-code-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.apply-code-btn:hover {
    background-color: #333;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.trust-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: #555;
}

.trust-icon {
    font-size: 24px;
    color: #444;
}
/* ----------------------
   Column Layout Adjustments Removed (using standard Bootstrap cols)
----------------------- */

/* Task 19: Premium Sort By & Pagination */
.t6-sort-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.t6-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 32px 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    min-width: 180px;
}
.t6-sort-select:hover, .t6-sort-select:focus {
    border-color: #000;
    outline: none;
}
.category-wise-product-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Pagination */
.t6-pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.t6-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.t6-pagination li a, .t6-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.2s ease;
}
.t6-pagination li a:hover {
    border-color: #000;
    background-color: #f8f9fa;
}
.t6-pagination li.active span {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
.t6-pagination li.disabled span {
    color: #aaa;
    border-color: #eee;
    background-color: #fafafa;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .category-wise-product-header2 {
        flex-direction: column;
        align-items: flex-start;
    }
    .t6-sort-wrapper {
        width: 100%;
    }
    .t6-sort-select {
        width: 100%;
    }
}

/* =========================================================
   TASK 20F: PREMIUM COUPON BLOCK — TEMPLATE 6 SCOPED
   ========================================================= */
.t6-coupon-block {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.t6-coupon-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 12px;
    font-weight: 600;
}
.t6-coupon-code-container {
    border: 1px dashed #bbb;
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.t6-coupon-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #111;
}
.t6-coupon-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid #111;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 14px;
}
.t6-coupon-copy-btn:hover {
    background: #333;
    border-color: #333;
}
.t6-copy-icon {
    stroke: #fff;
}
.t6-coupon-copy-btn.t6-copied {
    background: #2d7a4f;
    border-color: #2d7a4f;
}
.t6-coupon-details {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* =========================================================
   TASK 20F: PRODUCT METADATA REFINEMENT (SKU, Category, Social)
   ========================================================= */
.t6-product-meta-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}
.t6-product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px dashed #f0f0f0;
}
.t6-product-meta-row:last-child {
    border-bottom: none;
}
.t6-meta-label {
    color: #666;
    font-weight: 500;
}
.t6-meta-value {
    color: #111;
    font-weight: 600;
    text-align: right;
}
.t6-meta-link {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.t6-meta-link:hover {
    color: var(--primary-color, #ff1a58);
}
.t6-meta-social-row {
    margin-top: 4px;
}
.t6-meta-social-icons {
    display: flex;
    gap: 12px;
}
.t6-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}
.t6-social-icon:hover {
    background: #111;
    color: #fff;
}
.t6-social-icon.facebook-share:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}
.t6-social-icon.whatsapp-share:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* =========================================================
   TASK 20G: PRODUCT CTA, PRICE, QUANTITY, STOCK LAYOUT
   ========================================================= */

/* Price Layout */
.t6-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.t6-price-row .product-price-new {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.t6-price-row .original-price2 {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}
.t6-price-row .price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #ff1a58);
}
.t6-saved-amount {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Quantity and Stock Same-Line Layout */
.t6-stock-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    margin-bottom: 1px;
}
.t6-quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.t6-quantity-row .quantity-controls-heading {
    margin-bottom: 0 !important;
}
.t6-quantity-row .t6-quantity-label {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Admin-controlled CTA buttons layout */
.t6-product-contact-actions {
    margin-top: 20px;
}
.t6-contact-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.t6-contact-btn {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s, opacity 0.2s;
    min-width: 120px;
}
.t6-contact-btn:hover {
    opacity: 0.9;
}
.contact-button--call.t6-contact-btn {
    background-color: #f7941d;
    color: #fff;
}
.contact-button--whatsapp.t6-contact-btn {
    background-color: #25D366;
    color: #fff;
}
.contact-button--messenger.t6-contact-btn {
    background-color: #0084FF;
    color: #fff;
}

/* Secondary Action Buttons (Call / WhatsApp) below Add to Cart */
.t6-secondary-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    width: 100%;
}
.t6-secondary-cta-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    min-height: 50px;
    gap: 8px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
    white-space: nowrap;
}
.t6-secondary-cta--call {
    color: #f7941d;
    border: 1px solid #f7941d;
    background: transparent;
}
.t6-secondary-cta--call:hover {
    background: #f7941d;
    color: #fff;
}
.t6-secondary-cta--whatsapp {
    color: #25D366;
    border: 1px solid #25D366;
    background: transparent;
}
.t6-secondary-cta--whatsapp:hover {
    background: #25D366;
    color: #fff;
}

/* Hide number input spinners for cart */
input[type="number"].qty-input::-webkit-inner-spin-button, 
input[type="number"].qty-input::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type="number"].qty-input {
    -moz-appearance: textfield;
}

@media (max-width: 991px) {
    .nav {
        padding-bottom: 0 !important;
    }
}

/* ---------------------------------------------------
   Template 6 Full-Width Architecture
--------------------------------------------------- */
.t6-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .t6-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1400px) {
    .t6-container {
        max-width: 1600px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .header-right-section {
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }
}

/* Template 6 Compact Product Details */
.product-info-new {
    padding-top: 10px;
}
.product-info-new .t6-product-title-divider {
    margin: 8px 0 12px 0 !important;
}
.product-info-new .attribute-group {
    margin-bottom: 12px !important;
}
.t6-price-row {
    margin-bottom: 12px !important;
}

/* Template 6 Checkout Polish */
.checkout-billing-section, .checkout-order-summary-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}
.checkout-cart-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #222 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px !important;
}

/* Template 6 Cart Progress */
.cart-progress-container { width: 100%; }
.cart-progress-bar { width: 100%; height: 24px; background: #e0e0e0; border-radius: 12px; overflow: hidden; margin-bottom: 5px; position: relative; }
.cart-progress-fill { height: 100%; transition: width 0.3s ease, background-color 0.3s ease; position: relative; border-radius: 12px; min-width: 40px; display: flex; align-items: center; justify-content: center; }
.cart-progress-percent { color: #fff; font-weight: 600; font-size: 12px; white-space: nowrap; z-index: 1; text-align: center; }

/* Template 6 - Popular Categories alignment polish */
.shop-by-category-section .popular-categories-swiper .swiper-wrapper {
    align-items: stretch;
}

.shop-by-category-section .popular-categories-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.shop-by-category-section .category-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.shop-by-category-section .category-name {
    width: 100%;
    min-height: 34px;
    margin-top: 6px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 767px) {
    .shop-by-category-section .category-item {
        max-width: 108px;
    }

    .shop-by-category-section .category-name {
        min-height: 34px;
        font-size: 13px;
        line-height: 1.25;
    }
}

@media (max-width: 479px) {
    .shop-by-category-section .category-item {
        max-width: 96px;
    }

    .shop-by-category-section .category-name {
        min-height: 32px;
        font-size: 13px;
    }
}

/* ---------------------------------------------------
   Template 6 Hero — Content Container Parity
   Matches the existing .t6-container architecture
--------------------------------------------------- */
.t6-hero-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .t6-hero-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1400px) {
    .t6-hero-container {
        max-width: 1600px;
        padding-left: 40px;
        padding-right: 40px;
    }
}
