/* -------------------------------------------------------------
   MAISON - Luxury E-Commerce Stylesheet
   ------------------------------------------------------------- */

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #fbfaf8; /* Soft Cream / Beige */
    --bg-dark: #0a0a0a;      /* Solid Black */
    --bg-dark-rgb: 10, 10, 10;
    --text-primary: #111111;  /* Deep Charcoal / Black */
    --text-secondary: #5a5a5a;/* Medium Gray for body */
    --text-light: #8e8e8e;    /* Light Gray for captions */
    --text-white: #ffffff;
    --text-white-dim: #d1d1d1;
    
    /* Luxury Accents */
    --accent-gold: #c5a880;        /* Subtle Warm Gold */
    --accent-gold-dark: #b3946a;   /* Darker Gold on hover */
    --accent-gold-light: #f7f3ed;  /* Soft Warm Gold wash */
    --accent-yellow: #dfb76c;      /* Brighter Yellow/Gold for tags/buttons */
    
    /* Layout & Spacing */
    --header-height: 140px;
    --header-height-scrolled: 75px;
    --max-width: 1400px;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.1);
    
    /* Glassmorphism Defaults */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

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

hr.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
    width: 100%;
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- Common Components (Buttons & Containers) --- */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 4% 100px 4%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border-radius: 0; /* Pure geometric luxury */
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--text-white);
    border: 1px solid var(--text-primary);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    box-shadow: inset 0 -3em 0 0 var(--bg-primary);
}

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

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

.btn-gold {
    background-color: var(--accent-yellow);
    color: var(--text-primary);
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(223, 183, 108, 0.2);
}
.btn-gold:hover {
    background-color: var(--accent-gold-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 148, 106, 0.3);
}
.btn-gold:active {
    transform: translateY(0);
}

.btn-black-capsule {
    background-color: var(--text-primary);
    color: var(--text-white);
    border-radius: 30px;
    padding: 16px 42px;
    font-size: 11px;
    font-weight: 600;
}
.btn-black-capsule:hover {
    background-color: var(--accent-gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

/* --- Scroll Reveal Effects --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Title Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-primary);
}

/* --- Header / Navigation Style --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Header scrolled state - Premium sticky interaction */
.main-header.header-scrolled {
    position: fixed;
    height: var(--header-height-scrolled);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.main-header.header-scrolled .nav-links a,
.main-header.header-scrolled .action-btn {
    color: var(--text-primary);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — large gold lockup on load, shrinks to a small mark and swaps to black once the header is scrolled/light */
.logo-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.logo-img {
    height: 92px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}
.logo-img-black {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}
.main-header.header-scrolled .logo-img {
    height: 40px;
}
.main-header.header-scrolled .logo-img-gold {
    opacity: 0;
}
.main-header.header-scrolled .logo-img-black {
    opacity: 1;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-white);
    padding: 8px 0;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}
.nav-links a:hover {
    color: var(--accent-gold);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Actions (Search, Cart, User) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.action-btn {
    color: var(--text-white);
    font-size: 16px;
    padding: 8px;
    transition: var(--transition-fast);
    position: relative;
}
.action-btn:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.cart-btn {
    display: flex;
    align-items: center;
}
.cart-badge {
    position: absolute;
    top: 0px;
    right: -2px;
    background-color: var(--accent-yellow);
    color: var(--text-primary);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Hero Section Style --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 850px;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    padding: 0 7%;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-ref-01-clean.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.62) saturate(1.05);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay on left to ensure high readability of text and hide baked-in source text */
    background: linear-gradient(90deg, rgba(var(--bg-dark-rgb), 0.55) 0%, rgba(var(--bg-dark-rgb), 0.4) 45%, rgba(var(--bg-dark-rgb), 0.2) 70%, rgba(var(--bg-dark-rgb), 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 640px;
    margin-top: -60px;
}

.hero-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.gold-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 68px;
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--accent-yellow);
}

.hero-description {
    font-size: 16px;
    color: var(--text-white-dim);
    max-width: 480px;
    margin-bottom: 44px;
}

.hero-actions-container {
    display: flex;
    gap: 18px;
}

.hero-section .btn-secondary {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}
.hero-section .btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--text-primary);
}

/* --- Curated Selection (Featured Pieces) Section --- */
.curated-section {
    background-color: var(--bg-secondary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Card */
.product-card {
    background-color: transparent;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: #f3f3f3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Labels */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    background-color: var(--accent-yellow);
    color: var(--text-primary);
}

/* Add to bag overlay button */
.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background-color: rgba(17, 17, 17, 0.9);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 10;
}
.product-image-container:hover .add-to-cart-overlay {
    transform: translateY(0);
}
.product-image-container:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
}

.product-price {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

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

/* --- Our Heritage Section Style --- */
.heritage-section {
    background-color: var(--bg-primary);
}

.heritage-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Left: Image with Overlay Badge Card */
.heritage-image-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.heritage-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.heritage-badge-card {
    position: absolute;
    bottom: -20px;
    right: 40px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 250px;
}

.badge-number {
    font-size: 34px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.badge-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

/* Right: Content */
.heritage-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heritage-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.heritage-title em {
    font-style: italic;
    font-family: var(--font-serif);
}

.heritage-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 480px;
}

/* 3-column features block */
.heritage-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Our Collections Section Style --- */
.collections-section {
    background-color: var(--bg-secondary);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-item {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Bottom shadow gradient overlay for text readability */
.collection-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity var(--transition-smooth);
}

.collection-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 5;
    color: var(--text-white);
    transition: transform var(--transition-smooth);
}

.collection-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-white);
}

