/* ==========================================
   FASHION E-COMMERCE - LUXURY THEME
   Color Scheme: Black + White + Gold
   File Location: assets/style.css
   ========================================== */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --pure-white: #ffffff;
    --off-white: #f8f8f8;
    --gold: #c9a961;
    --gold-dark: #a88a47;
    --gold-light: #e5c687;
    --gray-light: #e8e8e8;
    --gray-medium: #888888;
    --gray-dark: #333333;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-black);
    background: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-gold {
    background: var(--gold);
    color: var(--pure-white);
    border: 2px solid var(--gold);
    padding: 12px 35px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}

.btn-gold:hover {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--pure-white);
}

.btn-dark {
    background: var(--primary-black);
    color: var(--pure-white);
    border: 2px solid var(--primary-black);
    padding: 12px 35px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--pure-white);
}

.btn-outline-dark-custom {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    padding: 12px 35px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-dark-custom:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

/* ==========================================
   SECTION TITLES
   ========================================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.section-title p {
    color: var(--gray-medium);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   TOP BAR
   ========================================== */

.top-bar {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: var(--pure-white);
}

.top-bar a:hover {
    color: var(--gold);
}

/* ==========================================
   HEADER / NAV
   ========================================== */

.main-header {
    background: var(--pure-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 3px;
}

.logo span {
    color: var(--gold);
}

.main-nav .nav-link {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 60%;
}

.main-nav .nav-link:hover {
    color: var(--gold);
}

.header-icons a {
    color: var(--primary-black);
    font-size: 20px;
    margin-left: 20px;
    position: relative;
}

.header-icons a:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--pure-white);
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.search-box {
    position: relative;
}

.search-box input {
    border: 1px solid var(--gray-light);
    border-radius: 0;
    padding: 10px 40px 10px 15px;
    font-size: 14px;
    width: 250px;
}

.search-box input:focus {
    border-color: var(--gold);
    box-shadow: none;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 15px;
    color: var(--primary-black);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-content h6 {
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-content .d-flex {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    align-items: center !important;
    flex-wrap: wrap;
}

.hero-content .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 35px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    min-width: 140px !important;
    height: 50px !important;
    line-height: 1 !important;
}

.hero-content .btn-gold {
    background: var(--gold) !important;
    color: #fff !important;
    border: 2px solid var(--gold) !important;
}

.hero-content .btn-gold:hover {
    background: var(--primary-black) !important;
    border-color: var(--primary-black) !important;
}

.hero-content .btn-outline-light {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.hero-content .btn-outline-light:hover {
    background: #fff !important;
    color: var(--primary-black) !important;
}

/* ==========================================
   CATEGORIES
   ========================================== */

.category-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    height: 420px;
    width: 100%;
    display: block;
    background: #111;
    border-radius: 0;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    z-index: 2;
}

.category-overlay h3,
.category-overlay h4 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #fff;
}

.category-overlay p,
.category-overlay span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ==========================================
   GENDER BANNERS
   ========================================== */

.gender-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gender-banner.dark {
    background: #2b2b2b;
}

.gender-banner-content {
    position: relative;
    z-index: 2;
}

.gender-banner h2 {
    color: #fff;
    font-size: 56px;
    margin-bottom: 15px;
}

.gender-banner span {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */

.product-card {
    background: var(--pure-white);
    border: 1px solid var(--gray-light);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    height: 300px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* No image placeholder */
.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    color: var(--gray-light);
    font-size: 52px;
}

/* Sale / New Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    line-height: 1;
}

.product-badge.sale {
    background: var(--gold);
    color: var(--pure-white);
}

.product-badge.new {
    background: var(--primary-black);
    color: var(--pure-white);
}

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pure-white);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
    padding: 0;
    opacity: 0;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn i {
    font-size: 14px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--gold);
    border-color: var(--gold);
}

.wishlist-btn:hover i,
.wishlist-btn.active i {
    color: var(--pure-white);
}

/* Quick view / actions overlay */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 12px;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-actions a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-black);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.product-actions a:hover {
    background: var(--gold);
    color: var(--pure-white);
}

/* Product Info */
.product-info {
    padding: 18px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-info .category {
    font-size: 11px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.product-info h5 {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 42px;
}

.product-info h5 a {
    color: var(--primary-black);
}

.product-info h5 a:hover {
    color: var(--gold);
}

.product-price {
    font-size: 17px;
    color: var(--primary-black);
    font-weight: 600;
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price del {
    color: var(--gray-medium);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 14px;
}

.product-price .sale-price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 17px;
}

/* ==========================================
   PAGE BANNER / BREADCRUMB
   ========================================== */

.page-banner {
    background: var(--off-white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--gray-medium);
    font-family: 'Poppins', sans-serif;
}

.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--gold);
}

.breadcrumb-custom a {
    color: var(--gray-medium);
}

.breadcrumb-custom a:hover {
    color: var(--gold);
}

/* ==========================================
   SHOP SIDEBAR
   ========================================== */

.shop-sidebar {
    background: var(--pure-white);
    border: 1px solid var(--gray-light);
    position: sticky;
    top: 90px;
}

.sidebar-box {
    padding: 22px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-box:last-child {
    border-bottom: none;
}

.sidebar-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-black);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-box h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.sidebar-search {
    display: flex;
    border: 1px solid var(--gray-light);
}

.sidebar-search input {
    flex: 1;
    border: none;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--primary-black);
    background: var(--off-white);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.sidebar-search input:focus {
    background: var(--pure-white);
}

.sidebar-search button {
    background: var(--primary-black);
    color: var(--pure-white);
    border: none;
    padding: 0 14px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search button:hover {
    background: var(--gold);
}

.sidebar-links {
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 2px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-dark);
    padding: 6px 0;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.sidebar-links a i {
    font-size: 7px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--primary-black);
    padding-left: 4px;
}

.sidebar-links a:hover i,
.sidebar-links a.active i {
    color: var(--gold);
}

.sidebar-links a.active {
    font-weight: 600;
}

.sidebar-links a.sale-link {
    color: #c0392b;
}

.sidebar-links a.sale-link i {
    color: #c0392b;
    font-size: 12px;
}

/* ==========================================
   SHOP TOPBAR + SORT
   ========================================== */

.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
}

