/* ============================================
   INCENSE ROAD TRADING CO. - STYLES
   Color Scheme: Burgundy, Cream, Charcoal, Gold
   ============================================ */

:root {
    --burgundy: #6d2c32;
    --burgundy-light: #7a3a40;
    --burgundy-dark: #5a2328;
    --cream: #ebe4d6;
    --cream-dark: #ddd4c4;
    --gold: #c9a962;
    --gold-light: #d4b978;
    --gold-subtle: #e5d9b8;
    --dark-gold: #a68b4b;
    --charcoal: #2d2d2d;
    --charcoal-light: #3d3d3d;
    --sand: #d4c5b0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Cart icon - gold color */
.nav-cart {
    color: #c9a962 !important;
}

.nav-cart:hover {
    color: #ffffff !important;
}

.nav-cart [data-fc-id="minicart-quantity"] {
    font-size: 16px !important;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: var(--burgundy);
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--burgundy) !important;
    padding: 10px 20px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    background-color: #6d2c32;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
    color: var(--cream);
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-location {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-scripture {
    font-size: 18px;
    color: var(--sand);
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--cream);
}

.hero-tagline {
    font-size: 20px;
    font-style: italic;
    color: var(--sand);
    margin-bottom: 16px;
    max-width: 500px;
}

.hero-quality {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-notice {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cream);
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    margin-bottom: 32px;
}

.hero-cta {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--burgundy);
    background: var(--gold);
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    padding: 140px 24px 60px;
    text-align: center;
    background-color: #6d2c32;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--cream);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   SECTIONS - ALTERNATING COLORS
   ============================================ */

.section {
    padding: 80px 48px;
}

/* Cream background (default) */
.section {
    background: var(--cream);
}

/* Charcoal background */
.section-dark {
    background: var(--charcoal);
    color: var(--cream);
}

.section-dark .section-subtitle {
    color: var(--gold);
}

.section-dark .section-title {
    color: var(--cream);
}

.section-dark p {
    color: var(--sand);
}

/* Burgundy background */
.section-burgundy {
    background-color: #6d2c32;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
    color: var(--cream);
}

.section-burgundy .section-subtitle {
    color: var(--gold);
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle-large {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 3vw, 24px);
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--burgundy);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--gold);
    margin: 48px 0 16px;
    letter-spacing: 1px;
}

.section-content h3:first-child {
    margin-top: 0;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content ul,
.section-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.section-content li {
    margin-bottom: 8px;
}

.section-content strong {
    color: var(--burgundy);
}

/* ============================================
   FEATURES GRID (Why Hojari)
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0;
}

.feature-text {
    font-size: 16px;
    color: var(--sand);
    line-height: 1.6;
    margin-top: 12px;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--sand);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(to bottom, var(--white) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--burgundy);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 16px;
}

.product-size {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.product-weight {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 16px;
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 24px;
}

.product-btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--cream);
    background: var(--burgundy);
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.3s;
}

.product-btn:hover {
    background: var(--charcoal);
}

/* ============================================
   AUDIENCE CARDS
   ============================================ */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.audience-card {
    padding: 64px 48px;
    border: 1px solid var(--charcoal-light);
}

.audience-card-gradient {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.audience-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.audience-text {
    color: var(--sand);
    margin-bottom: 16px;
    font-size: 16px;
}

.audience-link {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: 12px;
    margin-right: 24px;
    transition: color 0.3s;
}

.audience-link:hover {
    color: var(--gold-light);
}

/* ============================================
   INFO BOX
   ============================================ */

.info-box {
    background: var(--cream-dark);
    border-left: 4px solid var(--gold);
    padding: 24px 32px;
    margin: 32px 0;
}

.info-box h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.info-box p {
    margin: 0;
    font-size: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 48px;
    text-align: center;
    background: var(--cream-dark);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cream);
    background: var(--burgundy);
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--burgundy);
}

.cta-btn:hover {
    background: transparent;
    color: var(--burgundy);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--sand);
    color: var(--cream);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--sand);
    opacity: 0.6;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--charcoal);
    color: var(--cream);
}

.form-submit {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--burgundy);
    background: var(--gold);
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--gold-light);
}

/* ============================================
   FAQ STYLES
   ============================================ */

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--sand);
}

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

