/* ==========================================================================
   THE GOURMET KITCHEN - ULTRA PREMIUM RESPONSIVE STYLING (RECIPE BLOG THEME)
   ========================================================================== */

:root {
    --primary: #1e382b;         /* Deep Forest Green */
    --accent-gold: #d97706;     /* Warm Saffron / Honey Amber */
    --accent-gold-hover: #b45309; /* Dark Amber for Hover */
    --accent-light: #f3f4f6;    /* Soft Off-White Cream */
    --text-dark: #1c1917;       /* Deep Charcoal Text */
    --text-muted: #78716c;      /* Muted Warm Gray */
    --bg-light: #faf9f6;        /* Soft Organic Cream Background */
    --card-bg: #ffffff;
    --border-color: #e7e5e4;     /* Subtle Linen Border */
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 35px rgba(217, 119, 6, 0.12);
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* --- Top Announcement Bar --- */
.top-announcement-bar {
    background: var(--primary);
    color: var(--accent-light);
    text-align: center;
    padding: 9px 15px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

/* --- Header & Navigation --- */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Toggle Icon (Mobile) */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* Brand Logo */
.brand-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-logo span {
    font-family: var(--font-body);
    font-size: 7px;
    letter-spacing: 3.5px;
    color: var(--accent-gold);
    margin-top: 4px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after, 
.highlight-link::after {
    width: 100%;
}

.nav-links a:hover, 
.highlight-link {
    color: var(--accent-gold) !important;
}

.mobile-drawer-header {
    display: none; /* Desktop par hidden */
}

/* Actions Right */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-tag {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.cart-link {
    background: var(--primary);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11.5px;
    border: 1px solid var(--accent-gold);
}

.cart-link:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

/* Dim Backdrop Overlay for Mobile Drawer */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* --- Hero Banner --- */
.hero-banner {
    background: linear-gradient(rgba(30, 56, 43, 0.55), rgba(30, 56, 43, 0.75)), 
                url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    height: 75vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    margin: 15px 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-primary {
    background: var(--accent-gold);
    color: #fff;
    padding: 15px 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* --- Category Grid --- */
.container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 25px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.category-card span {
    font-size: 11px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* --- Product Cards Grid (Recipe Cards) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.product-card .badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--accent-light);
    font-size: 9px;
    padding: 4px 10px;
    text-transform: uppercase;
    border: 1px solid var(--accent-gold);
    z-index: 10;
}

.product-img-box {
    height: 320px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f3f0e6;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.06);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 5px;
}

.metal-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    color: var(--accent-gold-hover);
    font-size: 14px;
}

.btn-secondary {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--accent-light);
}

/* --- Trust Badges Bar (Chef / Recipe Features) --- */
.trust-badges-bar {
    background: #f3f0e6;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 20px;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- Compliance Footer --- */
.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 70px 0 20px;
    border-top: 3px solid var(--accent-gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 0 25px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.brand-col p {
    font-size: 12.5px;
    color: #a3b39c;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 12.5px;
    color: #c7d2c3;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 11.5px;
    color: #92a38a;
}

.payment-methods {
    margin-bottom: 15px;
}

.pay-badge {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 3px;
    margin: 0 3px;
    font-size: 10px;
}

/* ==========================================================================
   MOBILE & TABLET BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
    
    .mobile-nav-toggle {
        display: block; /* Show Hamburger Button */
    }

    .currency-tag {
        display: none;
    }

    /* Convert Navigation Links into Left Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        padding: 30px 25px;
        gap: 18px;
        z-index: 1002;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: #ffffff;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 10px;
    }

    /* Drawer Header Controls */
    .mobile-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--accent-gold);
    }

    .drawer-title {
        font-family: var(--font-heading);
        color: var(--accent-light);
        font-size: 14px;
        letter-spacing: 1px;
    }

    .close-drawer-btn {
        background: none;
        border: none;
        color: var(--accent-light);
        font-size: 20px;
        cursor: pointer;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .brand-logo a {
        font-size: 20px;
    }

    .brand-logo span {
        font-size: 6px;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-outline {
        width: 100%;
    }
}

/* ==========================================================================
   HOMEPAGE EXPANDED SECTIONS STYLING
   ========================================================================== */

.financing-strip {
    background: #f3f0e6;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--primary);
}

.financing-strip span {
    font-weight: 700;
    color: var(--accent-gold-hover);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.text-left {
    text-align: left !important;
}

.view-all-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent-gold);
}

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

.category-card .category-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Chef Story / About Experience Section */
.bespoke-experience {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 20px;
    margin: 80px 0;
}

.bespoke-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bespoke-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
}