.shop-topbar .result-count {
    font-size: 13px;
    color: var(--gray-medium);
    font-family: 'Poppins', sans-serif;
}

.shop-topbar .result-count strong {
    color: var(--primary-black);
    font-weight: 600;
}

.shop-sort {
    border: 1px solid var(--gray-light);
    padding: 8px 14px;
    font-size: 13px;
    color: var(--primary-black);
    background: var(--pure-white);
    border-radius: 0;
    cursor: pointer;
    outline: none;
    min-width: 180px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.shop-sort:focus {
    border-color: var(--gold);
}

/* ==========================================
   EMPTY SHOP STATE
   ========================================== */

.empty-shop-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-medium);
}

.empty-shop-state i {
    font-size: 56px;
    color: var(--gray-light);
    display: block;
    margin-bottom: 20px;
}

.empty-shop-state h4 {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.empty-shop-state p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 70px 0 0;
}

.footer-widget h4 {
    color: var(--pure-white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-widget p,
.footer-widget li {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 12px;
    list-style: none;
}

.footer-widget a {
    color: #b0b0b0;
}

.footer-widget a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-widget ul {
    padding: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    background: rgba(255,255,255,0.05);
    color: var(--pure-white);
    font-size: 14px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--pure-white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--gold);
}

/* ==========================================
   FORMS
   ========================================== */

.form-control-custom {
    border: 1px solid var(--gray-light);
    border-radius: 0;
    padding: 12px 15px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 15px;
    transition: var(--transition);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-control-custom:focus {
    border-color: var(--gold);
}

.form-label-custom {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px) {
    .hero-content h1 { font-size: 3rem; }
    .search-box input { width: 100%; }
    .main-nav { background: var(--pure-white); padding: 20px; }
    .shop-sidebar { position: static; }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 650px;
        text-align: center;
        padding: 100px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .section-title h2 { font-size: 1.8rem; }

    .category-card { height: 280px; }

    .category-overlay { padding: 20px; }

    .category-overlay h3,
    .category-overlay h4 { font-size: 24px; }

    .gender-banner { height: 280px; }

    .gender-banner h2 { font-size: 32px; }

    .product-img { height: 260px; }

    .page-banner { padding: 40px 0; }

    .page-banner h1 { font-size: 1.8rem; }

    .shop-topbar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .shop-sort { width: 100%; }
}


/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */

/* Main product image */
.product-detail-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
}

.product-detail-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-detail-img:hover img {
    transform: scale(1.04);
}

/* Thumbnails */
.product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.product-thumbs img:hover {
    border-color: var(--gold);
}

/* Product detail info */
.product-detail-info {
    padding-left: 10px;
}

.product-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-black);
    line-height: 1.2;
}

