/* ===========================
     POPIA POLICY PAGE STYLES
     =========================== */
.popia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.popia-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 28px 24px 28px;
    border: 1.5px solid var(--light-gray);
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}
.popia-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.popia-card h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}
.popia-card h2 i {
    margin-right: 8px;
}
.popia-card ul {
    list-style: none;
    padding: 0;
    color: var(--text-dark);
    font-size: 1.07rem;
}
.popia-card ul li {
    margin-bottom: 10px;
    padding-left: 0.5em;
    position: relative;
}
.popia-card ul li:before {
    content: '\2022';
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.popia-faq {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 24px 18px 24px;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.popia-faq h2 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 900px) {
    .popia-grid { grid-template-columns: 1fr; gap: 22px; }
}
/* ===========================
     RETURNS & REFUNDS PAGE STYLES
     =========================== */
.returns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.returns-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 28px 24px 28px;
    border: 1.5px solid var(--light-gray);
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}
.returns-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.returns-card h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}
.returns-card h2 i {
    margin-right: 8px;
}
.returns-card ul {
    list-style: none;
    padding: 0;
    color: var(--text-dark);
    font-size: 1.07rem;
}
.returns-card ul li {
    margin-bottom: 10px;
    padding-left: 0.5em;
    position: relative;
}
.returns-card ul li:before {
    content: '\2022';
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.returns-faq {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 24px 18px 24px;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.returns-faq h2 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 900px) {
    .returns-grid { grid-template-columns: 1fr; gap: 22px; }
}
/* ===========================
     SHIPPING & DELIVERY PAGE STYLES
     =========================== */
.luxury-section {
    background: var(--ivory);
    padding: 60px 0 40px 0;
}
.luxury-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}
.luxury-title i {
    color: var(--gold);
    margin-right: 12px;
}
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.shipping-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 28px 24px 28px;
    border: 1.5px solid var(--light-gray);
    transition: box-shadow 0.2s;
}
.shipping-card:hover {
    box-shadow: var(--shadow-lg);
}
.shipping-card h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}
.shipping-card h2 i {
    margin-right: 8px;
}
.shipping-card ul {
    list-style: none;
    padding: 0;
    color: var(--text-dark);
    font-size: 1.07rem;
}
.shipping-card ul li {
    margin-bottom: 10px;
    padding-left: 0.5em;
    position: relative;
}
.shipping-card ul li:before {
    content: '\2022';
    color: var(--gold);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.luxury-faq {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 32px 24px 18px 24px;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.luxury-faq h2 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}
.luxury-back {
    display: block;
    margin: 40px auto 0 auto;
    text-align: center;
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.luxury-back:hover {
    color: var(--gold);
}
@media (max-width: 900px) {
    .shipping-grid { grid-template-columns: 1fr; gap: 22px; }
    .luxury-section { padding: 30px 0 10px 0; }
}
/* ===========================
     FAQ PAGE STYLES
     =========================== */
.faqs-section {
    background: var(--ivory);
    padding: 60px 0 40px 0;
}
.faqs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.faq-search {
    display: block;
    margin: 0 auto 32px auto;
    padding: 14px 22px;
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    border: 1.5px solid var(--gold);
    font-size: 1.1rem;
    background: #fff;
    box-shadow: var(--shadow);
    outline: none;
    transition: border 0.3s;
}
.faq-search:focus {
    border-color: var(--black);
}
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}
.faq-category-btn {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--gold);
    border-radius: 22px;
    padding: 10px 26px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 4px;
}
.faq-category-btn:hover, .faq-category-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--black);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto 36px auto;
}
.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    overflow: hidden;
    border: 1.5px solid var(--light-gray);
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: var(--shadow-lg);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    padding: 22px 32px 18px 32px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.faq-question:after {
    content: '\25BC';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.1rem;
    color: var(--gold);
    transition: transform 0.3s;
}
.faq-question.active:after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #faf8f3;
    color: var(--text-dark);
    font-size: 1.05rem;
    padding: 0 32px;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-question.active + .faq-answer {
    padding: 0 32px 22px 32px;
}
.faq-contact {
    text-align: center;
    margin-top: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 32px 20px 24px 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.faq-contact h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.faq-contact a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.faq-contact a:hover {
    color: var(--gold);
}
@media (max-width: 900px) {
    .faq-list { max-width: 98vw; }
}
@media (max-width: 600px) {
    .faqs-section { padding: 30px 0 10px 0; }
    .faq-question, .faq-answer { padding-left: 14px; padding-right: 14px; }
    .faq-contact { padding: 18px 6px 14px 6px; }
}
/* ===========================
   GLOBAL STYLES - IVORY & BLACK LUXURY
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ivory: #F8F4EF;
    --black: #111111;
    --charcoal: #2A2A2A;
    --light-gray: #E8E4DF;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--ivory);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    background: var(--ivory);
    color: var(--black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--light-gray);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.navbar .tagline {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 101;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--ivory);
}

.account-icons {
    display: flex;
    gap: 1.5rem;
}

.account-icons a {
    font-size: 1.2rem;
    color: var(--black);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Mobile Menu Toggle */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--ivory);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        border-top: 1px solid var(--light-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .account-icons {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        background: var(--light-gray);
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
    }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: var(--black);
    color: var(--white);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    min-height: 600px;
}

