/* ==========================================
   ZVI FRAGRANCE - LUXURY EDITORIAL STYLES
   ========================================== */

:root {
    --bg-primary: #FAF7F2;
    --bg-card: #F4EFE6;
    --bg-dark: #11100F;
    --bg-footer: #0D0C0B;
    
    --text-primary: #1C1A18;
    --text-muted: #6E6860;
    --text-light: #F7F4EF;
    
    --color-gold: #C5A880;
    --color-gold-hover: #AA8B60;
    --color-gold-light: #E8DCC9;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-drawer: -5px 0 25px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.max-w-700 {
    max-width: 720px;
}

.text-center {
    text-align: center;
}

.margin-auto {
    margin: 0 auto;
}

/* Eyebrows & Dividers */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.divider-gold {
    width: 36px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1.5rem auto;
}

.gold-line {
    width: 32px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1.2rem 0;
}

.gold-line-center {
    width: 32px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1.2rem auto;
}

/* Subtle Announcement Bar */
.announcement-bar {
    background-color: var(--bg-dark);
    color: #E2DDD5;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-align: center;
    padding: 0.4rem 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(226, 219, 208, 0.5);
    padding: 1.1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    text-align: left;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    flex: 1;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: capitalize;
    position: relative;
    padding: 4px 0;
}

.desktop-nav a.active, .desktop-nav a:hover {
    color: var(--color-gold);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-fast);
}

.desktop-nav a.active::after, .desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-shrink: 0;
}

.icon-btn {
    position: relative;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color var(--transition-fast);
}

.icon-btn:hover {
    color: var(--color-gold);
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -7px;
    background-color: var(--bg-dark);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation Drawer & Backdrop */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background-color: #FAF7F2;
    z-index: 999;
    padding: 2rem 1.8rem;
    box-shadow: 4px 0 25px rgba(0,0,0,0.18);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-right: 1px solid rgba(226, 219, 208, 0.8);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 16, 15, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 219, 208, 0.8);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(226, 219, 208, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.mobile-link.active, .mobile-link:hover {
    color: var(--color-gold);
}

.mobile-menu-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 219, 208, 0.8);
}

/* Page Banners */
.page-banner {
    padding: 4.5rem 0 3rem 0;
    background-color: #F4EFE6;
    border-bottom: 1px solid rgba(226, 219, 208, 0.6);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.page-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-bar {
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(226, 219, 208, 0.4);
}

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

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    text-align: center;
    border-radius: 0px;
}

.btn-dark {
    background-color: var(--bg-dark);
    color: #fff;
    border: 1px solid var(--bg-dark);
}

.btn-dark:hover {
    background-color: #2E2926;
    border-color: #2E2926;
}