.bespoke-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--primary);
    margin: 10px 0 20px;
}

.bespoke-steps {
    list-style: none;
    margin: 30px 0;
}

.bespoke-steps li {
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bespoke-steps span {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--accent-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Culinary Newsletter / Studio Banner */
.showroom-banner {
    background: linear-gradient(rgba(30, 56, 43, 0.8), rgba(30, 56, 43, 0.8)), 
                url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.showroom-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 15px;
}

.showroom-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 14px;
    color: var(--accent-light);
}

/* Client Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 2px;
}

.review-card .stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 10px;
}

.review-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

/* Instagram Gallery */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.insta-item {
    height: 220px;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .bespoke-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .showroom-content h2 {
        font-size: 30px;
    }
}

/* ==========================================================================
   RECIPE CATALOG PAGE STYLING
   ========================================================================== */

.shop-header-banner {
    background: linear-gradient(rgba(30, 56, 43, 0.75), rgba(30, 56, 43, 0.85)), 
                url('https://images.unsplash.com/photo-1495521821757-a1efb6729352?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
}

.shop-header-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin: 10px 0;
}

.shop-header-content p {
    font-size: 13px;
    color: var(--accent-light);
    letter-spacing: 0.5px;
}

.shop-container {
    margin-top: 40px;
    margin-bottom: 80px;
}

.shop-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 2px;
    height: fit-content;
}

.sidebar-header-mobile {
    display: none;
}

.filter-widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.filter-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    font-size: 12.5px;
    color: var(--text-dark);
    display: block;
}

.filter-list a:hover, 
.filter-list a.active-filter {
    color: var(--accent-gold-hover);
    font-weight: 600;
    padding-left: 5px;
}

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-checkbox {
    font-size: 12.5px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    font-size: 12px;
}

.btn-apply-filter {
    width: 100%;
    background: var(--primary);
    color: var(--accent-light);
    border: none;
    padding: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.certification-box {
    background: #f3f0e6;
    padding: 15px;
    border-radius: 2px;
}

.certification-box p {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 5px;
}

.shop-top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    font-size: 13px;
    color: var(--text-muted);
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 12px;
    background: #fff;
    cursor: pointer;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    font-weight: 500;
}

.page-link.active, 
.page-link:hover {
    background: var(--primary);
    color: var(--accent-light);
    border-color: var(--primary);
}

.mobile-filter-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.btn-filter-toggle {
    background: var(--primary);
    color: var(--accent-light);
    border: 1px solid var(--accent-gold);
    padding: 10px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

@media (max-width: 992px) {
    .shop-layout-grid {
        grid-template-columns: 1fr;
    }

    .mobile-filter-bar {
        display: flex;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        z-index: 1002;
        overflow-y: auto;
        transition: left 0.4s ease;
        box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    }

    .shop-sidebar.active {
        left: 0 !important;
    }

    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--accent-gold);
    }

    .close-sidebar-btn {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
    }

    .shop-top-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   SINGLE RECIPE DETAIL PAGE STYLING
   ========================================================================== */

.breadcrumb-bar {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 12px;
    color: var(--text-muted);
}

.breadcrumb-bar a {
    color: var(--text-dark);
}

.breadcrumb-bar a:hover {
    color: var(--accent-gold-hover);
}