/* Price */
.product-detail-info .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-detail-info .price del {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.product-detail-info .price span {
    font-size: 13px;
    font-weight: 600;
    background: var(--gold);
    color: var(--pure-white);
    padding: 4px 10px;
    letter-spacing: .5px;
}

/* Size selector */
.size-selector {
    margin-bottom: 24px;
}

.size-selector label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-options input[type="radio"] {
    display: none;
}

.size-options input[type="radio"] + label {
    border: 1.5px solid var(--gray-light);
    padding: 7px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--gray-dark);
    background: var(--pure-white);
}

.size-options input[type="radio"]:checked + label {
    border-color: var(--primary-black);
    background: var(--primary-black);
    color: var(--pure-white);
}

.size-options input[type="radio"] + label:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Quantity selector */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-light);
    width: fit-content;
}

.qty-selector button {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary-black);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.qty-selector button:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

.qty-selector input {
    width: 60px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--gray-light);
    border-right: 1.5px solid var(--gray-light);
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-black);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

/* Add to cart button */
.btn-dark-custom {
    background: var(--primary-black);
    color: var(--pure-white);
    border: 2px solid var(--primary-black);
    padding: 14px 35px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-dark-custom:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--pure-white);
}

/* Product tabs */
.product-tabs {
    margin-top: 50px;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--gray-light);
    gap: 0;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    color: var(--gray-medium);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 0;
    background: transparent;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: var(--primary-black);
    border-bottom-color: var(--gray-light);
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--primary-black);
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.product-tabs .tab-content {
    padding: 28px;
    border: 1px solid var(--gray-light);
    border-top: none;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.9;
}

/* Meta list in product detail */
.product-detail-info .list-unstyled li {
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}

.product-detail-info .list-unstyled li:last-child {
    border-bottom: none;
}

.product-detail-info .list-unstyled strong {
    color: var(--primary-black);
    margin-right: 6px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .5px;
}

/* ==========================================
   RESPONSIVE — PRODUCT DETAIL
   ========================================== */

@media (max-width: 991px) {
    .product-detail-img img {
        height: 420px;
    }

    .product-detail-info {
        padding-left: 0;
        margin-top: 20px;
    }

    .product-detail-info h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .product-detail-img img {
        height: 320px;
    }

    .product-detail-info h2 {
        font-size: 1.4rem;
    }

    .product-detail-info .price {
        font-size: 1.3rem;
    }

    .product-thumbs img {
        width: 60px;
        height: 60px;
    }

    .product-tabs .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 12px;
    }
}


/* ==========================================
   BOOTSTRAP CONFLICT FIXES
   ========================================== */

/* Sidebar column fix — Bootstrap override */
.col-lg-3.shop-col-sidebar {
    flex: 0 0 auto;
    width: 25%;
}

.col-lg-9.shop-col-products {
    flex: 0 0 auto;
    width: 75%;
}

/* Make sure sidebar is always visible */
.shop-sidebar {
    display: block !important;
    width: 100%;
}

/* Product grid — 3 columns properly */
.row.g-4 > .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%;
}

.row.g-4 > .col-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 768px) {
    .row.g-4 > .col-md-4 {
        width: 33.33333%;
    }
}

/* Product card full height in grid */
.row.g-4 > div > .product-card {
    height: 100%;
}

/* ==========================================
   SEARCH FORM FIX (sidebar)
   ========================================== */

/* Old form-control Bootstrap override */
.shop-sidebar .form-control {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 9px 12px !important;
    font-size: 13px !important;
    background: var(--off-white) !important;
    font-family: 'Poppins', sans-serif !important;
}

.shop-sidebar .form-control:focus {
    background: var(--pure-white) !important;
    box-shadow: none !important;
}