/* ===========================
    HOMEPAGE POLISH
    =========================== */
.hero {
     padding: 80px 20px;
     min-height: 520px;
}
.hero-content h1{ font-size:3rem; letter-spacing:0.6px }
.hero-subtitle{ max-width:560px; opacity:0.95 }
.hero-buttons .btn-primary, .hero-buttons .btn-secondary{ padding:12px 28px }

.products-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:22px; margin-top:18px }
.product-card{ background:var(--white); border-radius:12px; padding:18px; box-shadow:0 6px 18px rgba(17,17,17,0.06); border:1px solid rgba(0,0,0,0.03); transition: transform 0.18s ease, box-shadow 0.18s ease }
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 30px rgba(17,17,17,0.08) }
.product-image{ height:120px; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg, #fff, #fbfbfb); border-radius:8px; margin-bottom:12px; font-size:2.6rem; color:var(--gold) }
.product-card h3{ font-size:1.05rem; margin-bottom:6px }
.product-card .price{ font-weight:700; color:var(--charcoal); margin-bottom:8px }
.product-card .description{ color:var(--text-light); font-size:0.95rem; margin-bottom:12px }

.rating{ color:var(--gold); margin-bottom:10px }

@media (max-width:1100px){ .products-grid{ grid-template-columns: repeat(3, 1fr) } }
@media (max-width:800px){ .products-grid{ grid-template-columns: repeat(2, 1fr) } .hero-content h1{ font-size:2rem } }
@media (max-width:480px){ .products-grid{ grid-template-columns: 1fr } .hero{ padding:48px 14px } }


.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 60px 20px;
        min-height: auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        font-size: 8rem;
    }
}

/* ===========================
   BUTTONS
   =========================== */

.btn-primary {
    display: inline-block;
    background: var(--black);
    color: var(--ivory);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--ivory);
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--black);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--ivory);
}

.btn-category {
    display: inline-block;
    background: var(--black);
    color: var(--ivory);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid var(--black);
}

.btn-category:hover {
    background: var(--ivory);
    color: var(--black);
    border-color: var(--black);
}