.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.image-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%);
    border: 2px dashed var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 24px;
    text-align: center;
    border-radius: 4px;
}

.image-placeholder-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 12px;
}

.image-placeholder-text {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--burgundy);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

/* ============================================
   DISCLAIMER
   ============================================ */

.disclaimer {
    background: var(--cream-dark);
    border: 1px solid var(--sand);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--charcoal);
}

.disclaimer-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--burgundy);
    color: var(--cream);
    text-align: center;
    padding: 60px 24px;
    border-top: 3px solid var(--gold);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--sand);
    margin-bottom: 24px;
}

.footer-links {
    margin: 24px 0;
}

.footer-links a {
    color: var(--sand);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0 16px;
    transition: color 0.3s;
}

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

.footer-copyright {
    color: var(--dark-gold);
    font-size: 12px;
    margin-top: 24px;
}

/* ============================================
   FLOATING BACK TO TOP BUTTON
   ============================================ */

.back-to-top-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--burgundy);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-float:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ============================================
   PRINT RECIPE CARD STYLES
   ============================================ */

.print-recipe-btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--burgundy);
    background: var(--gold);
    padding: 8px 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    margin-top: 12px;
    transition: all 0.3s;
}

.print-recipe-btn:hover {
    background: var(--gold-light);
}

@media print {
    /* Hide everything except recipe */
    body * {
        visibility: hidden;
    }
    
    .recipe-printable,
    .recipe-printable * {
        visibility: visible;
    }
    
    .recipe-printable {
        position: absolute;
        left: 0;
        top: 0;
        width: 4in;
        height: 6in;
        padding: 0.25in;
        border: 1px solid #ccc;
        font-size: 11px;
        line-height: 1.4;
        background: white;
        color: black;
        page-break-inside: avoid;
    }
    
    .recipe-printable h3 {
        font-size: 14px;
        margin-bottom: 4px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 4px;
    }
    
    .recipe-printable .recipe-meta {
        font-size: 9px;
        margin-bottom: 8px;
    }
    
    .recipe-printable ul,
    .recipe-printable ol {
        margin: 8px 0;
        padding-left: 16px;
    }
    
    .recipe-printable li {
        margin-bottom: 3px;
        font-size: 10px;
    }
    
    .recipe-printable .recipe-note {
        font-size: 9px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px dashed #ccc;
    }
    
    .print-recipe-btn,
    .nav,
    .footer,
    .back-to-top-float,
    .jump-nav,
    .page-header,
    .cta-section {
        display: none !important;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .back-to-top-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .nav {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--burgundy);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .page-header {
        padding: 120px 24px 60px;
    }

    .section {
        padding: 60px 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 48px 24px;
    }

    .footer-links a {
        display: block;
        margin: 12px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOXY.IO CART OVERRIDES
   ============================================ */

/* "Your Bag" title - match Cinzel header font */
.fc-cart__title,
.fc-sidecart__title,
[class*="fc"] h2,
[class*="fc"] h3 {
    font-family: 'Cinzel', serif !important;
    letter-spacing: 2px !important;
}

/* Proceed to Checkout button - gold text on burgundy */
.fc-sidecart__checkout,
.fc-sidecart__checkout a,
.fc-sidecart__checkout button,
.fc-action--checkout,
.fc-cart__checkout-button,
.fc-btn--checkout,
.fc-btn--primary,
[class*="fc"][class*="checkout"],
[class*="fc-sidecart"] [class*="checkout"],
[class*="fc"] button[class*="checkout"],
[class*="fc"] a[class*="checkout"] {
    color: #c9a962 !important;
    background: #6d2c32 !important;
    border-color: #6d2c32 !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 1px !important;
}

/* Proceed to Checkout button hover - black text on gold */
.fc-sidecart__checkout:hover,
.fc-sidecart__checkout a:hover,
.fc-sidecart__checkout button:hover,
.fc-action--checkout:hover,
.fc-cart__checkout-button:hover,
.fc-btn--checkout:hover,
.fc-btn--primary:hover,
[class*="fc"][class*="checkout"]:hover,
[class*="fc-sidecart"] [class*="checkout"]:hover,
[class*="fc"] button[class*="checkout"]:hover,
[class*="fc"] a[class*="checkout"]:hover {
    color: #000000 !important;
    background: #c9a962 !important;
    border-color: #c9a962 !important;
}