/* Wrap old search in sidebar-search style */
.sidebar-box .form-control {
    border: 1px solid var(--gray-light) !important;
    padding: 9px 12px !important;
    font-size: 13px !important;
    border-radius: 0 !important;
    width: 100% !important;
}

.sidebar-box .form-control:focus {
    border-color: var(--gold) !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ==========================================
   TOPBAR SORT SELECT FIX
   ========================================== */

.form-select {
    border: 1px solid var(--gray-light) !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    color: var(--primary-black) !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: none !important;
}

.form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: none !important;
}

/* ==========================================
   RESPONSIVE FIXES
   ========================================== */

@media (max-width: 991px) {
    .col-lg-3.shop-col-sidebar,
    .col-lg-9.shop-col-products {
        width: 100%;
    }

    .row.g-4 > .col-md-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .row.g-4 > .col-6,
    .row.g-4 > .col-md-4 {
        width: 50%;
    }
}


/* ==========================================
   CART PAGE
   ========================================== */

/* Cart table wrapper */
.cart-table {
    border: 1px solid var(--gray-light);
    background: var(--pure-white);
}

.cart-table .table {
    margin: 0;
    font-size: 14px;
}

.cart-table .table thead tr {
    background: var(--off-white);
    border-bottom: 2px solid var(--gray-light);
}

.cart-table .table thead th {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-medium);
    padding: 14px 16px;
    border: none;
}

.cart-table .table tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-light);
    vertical-align: middle;
    color: var(--primary-black);
}

.cart-table .table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table .table tbody tr:hover {
    background: var(--off-white);
}

/* Cart product image */
.cart-product-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--gray-light);
    flex-shrink: 0;
}

/* Cart qty input + update btn */
.cart-table .form-control {
    border: 1px solid var(--gray-light) !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    text-align: center;
    height: 36px;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif !important;
    width: 70px !important;
    padding: 4px 8px !important;
}

.cart-table .form-control:focus {
    border-color: var(--gold) !important;
}

.cart-table .btn-sm.btn-dark-custom {
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: .5px;
    height: 36px;
    width: auto;
    white-space: nowrap;
}

/* Remove button */
.cart-table .btn-remove {
    color: #e74c3c;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    line-height: 1;
}

.cart-table .btn-remove:hover {
    color: #c0392b;
    transform: scale(1.15);
}

/* ==========================================
   CART SUMMARY BOX
   ========================================== */

.cart-summary {
    background: var(--pure-white);
    border: 1px solid var(--gray-light);
    padding: 28px 24px;
    position: sticky;
    top: 90px;
}

.cart-summary h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.cart-summary h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
    color: var(--gray-dark);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-black);
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid var(--primary-black);
    border-bottom: none;
}

.cart-summary .btn-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-top: 16px;
}

.cart-summary .btn-gold:hover {
    background: var(--primary-black);
    border-color: var(--primary-black);
}

/* Free shipping notice */
.free-shipping-notice {
    font-size: 12px;
    color: var(--gray-medium);
    background: var(--off-white);
    padding: 8px 12px;
    border-left: 3px solid var(--gold);
    margin-top: 4px;
    line-height: 1.5;
}

/* ==========================================
   EMPTY CART STATE
   ========================================== */

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart .cart-icon {
    font-size: 72px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.empty-cart h3 {
    font-size: 22px;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.empty-cart p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* ==========================================
   CART RESPONSIVE
   ========================================== */

@media (max-width: 991px) {
    .cart-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .cart-table .table thead {
        display: none;
    }

    .cart-table .table,
    .cart-table .table tbody,
    .cart-table .table tr,
    .cart-table .table td {
        display: block;
        width: 100%;
    }

    .cart-table .table td {
        padding: 10px 14px;
        border-bottom: none;
    }

    .cart-table .table tr {
        border-bottom: 1px solid var(--gray-light);
        margin-bottom: 0;
    }

    .cart-product-img {
        width: 60px;
        height: 75px;
    }
}


/* ==========================================
   ACCOUNT PAGES (orders, profile, wishlist)
   ========================================== */

/* Account sidebar */
.account-sidebar {
    border: 1px solid var(--gray-light);
    background: var(--pure-white);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.account-nav-link:last-child {
    border-bottom: none;
}

.account-nav-link i {
    font-size: 16px;
    color: var(--gray-medium);
    width: 20px;
    transition: var(--transition);
}

.account-nav-link:hover {
    background: var(--off-white);
    color: var(--primary-black);
    padding-left: 22px;
}

.account-nav-link:hover i {
    color: var(--gold);
}

.account-nav-link.active {
    background: var(--primary-black);
    color: var(--pure-white);
}

.account-nav-link.active i {
    color: var(--gold);
}

/* ==========================================
   ORDER CARDS
   ========================================== */

.order-card {
    border: 1px solid var(--gray-light);
    background: var(--pure-white);
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: var(--shadow-md);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-light);
    flex-wrap: wrap;
    gap: 10px;
}

.order-id {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-black);
    display: block;
    font-family: 'Poppins', sans-serif;
}

.order-date {
    font-size: 12px;
    color: var(--gray-medium);
    display: block;
    margin-top: 3px;
    font-family: 'Poppins', sans-serif;
}

.order-status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: .06em;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Order item row */
.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.order-item:last-of-type {
    border-bottom: none;
}

.order-item-img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--gray-light);
}