.btn-add-cart {
    background: var(--black);
    color: var(--ivory);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===========================
   TRUST BADGES SECTION
   =========================== */

.trust-badges {
    background: var(--ivory);
    padding: 60px 20px;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.trust-badges h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.badge-item {
    text-align: center;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: block;
}

/* ===========================
   CART / CHECKOUT STYLES
   =========================== */
.cart {
    padding: 60px 0;
}
.cart h2 { 
    font-size: 2rem; 
    margin-bottom: 18px; 
    color: var(--black);
}
.cart-grid{
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}
.cart-items{
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 18px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.cart-empty{
    text-align:center;
    padding:40px 10px;
    color:var(--text-light);
}
.cart-row{
    display: grid;
    grid-template-columns: 1fr 120px 100px 120px 70px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px dashed var(--light-gray);
    transition: background 0.2s ease, transform 0.12s ease;
}
.cart-row:hover{ background: linear-gradient(90deg, rgba(212,175,55,0.03), rgba(0,0,0,0.01)); transform: translateY(-2px); }
.cart-item-name{ font-weight:600; color:var(--charcoal); }
.cart-item-qty input[type="number"]{ width:70px; padding:8px; border-radius:6px; border:1px solid var(--light-gray); }
.cart-item-price{ font-weight:700; color:var(--black); }
.cart-item-total{ font-weight:700; color:var(--gold); }
.cart-item-remove{ text-align: center; }
.btn-remove{
    display:inline-block;
    background:transparent;
    color:var(--charcoal);
    border:1px solid rgba(0,0,0,0.06);
    padding:8px 10px;
    border-radius:8px;
    cursor:pointer;
    transition: all 0.18s ease;
}
.btn-remove:hover{ background: #fff6f6; color: #b00020; transform: translateY(-2px); border-color: rgba(176,0,32,0.12); }
.cart-summary{
    background: linear-gradient(180deg, var(--white), #fbfbfb);
    border: 1px solid var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}
.cart-summary h3{ font-size:1.1rem; margin-bottom:12px }
.cart-summary .line{ display:flex; justify-content:space-between; margin-bottom:10px; color:var(--text-dark) }
.cart-summary .total{ font-size:1.2rem; font-weight:800; color:var(--black); }
.cart-actions{ display:flex; gap:12px; margin-top:12px; }

@media (max-width:1000px){
    .cart-grid{ grid-template-columns: 1fr; }
    .cart-summary{ position: relative; top: 0; }
    .cart-row{ grid-template-columns: 1fr 80px 70px 90px 60px; gap: 8px; }
}

/* subtle checkout form tweaks */
.checkout-form input, .checkout-form textarea{ width:100%; padding:12px; border:1px solid var(--light-gray); border-radius:8px; margin-bottom:10px }

/* Checkout payment tweaks */
.checkout { padding: 60px 0; }
.checkout-grid { display:grid; grid-template-columns: 1fr 420px; gap:24px; align-items:start }
.checkout-summary{ background:var(--white); padding:18px; border:1px solid var(--light-gray); border-radius:10px; box-shadow:var(--shadow) }
.checkout-form{ background:var(--ivory); padding:18px; border-radius:10px }
.checkout-form label.small{ display:block; font-size:0.85rem; color:var(--text-light); margin-bottom:6px }
#payNowBtn{ min-width:160px }
#paySpinner{ color:var(--text-light); font-weight:600 }

@media (max-width:1000px){ .checkout-grid{ grid-template-columns: 1fr } }


.badge-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.badge-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   FEATURED PRODUCTS SECTION
   =========================== */

.featured-products {
    background: var(--ivory);
    padding: 80px 20px;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--black);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--ivory);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--light-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.rating span {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ===========================
   BEST SELLERS SECTION
   =========================== */

.best-sellers {
    background: var(--white);
    padding: 80px 20px;
    border-top: 1px solid var(--light-gray);
}

.best-sellers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.seller-card {
    background: var(--ivory);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.seller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.badge-bestseller {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--black);
    color: var(--ivory);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.seller-card .product-image {
    margin-bottom: 1.5rem;
}

.seller-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seller-card .price {
    margin-bottom: 1rem;
}

.seller-card .rating span {
    color: var(--black);
    font-weight: 600;
}

/* ===========================
   CATEGORY HIGHLIGHTS SECTION
   =========================== */

.category-highlights {
    display: flex;
    flex-direction: column;
}

.highlight-block {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.highlight-black {
    background: var(--black);
    color: var(--white);
}

.highlight-ivory {
    background: var(--ivory);
    color: var(--black);
}

.highlight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.highlight-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .highlight-block {
        min-height: auto;
        padding: 50px 20px;
    }

    .highlight-content h2 {
        font-size: 1.8rem;
    }

    .highlight-content p {
        font-size: 1rem;
    }
}

/* ===========================
   CUSTOMER REVIEWS SECTION
   =========================== */

.customer-reviews {
    background: var(--ivory);
    padding: 80px 20px;
    border-top: 1px solid var(--light-gray);
}

.customer-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.reviewer {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    background: var(--white);
    padding: 80px 20px;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.about-column h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-column p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.values-list i {
    color: var(--black);
    margin-right: 10px;
}

/* ===========================
   POWER STATEMENT SECTION
   =========================== */

.power-statement {
    background: var(--black);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.power-statement h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.power-statement p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===========================
   SHOP CATEGORIES SECTION
   =========================== */

.shop-categories {
    background: var(--ivory);
    padding: 80px 20px;
}

.shop-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--black);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subcategories {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.subcategories li {
    margin-bottom: 0.7rem;
}

.subcategories a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.subcategories a:hover {
    color: var(--black);
    font-weight: 600;
}

.category-card.all-products p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ===========================
   BLOG SECTION
   =========================== */

.blog {
    background: var(--white);
    padding: 80px 20px;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--ivory);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--charcoal);
    opacity: 0.3;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    padding: 20px 20px 10px;
    font-weight: 600;
}

.blog-card p {
    color: var(--text-light);
    padding: 0 20px 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    padding: 0 20px 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--gold);
}

/* ===========================
   CUSTOMER CARE SECTION
   =========================== */

.customer-care {
    background: var(--ivory);
    padding: 80px 20px;
    border-top: 1px solid var(--light-gray);
}

.customer-care h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.care-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.care-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--black);
}

.care-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.care-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    background: var(--white);
    padding: 80px 20px;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--ivory);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background: var(--ivory);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.contact-method h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method h3 i {
    color: var(--black);
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-method a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--gold);
}

.whatsapp-contact {
    background: var(--black);
    color: var(--white);
    border: none;
}

.whatsapp-contact h3 {
    color: var(--white);
}

.whatsapp-contact h3 i {
    color: var(--gold);
}

.whatsapp-contact p {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-contact a {
    color: var(--white);
}

.whatsapp-contact a:hover {
    color: var(--gold);
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===========================
   FINAL CTA SECTION
   =========================== */

.final-cta {
    background: var(--black);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--ivory);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1, .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 20px;
        min-height: auto;
    }

    .products-grid,
    .sellers-grid,
    .reviews-grid,
    .blog-grid,
    .care-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .badge-item,
    .highlight-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .navbar .logo h1 {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .featured-products h2,
    .best-sellers h2,
    .customer-reviews h2,
    .about h2,
    .shop-categories h2,
    .blog h2,
    .customer-care h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .power-statement h2 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }
}
/* ===========================
   PRODUCT PAGE STYLES
   =========================== */

.product-hero {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: #F8F4EF;
    padding: 30px 20px;
    margin-bottom: 40px;
    border-bottom: 3px solid #D4AF37;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    color: #999;
}

.breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #F8F4EF;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-main-image {
    background: linear-gradient(135deg, #F8F4EF 0%, #f5f5f5 100%);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: #D4AF37;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    background: #F8F4EF;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #D4AF37;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-details h1 {
    font-size: 40px;
    color: #111111;
    font-weight: 700;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stars {
    color: #D4AF37;
    font-size: 16px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #F8F4EF;
    border-radius: 8px;
}

.price {
    font-size: 36px;
    color: #D4AF37;
    font-weight: 700;
    margin: 0;
}

.discount-badge {
    background: #D4AF37;
    color: #111111;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

.product-description {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

.product-highlights {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.product-highlights h3 {
    font-size: 16px;
    color: #111111;
    margin: 0 0 12px;
    font-weight: 700;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
}

.highlights-list i {
    color: #D4AF37;
    font-weight: 700;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-add-cart {
    flex: 1;
    min-width: 200px;
    background: #D4AF37;
    color: #111111;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #111111;
    color: #D4AF37;
}

.btn-wishlist {
    background: #ffffff;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: #D4AF37;
    color: #111111;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #111111;
    font-weight: 700;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #F8F4EF;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: #F8F4EF;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 12px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: #111111;
    font-weight: 600;
}

.tabs {
    margin: 60px 0;
}

.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-header {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.tab-header.active {
    color: #111111;
    border-bottom-color: #D4AF37;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ingredient-card {
    background: #F8F4EF;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.ingredient-card h4 {
    color: #111111;
    margin: 0 0 8px;
    font-weight: 700;
}

.ingredient-card p {
    color: #333;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.reviews-section {
    padding: 32px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.review-item {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 20px;
}

.review-item:last-child {
    border-bottom: none;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-weight: 700;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 700;
    color: #111111;
}

.review-date {
    color: #999;
    font-size: 12px;
}

.review-stars {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    font-size: 32px;
    color: #111111;
    margin-bottom: 32px;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.related-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.related-image {
    background: #F8F4EF;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #D4AF37;
}

.related-info {
    padding: 20px;
}

.related-info h3 {
    margin: 0 0 8px;
    color: #111111;
    font-weight: 700;
}

.related-price {
    color: #D4AF37;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-details h1 {
        font-size: 28px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
    
    .tab-headers {
        flex-direction: column;
    }
    
    .tab-header {
        border-bottom: 2px solid #e0e0e0 !important;
        margin-bottom: 0;
    }
    
    .tab-header.active {
        border-left: 3px solid #D4AF37;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Page Images - Fix sizing */
.product-main-image {
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><rect width="100%" height="100%" fill="%23f5f5f5"/><text x="50%" y="50%" font-size="16" fill="%23ccc" text-anchor="middle" alignment-baseline="middle">No Image</text></svg>') center center no-repeat;
}

.product-thumbnails .thumbnail {
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="100%" height="100%" fill="%23f5f5f5"/><text x="50%" y="50%" font-size="10" fill="%23ccc" text-anchor="middle" alignment-baseline="middle">No Image</text></svg>') center center no-repeat;
}

.related-image {
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