.collection-subtitle {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-white-dim);
}

/* Hover Zoom & Translate */
.collection-item:hover .collection-img {
    transform: scale(1.05);
}
.collection-item:hover .collection-overlay-text {
    transform: translateY(-5px);
}

/* --- Inner Circle (Membership) Section Style --- */
.inner-circle-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.circle-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.light-tagline {
    color: var(--accent-gold);
}

.circle-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-white);
}
.circle-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--accent-yellow); /* Italicized word in gold */
}

.circle-desc {
    font-size: 15px;
    color: var(--text-white-dim);
    margin-bottom: 30px;
    max-width: 480px;
}

.circle-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.circle-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-white-dim);
}

.checkmark-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

/* Right side Closet Image with Overlay badge card */
.circle-image-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.circle-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.circle-badge-card {
    position: absolute;
    bottom: -20px;
    left: 40px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 250px;
    /* Customize card for dark theme */
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-badge-card .badge-number {
    color: var(--accent-yellow);
}

/* --- Newsletter Section Style --- */
.newsletter-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-section .section-container {
    text-align: center;
    padding: 100px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.newsletter-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 15px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: var(--bg-primary);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 16px 24px;
    font-size: 13px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* --- Footer Style --- */
.main-footer {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 4% 60px 4%;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.footer-brand-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 3px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 12px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.social-icon:hover {
    background-color: var(--text-primary);
    color: var(--text-white);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* --- Membership Modal Style --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.modal-active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-secondary);
    width: 100%;
    max-width: 520px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.modal-active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-primary);
    transition: var(--transition-fast);
}
.modal-close:hover {
    color: var(--accent-gold);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.15);
    background-color: var(--bg-primary);
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}
.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* --- Toast Notification Style --- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-primary);
    color: var(--text-white);
    padding: 16px 28px;
    font-size: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1001;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heritage-split,
    .circle-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .heritage-content-wrapper,
    .circle-content {
        align-items: center;
        text-align: center;
    }
    
    .heritage-badge-card {
        right: 20px;
    }
    
    .circle-badge-card {
        left: 20px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col.col-brand {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide nav links on mobile for simplicity, could add a drawer */
    }
    
    .hero-section {
        min-height: 600px;
        padding: 0 6%;
    }

    .hero-bg-layer {
        background-position: 78% center;
    }

    .hero-content {
        margin-top: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .hero-actions-container {
        gap: 10px;
    }

    .hero-actions-container .btn {
        flex: 1 1 0;
        padding: 12px 10px;
        font-size: 9px;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .stats-container {
        gap: 30px;
        justify-content: space-between;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col.col-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