.order-item-info {
    flex-grow: 1;
}

.order-item-info h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--primary-black);
    font-family: 'Poppins', sans-serif;
}

.order-item-info small {
    font-size: 12px;
    color: var(--gray-medium);
}

.order-item-total {
    font-size: 14px;
    color: var(--gold-dark);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Order footer */
.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--off-white);
    border-top: 1px solid var(--gray-light);
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/* Small buttons for order cards */
.btn-sm-custom {
    padding: 7px 16px !important;
    font-size: 12px !important;
    letter-spacing: .5px;
    height: auto !important;
    min-width: auto !important;
}

/* Empty orders state */
.empty-orders {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-medium);
}

.empty-orders i {
    font-size: 56px;
    color: var(--gray-light);
    display: block;
    margin-bottom: 20px;
}

.empty-orders h4 {
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.empty-orders p {
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE ACCOUNT
   ========================================== */

@media (max-width: 991px) {
    .account-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .order-card-header,
    .order-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-item {
        flex-wrap: wrap;
    }
}


/* ==========================================
   SALE PAGE HERO BANNER
   ========================================== */

.sale-hero-banner {
    position: relative;
    background: var(--primary-black);
    overflow: hidden;
    padding: 70px 0;
}

/* Animated gold diagonal stripes background */
.sale-banner-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(201,169,97,0.04) 40px,
        rgba(201,169,97,0.04) 80px
    );
    z-index: 0;
}

.sale-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* "LIMITED TIME OFFER" label */
.sale-tag-label {
    display: inline-block;
    background: var(--gold);
    color: var(--pure-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 6px 18px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Big title */
.sale-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

/* % number highlight */
.sale-percent {
    color: var(--gold);
    font-size: 5.5rem;
    line-height: 1;
    display: inline-block;
}

.sale-banner-sub {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

/* Info badges row */
.sale-banner-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sale-banner-badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.sale-banner-badges span i {
    color: var(--gold);
    font-size: 14px;
}

/* ==========================================
   SALE PAGE RESPONSIVE
   ========================================== */

@media (max-width: 767px) {
    .sale-banner-title {
        font-size: 2.4rem;
    }

    .sale-percent {
        font-size: 3.5rem;
    }

    .sale-hero-banner {
        padding: 50px 0;
    }

    .sale-banner-badges {
        gap: 14px;
    }
}


/* ==========================================
   SALE BANNER — FORCE FIX
   ========================================== */

.sale-hero-banner {
    position: relative !important;
    background: #0a0a0a !important;
    overflow: hidden !important;
    padding: 70px 0 !important;
    width: 100% !important;
}

.sale-banner-bg {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0 !important;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(201,169,97,0.06) 40px,
        rgba(201,169,97,0.06) 80px
    ) !important;
    z-index: 0 !important;
}

.sale-banner-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

.sale-tag-label {
    display: inline-block !important;
    background: #c9a961 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .15em !important;
    padding: 6px 18px !important;
    margin-bottom: 20px !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 0 !important;
}

.sale-banner-title {
    font-size: 4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    letter-spacing: 2px !important;
    font-family: 'Playfair Display', serif !important;
}

.sale-percent {
    color: #c9a961 !important;
    font-size: 5.5rem !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.sale-banner-sub {
    color: rgba(255,255,255,0.7) !important;
    font-size: 15px !important;
    margin-bottom: 28px !important;
    font-family: 'Poppins', sans-serif !important;
}

.sale-banner-badges {
    display: flex !important;
    justify-content: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
}

.sale-banner-badges span {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 13px !important;
    font-family: 'Poppins', sans-serif !important;
}

.sale-banner-badges span i {
    color: #c9a961 !important;
    font-size: 14px !important;
}

@media (max-width: 767px) {
    .sale-banner-title { font-size: 2.4rem !important; }
    .sale-percent { font-size: 3.5rem !important; }
    .sale-hero-banner { padding: 50px 0 !important; }
}


/* ==========================================
   GENDER SHOP CARDS (Home page)
   ========================================== */

.gender-shop-card {
    display: block;
    position: relative;
    height: 480px;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px;
}

/* Men card — dark charcoal with gold accent */
.men-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

/* Women card — deep black with rose gold */
.women-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1a18 50%, #2a1f1a 100%);
}

/* Decorative pattern background */
.gender-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.men-card .gender-card-bg {
    background:
        radial-gradient(circle at 80% 20%, rgba(201,169,97,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,169,97,0.08) 0%, transparent 40%);
}

.women-card .gender-card-bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(201,169,97,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201,169,97,0.1) 0%, transparent 40%);
}