.btn-hero {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-hero:hover {
    background-color: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}

.btn-editorial-primary {
    background-color: var(--bg-dark);
    color: #fff;
    border: 1px solid var(--bg-dark);
    padding: 0.8rem 1.6rem;
}

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

.btn-subordinate {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 0.4rem 0;
    transition: color var(--transition-fast);
}

.btn-subordinate:hover {
    color: var(--text-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

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

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: 1px solid #25D366;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1EBE5B;
    border-color: #1EBE5B;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 620px;
    padding: 3rem 1.5rem;
}

.hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: var(--color-gold-light);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1;
}

.hero-title-sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    letter-spacing: 0.45em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

.hero-description {
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.product-editorial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-hero-image-wrapper {
    width: 100%;
    min-height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(244, 239, 230, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    overflow: hidden;
    border: 1px solid rgba(226, 219, 208, 0.5);
    position: relative;
}

.product-editorial-item:hover .product-hero-image-wrapper {
    box-shadow: var(--shadow-medium);
}

.product-editorial-img {
    max-height: 380px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.zoom-card-container {
    cursor: pointer;
}

.zoom-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-editorial-details {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-editorial-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--text-primary);
}

.product-editorial-audience {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.product-editorial-notes {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.product-editorial-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.product-editorial-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-strikethrough {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #A59F96;
}

.price-sale {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.product-editorial-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
}

/* Product Detail Page (PDP) & Shopify Zoom Effect */
.pdp-section {
    padding: 4rem 0;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pdp-main-image {
    background: radial-gradient(circle, #fff 0%, #F4EFE6 100%);
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 2rem;
    text-align: center;
}

.shopify-zoom-wrapper {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.shopify-zoom-img {
    max-height: 440px;
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.15s ease-out;
}

.zoom-hint-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(17, 16, 15, 0.8);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity var(--transition-fast);
}

.shopify-zoom-wrapper:hover .zoom-hint-badge {
    opacity: 0;
}

.pdp-thumbs {
    display: flex;
    gap: 1rem;
}

.pdp-thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid rgba(226, 219, 208, 0.8);
    background: #fff;
    padding: 5px;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.pdp-thumb.active, .pdp-thumb:hover {
    border-color: var(--color-gold);
}

.pdp-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    margin: 0.3rem 0;
}

.pdp-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.pdp-price {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.pdp-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pdp-pyramid-box {
    background-color: #F4EFE6;
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pyramid-heading {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pyramid-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pdp-actions-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-section {
    padding: 5rem 0;
    background-color: #F4EFE6;
}

/* Story Page Features */
.story-banner-feature {
    position: relative;
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-info-card {
    background-color: #F4EFE6;
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 2.5rem;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-channel-item {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.channel-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form-card {
    background-color: #FAF7F2;
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.margin-top-1rem {
    margin-top: 1rem;
}

/* Cart & Checkout Page */
.cart-page-section {
    padding: 4rem 0;
}

.cart-page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cart-page-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: #F4EFE6;
    border: 1px solid rgba(226, 219, 208, 0.8);
    margin-bottom: 1rem;
}

.cart-page-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}

.item-info {
    flex-grow: 1;
}

.item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.checkout-card {
    background: #FAF7F2;
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 2rem;
}

.checkout-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.checkout-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background-color: #F4EFE6;
    border-top: 1px solid rgba(226, 219, 208, 0.6);
    border-bottom: 1px solid rgba(226, 219, 208, 0.6);
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

.philosophy-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(226, 219, 208, 0.8);
    background-color: #FAF7F2;
    box-shadow: var(--shadow-small);
}

.story-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-normal);
}

.story-image-wrapper:hover .story-img {
    transform: scale(1.03);
}

.story-content {
    padding-right: 1.5rem;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
}

.story-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

/* Which One Is You? */
.which-section {
    position: relative;
    background-color: var(--bg-dark);
    color: #fff;
    padding-top: 3.5rem;
}

.which-header-overlay {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 2.5rem;
}

.which-main-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: #fff;
}

.which-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 420px;
}

.which-split-half {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    overflow: hidden;
}

.which-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.65);
    transition: transform var(--transition-normal);
}

.which-split-half:hover .which-bg-img {
    transform: scale(1.04);
}

.which-content-box {
    position: relative;
    z-index: 2;
    max-width: 340px;
}

.which-name {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
}

.which-subhead {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--color-gold-light);
    display: block;
    margin-top: 6px;
    margin-bottom: 0.8rem;
}

.which-tagline {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.which-notes {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

/* Instagram Section */
.social-section {
    padding: 5.5rem 0;
    background-color: #F4EFE6;
}

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.social-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

/* Attractive FAQ Section */
.faq-section {
    padding: 6.5rem 0;
    background-color: var(--bg-primary);
}

.faq-accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: #FAF7F2;
    border: 1px solid rgba(226, 219, 208, 0.8);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-subtle);
}

.faq-item:hover, .faq-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-q-text {
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--color-gold);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.6rem 1.4rem 1.6rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
    border-top: 1px solid rgba(226, 219, 208, 0.4);
    margin-top: 0.4rem;
    padding-top: 1rem;
}

.faq-support-card {
    margin-top: 3.5rem;
    background-color: #F4EFE6;
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.support-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.support-card-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background-color: var(--bg-footer);
    color: #DFDAD2;
    padding: 5rem 0 2rem 0;
    font-size: 0.82rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.12em;
}

.footer-logo .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    margin-top: 2px;
}

.footer-tagline {
    color: #9C968E;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: #9C968E;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #9C968E;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-link {
    color: #9C968E;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.craft-card {
    background-color: #FAF7F2;
    border: 1px solid rgba(226, 219, 208, 0.8);
    padding: 2.2rem 1.8rem;
    border-radius: 4px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.craft-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}

.craft-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.craft-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cart Drawer */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: #FAF7F2;
    z-index: 201;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-drawer);
    transition: right var(--transition-normal);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(226, 219, 208, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.close-btn {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text-muted);
}

.cart-drawer-body {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.empty-cart-msg svg {
    margin-bottom: 1rem;
    color: #BDB6AB;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(226, 219, 208, 0.8);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #F0EAE1;
    padding: 5px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 4px 0;
}

.cart-item-remove {
    font-size: 0.7rem;
    color: #C0392B;
    text-decoration: underline;
    cursor: pointer;
}

.cart-drawer-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(226, 219, 208, 0.8);
    background-color: #F4EFE6;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.shipping-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.product-modal, .checkout-modal, .success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 800px;
    background-color: #FAF7F2;
    z-index: 301;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal.active, .checkout-modal.active, .success-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

.modal-img-col img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    background: radial-gradient(circle, #fff 0%, #F3EDE3 100%);
    padding: 1.5rem;
}

.modal-brand {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: block;
}

.modal-product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.modal-product-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.modal-price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-desc-box {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.notes-breakdown {
    border-top: 1px solid rgba(226, 219, 208, 0.8);
    border-bottom: 1px solid rgba(226, 219, 208, 0.8);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.notes-heading {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.notes-list p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.qty-selector-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(226, 219, 208, 0.8);
    background-color: #fff;
}

.qty-control button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.qty-control input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 600px;
}

.checkout-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.checkout-modal-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.form-group input, .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(226, 219, 208, 1);
    background-color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.order-summary-box {
    background-color: #F4EFE6;
    padding: 1.2rem;
    border: 1px solid rgba(226, 219, 208, 0.8);
    margin: 0.5rem 0;
}

.order-summary-box h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.total-line {
    border-top: 1px solid rgba(226, 219, 208, 1);
    padding-top: 0.6rem;
    margin-top: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
}

/* Success Modal */
.success-modal {
    max-width: 480px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #27AE60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
}

.success-modal h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.order-ref-text {
    font-size: 0.9rem;
    margin: 0.8rem 0;
}

.order-ref-text span {
    color: var(--color-gold);
    font-weight: 700;
}

.success-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--bg-dark);
    color: #fff;
    padding: 0.85rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-medium);
    z-index: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.toast-notification.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .brand-logo {
        text-align: center;
    }
    
    .brand-logo .logo-text-wrapper {
        align-items: center;
    }

    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .products-editorial-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-content {
        padding-right: 0;
    }

    .which-split-container {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .hero-title {
        font-size: 3.4rem;
    }
    
    .product-hero-image-wrapper {
        min-height: 280px;
        padding: 1rem;
    }

    .product-editorial-img {
        max-height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Focus States for Keyboard Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #C5A880;
    outline-offset: 3px;
}
