/* ==========================================================================
   MASHA ARCHER - LUXURY FINE JEWELRY STOREFRONT DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-primary: #070707;
    --bg-secondary: #0e0e10;
    --bg-tertiary: #161619;
    --bg-card: rgba(20, 20, 24, 0.7);
    --bg-glass: rgba(14, 14, 16, 0.85);
    
    /* Champagne Gold & Luxury Accents */
    --accent: #dfba73;
    --accent-light: #f3d498;
    --accent-dark: #b8934a;
    --accent-glow: rgba(223, 186, 115, 0.25);
    
    /* Neutral Text Hierarchy */
    --text-primary: #f5f5f7;
    --text-secondary: #aaaaaf;
    --text-muted: #75757a;
    
    /* Borders & Dividers */
    --border-color: rgba(223, 186, 115, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Animations & Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

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

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg, #09090b 0%, #1c1810 50%, #09090b 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.announcement-bar a {
    color: var(--accent);
    font-weight: 500;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

/* HEADER & NAVIGATION */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

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

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    letter-spacing: 0.25em;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}

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

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.header-btn:hover {
    border-color: var(--accent);
    background: rgba(223, 186, 115, 0.1);
    color: var(--accent);
}

.header-btn.wix-badge {
    border-color: var(--border-color);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.badge {
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(223, 186, 115, 0.08);
}

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

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.btn-icon-only {
    padding: 0.9rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-icon-only:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.flex-1 {
    flex: 1;
}

/* SECTION UTILITIES */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

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

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: radial-gradient(circle at 50% 30%, rgba(30, 25, 15, 0.8) 0%, rgba(7, 7, 7, 0.98) 70%),
                url('hero-bg.jpg?v=2') center/cover no-repeat;
    background-blend-mode: overlay;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(7,7,7,0.5) 20%, rgba(7,7,7,0.85) 80%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(223, 186, 115, 0.1);
    border: 1px solid var(--border-color);
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* ABOUT / BIOGRAPHY SECTION */
.about-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-portrait {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-luxury);
    filter: brightness(0.95);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
}

.about-image-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.about-image-badge strong {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
}

.paragraph-highlight {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-light);
    line-height: 1.4;
    margin-bottom: 1.8rem;
    font-style: italic;
}

.about-quote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent);
}

.about-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    font-style: italic;
}

/* AESTHETIC PHILOSOPHY */
.philosophy-section {
    position: relative;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.philosophy-card:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-svg-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    stroke: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: var(--transition-fast);
}

.philosophy-card:hover .card-svg-icon {
    transform: scale(1.1);
    stroke: var(--accent-light);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* PRESS & EXHIBITIONS */
.press-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.press-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
}

.press-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.press-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.press-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.press-card:hover .press-image-wrapper img {
    transform: scale(1.05);
}

.press-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid var(--border-color);
}

.press-body {
    padding: 2rem;
}

.press-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.press-location {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* INSTAGRAM SHOWCASE */
.instagram-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.insta-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-subtle);
    display: block;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.insta-card:hover img {
    transform: scale(1.1);
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.insta-caption {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.insta-handle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* BOUTIQUE / STORE CATALOG */
.store-section {
    background-color: var(--bg-primary);
}

.store-header {
    margin-bottom: 3.5rem;
}

.store-desc {
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.store-controls-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.store-search-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 0.9rem 3rem 0.9rem 3.2rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(223, 186, 115, 0.15);
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
}

.search-clear-btn.visible {
    display: block;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sort-select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem 1.2rem;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
}

.sort-select:focus {
    border-color: var(--accent);
}

.filter-controls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.filter-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-btn, .price-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .price-btn:hover {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.filter-btn.active, .price-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    font-weight: 500;
}

.results-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.view-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}

/* PRODUCT GRID & CARDS */
.product-grid {
    display: grid;
    gap: 2.5rem;
    transition: var(--transition);
}

.product-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #0c0c0e;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

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

.primary-image {
    opacity: 1;
}

.alternate-image {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .alternate-image {
    opacity: 1;
}

.card-fav-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    background: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.card-fav-btn:hover, .card-fav-btn.active {
    border-color: var(--accent);
    color: #e63946;
    background: rgba(0,0,0,0.9);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay span {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--accent);
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.card-actions-row {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.btn-card-inquire {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-inquire:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

/* CONTACT & INQUIRIES SECTION */
.contact-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
}

.card-item-icon {
    font-size: 1.8rem;
}

.contact-card-item strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.contact-card-item p {
    margin: 0;
    font-size: 0.88rem;
}

.contact-form-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

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

/* FOOTER */
.main-footer {
    background-color: #040405;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 2rem 3rem 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

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

/* SLIDE-OUT DRAWERS (WISHLIST & INQUIRY BAG) */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition);
}

.drawer-overlay.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.4rem;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-item {
    display: flex;
    gap: 1.2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: 1rem;
    align-items: center;
}

.drawer-item img {
    width: 80px;
    height: 90px;
    object-fit: cover;
}

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

.drawer-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.drawer-item-info p {
    font-family: var(--font-serif);
    color: var(--accent);
    margin: 0;
}

.drawer-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.drawer-item-remove:hover {
    color: #e63946;
}

.drawer-footer {
    padding: 1.8rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

/* PRODUCT MODAL & LIGHTBOX */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    padding: 2.5rem;
    background: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #09090b;
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-zoom-trigger {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.75);
    border: 1px solid var(--border-subtle);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    cursor: pointer;
}

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

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.thumb-img.active, .thumb-img:hover {
    border-color: var(--accent);
    opacity: 1;
}

.modal-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.modal-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;

}

.modal-actions-row {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

/* LIGHTBOX MODAL */
.lightbox-overlay {
    z-index: 3000;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
}

/* WIX MODAL */
.wix-modal-container {
    max-width: 650px;
    padding: 3rem;
}

.wix-modal-body h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.wix-step {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.wix-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.code-snippet {
    width: 100%;
    height: 80px;
    background: #000;
    color: #00ff66;
    border: 1px solid var(--border-subtle);
    padding: 1rem;
    font-family: monospace;
    font-size: 0.85rem;
    margin: 1rem 0;
    resize: none;
}

/* TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    color: var(--accent-light);
    padding: 1rem 1.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-luxury);
    z-index: 4000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

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

/* ANIMATIONS */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delayed {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delayed {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.8rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .philosophy-grid, .press-grid { grid-template-columns: 1fr 1fr; }
    .product-grid.grid-3, .product-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
    .modal-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-title { font-size: 2.8rem; }
    .philosophy-grid, .press-grid { grid-template-columns: 1fr; }
    .product-grid.grid-3, .product-grid.grid-4 { grid-template-columns: 1fr; }
    .store-controls-container { padding: 1.2rem; }
    .filter-controls-row { flex-direction: column; gap: 1rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 40px; height: 1px; }
}