/* Content */
.gender-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.men-card .gender-card-content {
    align-items: flex-start;
}

.women-card .gender-card-content {
    align-items: flex-end;
    text-align: right;
}

/* Label */
.gender-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(201,169,97,0.4);
    padding: 4px 12px;
}

/* Heading */
.gender-card-content h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.gender-card-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: .08em;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* CTA button */
.gender-card-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.gender-shop-card:hover .gender-card-btn {
    background: #fff;
    color: var(--primary-black);
}

/* Hover lift */
.gender-shop-card:hover {
    text-decoration: none;
}

.gender-shop-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid transparent;
    transition: border-color .3s ease;
    z-index: 3;
    border-radius: 4px;
}

.gender-shop-card:hover::after {
    border-color: rgba(201,169,97,0.4);
}

/* Decorative large letter watermark */
.men-card::before {
    content: 'M';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 280px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.women-card::before {
    content: 'W';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 280px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 767px) {
    .gender-shop-card {
        height: 320px;
    }

    .gender-card-content h2 {
        font-size: 2.8rem;
    }

    .gender-card-content {
        padding: 28px;
    }

    .women-card .gender-card-content {
        align-items: flex-start;
        text-align: left;
    }
}


/* ==========================================
   FOOTER LINKS + CONTACT
   ========================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #b0b0b0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '→';
    font-size: 11px;
    color: var(--gold);
    opacity: 0;
    transition: var(--transition);
    margin-right: -6px;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-links li a:hover::before {
    opacity: 1;
    margin-right: 4px;
}

/* Footer contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-contact li {
    color: #b0b0b0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer widget h5 */
.footer-widget h5 {
    color: var(--pure-white);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

/* Footer logo */
.footer-widget .logo {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--pure-white);
    font-size: 28px;
}

/* Payment icons */
.payment-icons i {
    font-size: 22px;
    color: #555;
    margin-left: 12px;
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--gold);
}

/* Footer responsive */
@media (max-width: 767px) {
    .main-footer {
        padding: 50px 0 0;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-bottom .row {
        text-align: center !important;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 8px;
    }

    .payment-icons {
        text-align: center !important;
    }

    .payment-icons i {
        margin: 0 6px;
    }
}

/* ===== HEADER ICONS HOVER EFFECT ===== */
.header-icons a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.header-icons a:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.15);
}

.header-icons a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.header-icons a:hover i {
    font-size: 1.45rem;
    color: var(--accent, #e94560);
}

/* Cart count badge */
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent, #e94560);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-icons a:hover .cart-count {
    transform: scale(1.2);
    background: #c0392b;
}

/* ===== PRODUCT IMAGE ZOOM - SMOOTH ===== */
.product-gallery .main-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
}

.product-gallery .main-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.product-gallery .main-img-wrapper:hover img {
    transform: scale(1.06) translateZ(0);
    -webkit-transform: scale(1.06) translateZ(0);
}