.product-detail-container {
    margin-bottom: 80px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery-box {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.main-image-view {
    width: 100%;
    height: 480px;
    background: #f3f0e6;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.main-image-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumbnail-grid {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.thumb-item {
    width: 90px;
    height: 90px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    background: #f3f0e6;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active-thumb {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px var(--accent-gold);
}

.category-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold-hover);
    font-weight: 600;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--primary);
    margin: 8px 0 12px;
    line-height: 1.25;
}

.rating-review-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-review-strip .stars {
    color: var(--accent-gold);
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-muted);
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.product-price-box .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold-hover);
}

.tax-info {
    font-size: 12px;
    color: var(--text-muted);
}

.financing-callout-box {
    background: #f3f0e6;
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    font-size: 12.5px;
    color: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.financing-callout-box span {
    font-weight: 700;
    color: var(--accent-gold-hover);
}

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

.label-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.option-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ring-size-guide-link {
    font-size: 11.5px;
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

.metal-radio-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.metal-option input {
    display: none;
}

.metal-option span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}

.metal-option input:checked + span {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--accent-light);
}

.custom-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.action-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.btn-add-bag {
    width: 100%;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 2px;
}

.btn-buy-now {
    width: 100%;
    background: var(--accent-gold);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background: var(--accent-gold-hover);
}

.product-guarantee-list {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.guarantee-item .icon {
    font-size: 20px;
}

.guarantee-item strong {
    font-size: 12.5px;
    color: var(--primary);
    display: block;
}

.guarantee-item p {
    font-size: 11.5px;
    color: var(--text-muted);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.accordion-content {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.accordion-content ul {
    padding-left: 18px;
}

@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-image-view {
        height: 380px;
    }

    .product-gallery-box {
        position: static;
    }
}

/* ==========================================================================
   RECIPE INGREDIENTS & STEPS LIST STYLING
   ========================================================================== */

.ingredients-list {
    list-style: none;
    margin-top: 10px;
}

.ingredients-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-list li input[type="checkbox"] {
    accent-color: var(--accent-gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.cooking-steps-list {
    padding-left: 20px;
    margin-top: 10px;
}

.cooking-steps-list li {
    margin-bottom: 15px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cooking-steps-list li strong {
    color: var(--primary);
}

/* ==========================================================================
   BLOG POLICY PAGES & LEGAL DOCUMENT STYLING
   ========================================================================== */

.policy-page-container {
    margin-bottom: 90px;
    max-width: 1000px !important;
}

.policy-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    text-align: center;
}

.last-updated {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

.policy-card-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 45px 40px;
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section p {
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-box-policy {
    background: #fdfbf7;
    border: 1px solid var(--accent-gold);
    padding: 20px 25px;
    margin-top: 15px;
    border-radius: 2px;
}

.contact-box-policy p {
    margin-bottom: 5px !important;
    font-size: 13px;
}

@media (max-width: 768px) {
    .policy-card-wrapper {
        padding: 25px 20px;
    }

    .policy-section h2 {
        font-size: 18px;
    }
}

.policy-steps-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-steps-list li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-steps-list li strong {
    color: var(--primary);
}

/* ==========================================================================
   PRINT RECIPE OPTIMIZATION RULES
   ========================================================================== */

@media print {
    .main-header,
    .site-footer,
    .top-announcement-bar,
    .action-buttons-group,
    .related-products-section,
    .mobile-nav-toggle {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .container {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   ABOUT & CONTACT PAGES DEDICATED STYLING
   ========================================================================== */

/* --- About Page Enhancements --- */
.about-hero-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Contact Page Form & Studio Info --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dark);
    background: #ffffff;
    border-radius: 2px;
    resize: vertical;
    transition: var(--transition);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.studio-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.studio-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 13px;
}

.studio-info-item .icon {
    font-size: 24px;
    line-height: 1;
}

.studio-info-item strong {
    color: var(--primary);
    display: block;
    font-size: 13.5px;
    margin-bottom: 3px;
}

.studio-info-item p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .about-hero-card {
        padding: 25px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 20px;
    }

    .checkout-summary-card {
        position: static;
        margin-top: 30px;
    }
}