/* ==========================================================================
   CSS Variables & Resets (Pure White Header/Footer)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    /* Colors */
    --gold: #c39d6b;
    --gold-hover: #b08955;
    
    /* Backgrounds */
    --bg-pure-white: #ffffff; /* Explicit Pure White */
    --bg-alt: #f8f6f0;        /* Soft off-white for Collections */
    --bg-dark: #121212;       /* Dark for Features and Trust Badges */
    
    /* Text Colors */
    --text-main: #1a1a1a;     /* Almost black for white backgrounds */
    --text-muted: #666666;    /* Gray for paragraphs */
    --text-light: #ffffff;    /* White text for dark sections */
    
    /* Borders */
    --border-color: #eaeaea; 

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-pure-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Header & Navigation (PURE WHITE BACKGROUND)
   ========================================================================== */
.announcement-bar {
    background-color: #f2ebd9; /* Soft gold/beige */
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 500;
}

.announcement-bar span {
    color: var(--gold-hover);
}

.main-header {
    background-color: #ffffff; /* Strictly Pure White */
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-main);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
    font-weight: 600;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-icons {
    display: flex;
    gap: 25px;
}

.nav-icons i {
    font-size: 18px;
    cursor: pointer;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: var(--gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    min-height: 80vh;
    background-color: var(--bg-pure-white);
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: #ffffff;
    padding: 15px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.1));
}

/* ==========================================================================
   Features Section (DARK BACKGROUND)
   ========================================================================== */
.features {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px;
}

.feature-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gold);
}

.feature-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Collection Section
   ========================================================================== */
.collection {
    background-color: var(--bg-alt);
    padding: 100px 0;
    text-align: center;
}

.section-subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.collection h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 60px;
    color: var(--text-main);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #ffffff;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-main);
}

.product-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.shop-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-main);
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
}

.shop-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ==========================================================================
   Story Section
   ========================================================================== */
.story {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    gap: 60px;
    background-color: var(--bg-pure-white);
}

.story-image {
    flex: 1;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-main);
}

.story-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--gold);
    color: #ffffff;
}

/* ==========================================================================
   Trust Badges (DARK BACKGROUND)
   ========================================================================== */
.trust-badges {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 24px;
    color: var(--gold);
}

.trust-text h5 {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.trust-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Main Premium Footer (PURE WHITE BACKGROUND)
   ========================================================================== */
.main-footer {
    background-color: #ffffff; /* Strictly Pure White */
    border-top: 1px solid var(--border-color);
    padding: 80px 20px 20px 20px;
    color: var(--text-main);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-col ul {
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-logo img {
    height: 55px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5; /* Light grey so they are visible on white */
    border-radius: 50%;
    color: var(--text-main);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons .social-fb:hover { background-color: #1877F2; color: #fff; transform: translateY(-3px); }
.social-icons .social-yt:hover { background-color: #FF0000; color: #fff; transform: translateY(-3px); }
.social-icons .social-wa:hover { background-color: #25D366; color: #fff; transform: translateY(-3px); }
.social-icons .social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    transform: translateY(-3px);
}

.newsletter-col p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.newsletter-form input {
    width: 100%;
    background-color: #ffffff; /* White input inside white footer */
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 15px 12px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.btn-subscribe {
    background-color: var(--gold);
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-subscribe:hover {
    background-color: var(--gold-hover);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ==========================================================================
   JavaScript Dynamic Classes (Sticky Header, Animations, Mobile Menu)
   ========================================================================== */
.main-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.hidden-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hidden-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1), .product-card:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2), .product-card:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3), .product-card:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4), .product-card:nth-child(4) { transition-delay: 0.4s; }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-main);
    z-index: 1001;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 45px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .story { gap: 30px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .logo { margin: 0 auto; }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.4s ease-in-out;
        z-index: 999;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active { left: 0; }
    .nav-links a { font-size: 16px; color: var(--text-main); }
    
    .hero { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-content { max-width: 100%; margin-bottom: 40px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    
    .story { flex-direction: column; text-align: center; }
    .story-content p { margin: 0 auto 30px auto; }
    
    .trust-grid { flex-direction: column; gap: 30px; align-items: flex-start; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-logo img, .footer-desc { margin-left: auto; margin-right: auto; }
    .social-icons { justify-content: center; }
    .footer-col ul li a:hover { padding-left: 0; color: var(--gold); }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 35px; }
    .product-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    background-color: var(--bg-alt);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.contact-hero p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-main);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 5px;
}

.info-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-main);
}

.info-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid.full {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.contact-form-wrapper label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--bg-alt);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.btn-submit {
    background-color: var(--gold);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--gold-hover);
}

.form-alert {
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
}
.form-alert.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-alert.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Contact History Table
   ========================================================================== */
.query-history-wrapper {
    max-width: 1300px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.query-history-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.history-table th, .history-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.history-table th {
    background: var(--bg-alt);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-badge.pending { background: #fff3cd; color: #856404; }
.status-badge.read, .status-badge.working { background: #cce5ff; color: #004085; }
.status-badge.resolved, .status-badge.replied { background: #d4edda; color: #155724; }

/* ==========================================================================
   Login Required Popup Modal
   ========================================================================== */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: var(--bg-pure-white);
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-box i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.modal-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-modal {
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-modal-primary {
    background: var(--gold);
    color: #fff;
    text-decoration: none;
}

.btn-modal-primary:hover {
    background: var(--gold-hover);
}

.btn-modal-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-modal-secondary:hover {
    border-color: var(--text-main);
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-hero {
    background-color: var(--bg-alt);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Core Values Section */
.values-section {
    background-color: var(--bg-dark); /* Dark section for contrast, like Features */
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
}

.values-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 400;
}

.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.value-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.value-card i {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
    letter-spacing: 1px;
}

.value-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Responsive About Page */
@media (max-width: 900px) {
    .about-section, .about-section.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 60px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- New Ingredients Showcase Section --- */
.ingredients-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.ingredients-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.ingredients-section > p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ingredient-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5; /* Keep cards tall and elegant */
}

.ingredient-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ingredient-card:hover img {
    transform: scale(1.1); /* Slow zoom effect */
}

.ingredient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    text-align: left;
}

.ingredient-overlay h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--gold);
}

.ingredient-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* --- Our Promise Banner --- */
.promise-banner {
    background-color: var(--bg-alt);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.promise-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.promise-banner p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    .ingredient-card {
        aspect-ratio: 16/9; /* Make them wider on mobile so they don't take up too much vertical space */
    }
}