﻿/* 
 * ARTDOM 2026 - Premium Furniture Landing Page
 * Style inspired by Fendi Casa & Minotti
 */

:root {
    /* Color Palette */
    --bg-color: #FDFBF7;
    /* Warm Alabaster */
    --text-primary: #1A1A1A;
    /* Soft Black */
    --text-secondary: #595959;
    /* Dark Grey */
    --accent-color: #D4AF37;
    /* Muted Gold */
    --accent-hover: #b8962c;
    --border-color: #E5E5E5;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding var(--transition-fast);
}

.navbar.scrolled {
    padding: var(--spacing-sm) 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}


/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(253, 251, 247, 0.95), rgba(253, 251, 247, 0.98)),
        radial-gradient(800px 400px at 15% 5%, rgba(212, 175, 55, 0.08), transparent 70%);
}

/* Left Side: Content & Form - Premium Style */
.hero-content-side {
    flex: 0 0 50%;
    /* Strictly 50% width */
    max-width: 50%;
    background:
        linear-gradient(180deg, rgba(249, 245, 236, 0.98), rgba(249, 245, 236, 0.96)),
        radial-gradient(600px 260px at 15% 0%, rgba(212, 175, 55, 0.08), transparent 70%);
    color: #1A1A1A;
    padding: 150px 8% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-text-container {
    max-width: 100%;
    width: 95%;
    margin-bottom: 2.2rem;
    position: relative;
}

.hero-intro {
    font-size: clamp(1.05rem, 1.15vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.6rem;
    color: #1A1A1A;
    max-width: 650px;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

.hero-intro strong {
    font-weight: 600;
    border-bottom: 1px solid #1A1A1A;
}

.hero-promo {
    display: block;
    padding: 1.35rem 1.8rem 1.35rem 2.8rem;
    background: linear-gradient(135deg, #ffffff, #f7f4ed);
    border: 1px solid rgba(26, 26, 26, 0.12);
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    font-style: normal;
    max-width: 650px;
    margin-bottom: 2.1rem;
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 26, 26, 0.2);
}

.hero-promo::before {
    content: none;
}

.hero-promo strong {
    display: inline-block;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

.hero-promo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: repeating-linear-gradient(135deg,
            rgba(26, 26, 26, 0.04) 0 8px,
            transparent 8px 16px);
    opacity: 0.25;
}

.hero-promo .highlight {
    display: inline-block;
    margin-top: 0.55rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    border-bottom: none;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    padding: 0 0.2rem;
    background: linear-gradient(transparent 60%, rgba(212, 175, 55, 0.35) 0);
}

/* Registration Card - Minimalist */
.registration-card {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.registration-card::before {
    display: none;
}

.registration-card::after {
    display: none;
}

.registration-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    text-align: left;
    color: #1A1A1A;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 0.98rem;
    color: #606060;
    text-align: left;
    margin-bottom: 1.8rem;
    line-height: 1.5;
    max-width: 600px;
}

.crm-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    /* For focus effects */
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a7a7a;
    font-weight: 600;
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: #1A1A1A;
    /* label highlights on focus */
}

.form-group input,
.form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 0;
    padding: 0.7rem 0;
    color: #1A1A1A;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 2rem;
    color: #9a9a9a;
    background-image:
        linear-gradient(45deg, transparent 50%, #5c5c5c 50%),
        linear-gradient(135deg, #5c5c5c 50%, transparent 50%);
    background-position:
        calc(100% - 14px) calc(50% + 1px),
        calc(100% - 8px) calc(50% + 1px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.25s ease, color 0.25s ease, background-position 0.25s ease;
}

.form-group select:required:valid {
    color: #1A1A1A;
}

.form-group select option {
    color: #1A1A1A;
    background: #f8f6f2;
}

.form-group select option[value=""] {
    color: #9a9a9a;
}

.client-type-select {
    position: relative;
}

.client-type-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 0;
    padding: 0.7rem 0;
    color: #1A1A1A;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.client-type-select__value {
    color: #1A1A1A;
}

.client-type-select__value.is-placeholder {
    color: #9a9a9a;
}

.client-type-select__icon {
    width: 9px;
    height: 9px;
    border-right: 1.8px solid #5c5c5c;
    border-bottom: 1.8px solid #5c5c5c;
    transform: rotate(45deg);
    margin-top: -4px;
    flex-shrink: 0;
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.client-type-select__menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0.35rem;
    margin: 0;
    list-style: none;
    background: #f8f6f2;
    border: 1px solid rgba(26, 26, 26, 0.14);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
    max-height: 220px;
    overflow-y: auto;
}

.client-type-select__option {
    width: 100%;
    border: none;
    background: transparent;
    color: #1A1A1A;
    text-align: left;
    font: inherit;
    border-radius: 9px;
    padding: 0.58rem 0.7rem;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.client-type-select__option:hover {
    background: #ece8df;
}

.client-type-select__option.is-selected {
    background: #1A1A1A;
    color: #f8f6f2;
}

.client-type-select.is-open .client-type-select__menu {
    display: block;
}

.client-type-select.is-open .client-type-select__trigger,
.client-type-select__trigger:focus {
    outline: none;
    border-color: #1A1A1A;
}

.client-type-select.is-open .client-type-select__icon {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.form-group input::placeholder {
    color: #b0b0b0;
    font-weight: 300;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1A1A1A;
    background: transparent;
    box-shadow: none;
}

.form-group:focus-within select {
    background-position:
        calc(100% - 14px) calc(50% - 1px),
        calc(100% - 8px) calc(50% - 1px);
}

.form-group input:focus::placeholder {
    opacity: 0.5;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: #7a7a7a;
    cursor: pointer;
    margin-top: 0.5rem;
    user-select: none;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #1A1A1A;
    cursor: pointer;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: #ffffff;
    color: #1A1A1A;
    text-decoration: none;
    padding: 0.95rem 1.6rem;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
        letter-spacing 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.btn-main__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #1A1A1A;
    color: #ffffff;
    line-height: 1;
    flex: 0 0 auto;
}

.btn-main__icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.btn-main__text {
    line-height: 1.2;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
    background: #1A1A1A;
    color: #ffffff;
    letter-spacing: 0.14em;
}

.btn-main:hover .btn-main__icon {
    background: #ffffff;
    color: #1A1A1A;
}

.btn-main:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.15), 0 18px 32px rgba(0, 0, 0, 0.14);
}

.btn-main:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn-register,
.btn-catalog {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.2rem;
}

.btn-catalog.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.btn-catalog.is-loading .btn-main__icon {
    animation: catalog-icon-spin 0.9s linear infinite;
}

@keyframes catalog-icon-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.report-link {
    font-size: 0.7rem;
    color: #bbb;
    text-decoration: none;
    text-align: left;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-link:hover {
    color: #888;
}

.catalog-download {
    margin-top: 2.2rem;
    width: 100%;
    max-width: 600px;
}

/* Mobile Adjustments for Split */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column !important;
        /* РЈР±РµР¶РґР°РµРјСЃСЏ, С‡С‚Рѕ РЅР°РїСЂР°РІР»РµРЅРёРµ СЃРІРµСЂС…Сѓ РІРЅРёР· */
        min-height: auto;
        display: flex !important;
    }

    .hero-content-side {
        order: 1 !important;
        /* Р РµРіРёСЃС‚СЂР°С†РёСЏ Р’РЎР•Р“Р”Рђ РїРµСЂРІР°СЏ */
        padding: 120px 5% 40px !important;
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .btn-register,
    .btn-catalog {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-visual-side {
        order: 2 !important;
        /* Р§РµСЂС‚РµР¶Рё Р’РЎР•Р“Р”Рђ РІС‚РѕСЂС‹Рµ */
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 40px 5% !important;
    }

    .hero-content-side {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-visual-side {
        min-height: auto;
        /* Reduced height */
        padding: 40px 5%;
    }

    .hero-slider {
        width: 100%;
        height: 300px;
    }

    .registration-card h2 {
        font-size: 2rem;
    }

    .registration-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-side {
        padding-top: 160px;
        /* Further increased to clear header */
    }

    .hero-text-container {
        padding-left: 0.5rem;
        /* Less indentation */
        margin-bottom: 1.5rem;
        /* Compact margin */
        width: 100%;
    }

    .hero-intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-promo {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .registration-card h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .card-subtitle {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .crm-form {
        gap: 1rem;
        /* Tighter form */
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }

    .client-type-select__trigger {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }

    .btn-main {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
        min-height: 56px;
    }

    .btn-main__icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .btn-main__text {
        text-align: left;
        /* Р’РµСЂРЅРµРј Р»РµРІРѕРµ РІС‹СЂР°РІРЅРёРІР°РЅРёРµ С‚РµРєСЃС‚Сѓ РІРЅСѓС‚СЂРё С†РµРЅС‚СЂРёСЂРѕРІР°РЅРЅРѕРіРѕ С„Р»РµРєСЃР° РґР»СЏ РєСЂР°СЃРѕС‚С‹ */
        line-height: 1.2;
    }

    .btn-register {
        margin-top: 1rem;
    }

    .registration-card {
        padding: 0;
    }
}


/* Philosophy Section */
.philosophy-section {
    padding: 4.5rem 0 3.5rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(253, 251, 247, 0.9), rgba(253, 251, 247, 0.98)),
        radial-gradient(700px 320px at 10% 0%, rgba(212, 175, 55, 0.07), transparent 70%);
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.text-block {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 3.5rem 3.2rem;
    background: rgba(253, 251, 247, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.philosophy-head {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
    align-items: flex-start;
}

.philosophy-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1A1A1A;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    background: rgba(255, 255, 255, 0.6);
    display: inline-flex;
}

.text-block::before {
    content: none;
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #1A1A1A, rgba(26, 26, 26, 0));
    position: absolute;
    top: -10px;
    left: 24px;
}

.text-block h2 {
    font-size: clamp(2.4rem, 3.6vw, 4rem);
    margin-bottom: 1.6rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.text-block p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 760px;
}

.philosophy-values {
    margin-top: 1.8rem;
}

.value-card {
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1.4rem;
}

.value-card__item {
    padding: 0.4rem 0.2rem;
}

.value-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: #1A1A1A;
    margin-bottom: 0.4rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.utp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.utp-card {
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.utp-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.4rem;
    color: #1A1A1A;
}

.utp-card__text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .philosophy-section {
        padding-bottom: 1.8rem;
    }

    .value-card {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}


@media (max-width: 768px) {
    .philosophy-section {
        padding: 2.6rem 0 1.6rem;
    }

    .text-block {
        padding: 2rem 1.4rem 2.2rem;
        border-radius: 0;
        text-align: left;
    }

    .text-block::before {
        top: -8px;
        left: 16px;
        width: 48px;
    }

    .text-block h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .text-block p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .value-card {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .utp-grid {
        grid-template-columns: 1fr;
    }
}

/* Designers Section - Stylish & Asymmetric */
.designers-section {
    padding: 4.5rem 0 6rem;
    background:
        radial-gradient(900px 500px at 10% 15%, rgba(212, 175, 55, 0.08), transparent 70%),
        radial-gradient(700px 400px at 90% 85%, rgba(26, 26, 26, 0.06), transparent 65%),
        #FDFBF7;
    position: relative;
    overflow: hidden;
}

.designers-grid {
    display: flex;
    align-items: stretch;
    gap: 6rem;
    justify-content: space-between;
}

/* Text Styling */
.designers-text {
    flex: 1;
    max-width: 50%;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    background: rgba(253, 251, 247, 0.85);
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    position: relative;
}

.designers-intro {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.designers-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1A1A1A;
    margin-bottom: 1.2rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    background: rgba(255, 255, 255, 0.6);
}

.designers-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.designers-bio p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.designers-bio .lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
}

.designers-signature {
    margin-top: 3rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: normal;
    color: var(--text-primary);
    line-height: 1.4;
    position: relative;
    padding-top: 2.5rem;
}

.designers-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #1A1A1A, rgba(26, 26, 26, 0));
}

/* Visual Side - Composition */
.designers-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    /* Give it space */
}

.designers-composition {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.designers-visual::before,
.designers-visual::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.45;
    z-index: 0;
}

.designers-visual::before {
    width: 340px;
    height: 340px;
    background: rgba(212, 175, 55, 0.2);
    top: 10%;
    right: 10%;
}

.designers-visual::after {
    width: 260px;
    height: 260px;
    background: rgba(26, 26, 26, 0.12);
    bottom: 5%;
    left: 5%;
}

.designer-img {
    position: relative;
    transition: transform var(--transition-slow);
    box-shadow: 20px 25px 70px rgba(0, 0, 0, 0.16);
    filter: saturate(0.98);
    border-radius: 18px;
    overflow: hidden;
    z-index: 1;
    border: 10px solid #fff;
}

.designer-img--hero {
    width: min(70%, 560px);
    transform: rotate(1.5deg);
}

.designers-signature p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 1.2rem;
}

.signature-list {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.signature-item {
    display: grid;
    gap: 0.35rem;
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-style: italic;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.4rem;
}

.signature-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0));
}

.signature-role {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.55);
}


.designer-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .designers-grid {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .designers-text {
        max-width: 100%;
        padding: 2.5rem;
        text-align: center;
    }

    .designers-signature::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .designers-visual {
        width: 100%;
        min-height: 420px;
        margin-top: var(--spacing-md);
    }

    .designer-img--hero {
        width: min(78%, 520px);
    }
}

@media (max-width: 600px) {
    .designers-intro h2 {
        font-size: 2.5rem;
    }

    .designers-text {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .signature-list {
        justify-content: center;
        text-align: center;
    }

    .signature-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .designers-visual {
        min-height: 520px;
        margin-top: 1.5rem;
    }

    .designers-composition {
        display: grid;
        gap: 1.2rem;
        position: static;
        width: 100%;
        height: auto;
        justify-items: center;
    }

    .designer-img {
        position: static;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        transform: none;
    }

    .designer-img--hero {
        width: min(86%, 360px);
        border: 10px solid #fff;
        transform: none;
    }
}

/* Collection Section - Zigzag Layout */
.collection-section {
    padding: 0;
    /* Remove padding to go full width */
    background-color: #fff;
}

.collection-section .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}


.section-title {
    text-align: center;
    font-size: 3.5rem;
    padding: var(--spacing-xl) 0;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    font-style: italic;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.showcase-item {
    display: flex;
    min-height: 80vh;
    /* Large height for impact */
    width: 100%;
    align-items: stretch;
}

/* Zigzag Logic: Reverse direction for even items */
.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.lifestyle-img {
    flex: 1;
    /* Takes up 50% or more depending on design */
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    /* Fallback grey */
    min-height: 400px;
    position: relative;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    text-align: center;
    isolation: isolate;
}

.details-content {
    max-width: 600px;
}

.details-content h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
}

.details-content .designer {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    opacity: 0.7;
}

.packshot-img {
    margin: var(--spacing-md) auto;
    max-width: 500px;
    width: 100%;
}

.packshot-img img {
    mix-blend-mode: multiply;
    /* Helps integrate image if background is not perfectly white */
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

/* Fix mix-blend-mode for dark backgrounds */
.product-details[style*="rgb(26"] .packshot-img img,
.product-details[style*="#1A1A1A"] .packshot-img img,
.product-details[style*="#3C3C3C"] .packshot-img img {
    mix-blend-mode: normal;
    /* Don't multiply on dark backgrounds */
    filter: brightness(1.2);
    /* Slight pop */
}

.details-content .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.btn-link {
    display: inline-block;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1A1A1A;
    color: #1A1A1A !important;
    padding: 0 0 6px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none !important;
    margin-top: 1rem;
}

.btn-link:hover {
    color: var(--accent-color) !important;
    border-color: var(--accent-color);
    letter-spacing: 0.2em;
    transform: translateY(-2px);
}


/* Right Side: Visual */
.hero-visual-side {
    flex: 0 0 50%;
    max-width: 50%;
    background: #FDFBF7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
    /* Changed from hidden to prevent clipping */
    padding: 100px 8% 60px;
    min-height: 90vh;
    position: relative;
    gap: 28px;
}

/* Subtle grid pattern */
.hero-visual-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 31px, rgba(26, 26, 26, 0.03) 32px),
        linear-gradient(90deg, transparent 31px, rgba(26, 26, 26, 0.03) 32px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Header Title */
.hero-visual-header {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.8rem;
    z-index: 2;
    margin-bottom: 10px;
    align-self: stretch;
}

.visual-title-main {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    font-style: italic;
    color: #1A1A1A;
    line-height: 1;
    letter-spacing: 0.02em;
}

.visual-title-year {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1;
}

/* Collage Container */
.hero-collage {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    min-height: 560px;
}

.collage-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-item {
    --x: 0%;
    --y: 0%;
    --r: 0deg;
    position: absolute;
    background: #fff;
    padding: 15px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.3s ease;
    transition-delay: 0s, 0s, 0s;
    will-change: transform;
    cursor: pointer;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.98);
}

.collage-item.is-clone {
    display: none;
}

.collage-item img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    filter: sepia(5%) contrast(1.05);
    transition: filter 0.3s ease;
}

.collage-label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

/* Primary sketch - larger, left side */
.collage-primary {
    width: 92%;
    max-width: 640px;
    z-index: 2;
    border: none;
    --x: -6%;
    --y: 4%;
    --r: -2.5deg;
    transition-delay: 0s, 0.05s, 0s;
}

/* Secondary sketch - right side */
.collage-secondary {
    width: 82%;
    max-width: 560px;
    z-index: 1;
    border: none;
    --x: 10%;
    --y: -2%;
    --r: 2.5deg;
    transition-delay: 0s, 0.15s, 0s;
}

/* Show labels on item hover */
.collage-item:hover .collage-label {
    opacity: 1;
    transform: translateY(0);
}

/* Individual item hover - focused state */
.hero-collage.active .collage-item:hover {
    z-index: 10;
    transform: translate3d(var(--x), calc(var(--y) - 8px), 0) rotate(var(--r)) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

/* Zoom Overlay Icon */
.collage-overlay {
    position: absolute;
    inset: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 26, 26, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zoom-icon {
    width: 48px;
    height: 48px;
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-item:hover .zoom-icon {
    transform: scale(1);
}

/* Hint Text */
.collage-hint {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    white-space: nowrap;
}

.hero-collage:hover .collage-hint,
.hero-collage.hinted .collage-hint {
    opacity: 0;
}

/* Mobile Adaptations */
@media (max-width: 1024px) {
    .hero-visual-side {
        min-height: auto;
        padding: 60px 20px 100px !important;
        /* Increased bottom padding */
        justify-content: flex-start;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual-footer {
        margin-top: 40px;
        margin-bottom: 20px;
        /* Space after button */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-collage {
        min-height: 280px;
        /* Slightly more compact on mobile */
        margin: 40px 0;
    }

    .collage-primary {
        width: 75%;
        max-width: 320px;
        --x: -4%;
        --y: 2%;
        --r: -2deg;
    }

    .collage-secondary {
        width: 65%;
        max-width: 280px;
        --x: 8%;
        --y: -2%;
        --r: 2deg;
    }

    .collage-hint {
        font-size: 0.7rem;
        bottom: -20px;
    }

    .visual-title-main {
        font-size: 3rem;
    }

    .visual-title-year {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    /* Mobile layout: continuous marquee */
    .hero-visual-side {
        padding: 60px 6% 40px !important;
        gap: 20px;
    }

    .hero-visual-header {
        align-self: flex-start;
        margin-bottom: 10px;
    }

    .hero-collage {
        width: 100%;
        min-height: 0;
        overflow: hidden;
        padding: 6px 0 18px;
        justify-content: flex-start;
        align-items: center;
    }

    .collage-track {
        display: flex;
        align-items: stretch;
        gap: 16px;
        width: max-content;
        animation: collage-marquee 30s linear infinite;
        animation-play-state: paused;
        will-change: transform;
    }

    .hero-collage.active .collage-track {
        animation-play-state: running;
    }

    .collage-item {
        position: relative;
        opacity: 1;
        transform: none;
        padding: 12px;
        width: min(78vw, 340px);
        flex: 0 0 auto;
    }

    .collage-primary,
    .collage-secondary {
        width: 100%;
        max-width: none;
        --x: 0%;
        --y: 0%;
        --r: 0deg;
    }

    .collage-item.is-clone {
        display: block;
        pointer-events: none;
    }

    .collage-overlay {
        display: none;
    }

    .collage-label {
        opacity: 1;
        transform: none;
        font-size: 0.7rem;
    }

    .hero-visual-footer {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .visual-caption {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .btn-visual-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-visual-side {
        min-height: auto;
    }

    .collage-item {
        width: min(84vw, 320px);
    }
}

/* Entry Animation */
.hero-collage.active .collage-item {
    opacity: 1;
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) scale(1);
}

@keyframes collage-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .collage-item {
        transition: none;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .hero-collage {
        overflow-x: auto;
    }

    .collage-track {
        animation: none;
    }
}

/* Lightbox Popup - Enhanced */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 60px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 20px;
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 20px 15px;
    border-radius: 4px;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Counter */
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

/* Footer: Caption and CTA */
.hero-visual-footer {
    text-align: left;
    z-index: 2;
    margin-top: 30px;
    align-self: stretch;
}

.visual-caption {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-visual-cta {
    align-self: flex-start;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-visual-side {
        flex: auto;
        max-width: 100%;
        min-height: 60vh;
        padding: 60px 20px 40px;
    }
}

/* Enhance the text style */
.hero-visual-side::after {
    /* Grain/Texture overlay */
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
}

/* Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #1A1A1A;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #1A1A1A;
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-visual-side {
        max-width: 100%;
        width: 100%;
        order: -1;
        /* Visual first? or Keep second? Usually visual first on mobile is nice */
        flex: 0 0 auto;
        height: auto;
        min-height: 0;
    }

    .visual-text-top {
        font-size: 18vw;
        left: 5%;
        top: 10%;
    }

    .visual-text-bottom {
        font-size: 12vw;
        right: 5%;
        bottom: 15%;
    }
}

/* Hero Text Overlay - ARTDOM 2026 */
.hero-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.hero-overlay-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    font-style: italic;
    color: #1A1A1A;
    line-height: 1;
    opacity: 0.15;
    mix-blend-mode: multiply;
    letter-spacing: 0.05em;
}

.hero-overlay-year {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1;
    opacity: 0.2;
    mix-blend-mode: multiply;
    margin-top: 0.5rem;
}

/* Central Image Container */
.hero-visual-side .hero-viz {
    flex-grow: 1;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 0;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    position: relative;
    height: 500px;
    /* РЈРІРµР»РёС‡РµРЅРЅР°СЏ РІС‹СЃРѕС‚Р° */
}

.hero-sketch {
    margin: 0;
    background: transparent;
    /* Р‘РµР· С„РѕРЅР° */
    border-radius: 0;
    /* Р‘РµР· СЃРєСЂСѓРіР»РµРЅРёСЏ */
    box-shadow: none;
    /* Р‘РµР· С‚РµРЅРё */
    padding: 0;
    /* Р‘РµР· РѕС‚СЃС‚СѓРїРѕРІ */
    width: 100%;
    max-width: 100%;
}

.hero-dots {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #1A1A1A;
    border-color: #1A1A1A;
    transform: scale(1.1);
}

.hero-visual-side .editorial-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* РџРѕРєР°Р·Р°С‚СЊ РІСЃС‘ РёР·РѕР±СЂР°Р¶РµРЅРёРµ */
    opacity: 1;
    display: block;
    mix-blend-mode: multiply;
    filter: none;
    transform: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.hero-visual-side .hero-viz:hover .editorial-img {
    transform: translateY(-12px) scale(1.01);
}

/* Right-side labels */
.hero-visual-side::marker {
    content: '';
}

.hero-visual-side .visual-text-top,
.hero-visual-side .visual-text-bottom {
    z-index: 2;
}

.hero-visual-side .visual-text-bottom {
    position: relative;
}

.hero-visual-side .visual-text-bottom::before {
    content: none;
}

/* Remove old wrapper styles */
.hero-title-wrapper,
.editorial-title {
    display: none;
}

.btn-link {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: opacity 0.3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-link:hover {
    opacity: 0.6;
}

/* Product Modal */
/* Product Modal - Redesigned for Premium Experience */
.product-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9000;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal__backdrop {
    position: absolute;
    inset: 0;
}

.product-modal__dialog {
    position: relative;
    width: min(1140px, 96vw);
    height: auto;
    max-height: 94vh;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    background: #fdfbf7;
    border-radius: 32px;
    box-shadow: 0 50px 140px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.product-modal__close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 44px;
    cursor: pointer;
    color: #1a1a1a;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-modal__close:hover {
    transform: rotate(90deg);
    background: #1a1a1a;
    color: #fff;
}

.product-modal__media {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f4f0e7;
    padding: 0;
    cursor: zoom-in;
    overflow: hidden;
    min-height: 500px;
}

.modal-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slide {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 40px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal__media:hover .modal-slide.active img {
    transform: scale(1.05);
}

/* Zoom Hint Overlay */
.modal-zoom-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.modal-zoom-hint svg {
    width: 18px;
    height: 18px;
}

.product-modal__media:hover .modal-zoom-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 6;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 24px;
}

.modal-next {
    right: 24px;
}

.modal-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.modal-dot.active {
    background: #1a1a1a;
    transform: scale(1.2);
}

.product-modal__info {
    padding: 60px 50px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: #909090;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.product-modal__info h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: #1a1a1a;
}

.modal-specs {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.modal-specs h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding-bottom: 10px;
}

#modal-specs-list {
    display: grid;
    gap: 1.25rem;
}

#modal-specs-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #909090;
    font-weight: 500;
}

.spec-value {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
}

/* Remove old dot separators */
.spec-dots {
    display: none;
}

.modal-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .product-modal__dialog {
        width: 95vw;
        grid-template-columns: 1fr;
        max-height: 96vh;
    }

    .product-modal__media {
        min-height: 400px;
    }

    .product-modal__info {
        padding: 40px;
    }

    .product-modal__info h3 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .product-modal__media {
        min-height: 320px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

    .product-modal__info {
        padding: 30px 24px;
    }

    .product-modal__info h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .modal-zoom-hint {
        display: none;
        /* Hide on mobile to avoid clutter */
    }
}

@media (max-width: 900px) {
    .product-modal__dialog {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    .product-modal__media {
        min-height: 280px;
    }
}

/* Mobile Responsive for Zigzag */
/* Mobile Scroll Indicator & Gradient Fade */
.modal-scroll-hint {
    display: none;
    position: sticky;
    bottom: 0px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #fdfbf7 60%, transparent);
    padding: 2.5rem 0 1rem;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-scroll-hint span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    font-weight: 500;
}

.modal-scroll-hint svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 900px) {
    .product-modal__info {
        position: relative;
    }

    .modal-scroll-hint {
        display: flex;
    }

    .product-modal__info::after {
        content: '';
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, #fdfbf7, transparent);
        pointer-events: none;
        z-index: 15;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Show gradient only when hint is visible */
    .product-modal__info.has-scroll::after {
        opacity: 1;
    }
}

@media (max-width: 900px) {

    .showcase-item,
    .showcase-item:nth-child(even) {
        flex-direction: column;
        /* Stack on mobile */
        height: auto;
        min-height: auto;
    }

    .lifestyle-img {
        height: 50vh;
        width: 100%;
    }

    .product-details {
        padding: var(--spacing-md) var(--spacing-sm);
        min-height: 50vh;
    }

    .details-content h3 {
        font-size: 2.5rem;
    }
}

/* removed hero cards mobile rules */

/* =========================================
   Footer Styles - Premium Dark
   ========================================= */
.site-footer {
    background-color: #1A1A1A;
    color: #FDFBF7;
    padding: 60px 0 30px;
    font-family: var(--font-body);
    border-top: 1px solid rgba(253, 251, 247, 0.05);
}

.site-footer .container {
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 20px;
    padding-bottom: 30px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 2.5rem;
    filter: invert(1) brightness(1.8);
    margin-left: -10px;
    /* РЎРёР»СЊРЅР°СЏ РєРѕРјРїРµРЅСЃР°С†РёСЏ РґР»СЏ РІС‹СЂР°РІРЅРёРІР°РЅРёСЏ РїРѕ Р»РµРІРѕР№ РєСЂРѕРјРєРµ */
    opacity: 0.95;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253, 251, 247, 0.5);
    max-width: 380px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FDFBF7;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(253, 251, 247, 0.05);
    border: 1px solid rgba(253, 251, 247, 0.1);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 14px;
    height: 14px;
    color: #FDFBF7;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link:hover .social-icon {
    background: #FDFBF7;
    border-color: #FDFBF7;
}

.social-link:hover .social-icon svg {
    color: #1A1A1A;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    margin-bottom: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.9);
    opacity: 0.85;
    text-align: left;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: rgba(253, 251, 247, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FDFBF7;
}

.contact-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-col p {
    color: rgba(253, 251, 247, 0.6);
}

.contact-link {
    color: #FDFBF7;
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
    padding-bottom: 2px;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(253, 251, 247, 0.3);
    letter-spacing: 0.05em;
    padding-top: 10px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(253, 251, 247, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-links a:hover {
    color: #FDFBF7;
    border-color: rgba(253, 251, 247, 0.2);
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
    padding: 2rem;
}

.success-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 2.2rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.success-modal.show .success-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1A1A1A;
    color: #ffffff;
    font-size: 1.6rem;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: #1A1A1A;
    font-style: italic;
}

.success-text {
    font-size: 0.95rem;
    color: #606060;
    line-height: 1.5;
    margin-bottom: 1.4rem;
}

.success-close {
    background: #1A1A1A;
    color: #ffffff;
    border: 1px solid #1A1A1A;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close:hover {
    background: #ffffff;
    color: #1A1A1A;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }

    .brand-col,
    .nav-col,
    .contact-col {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal on Scroll Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 28px;
        height: 1.5px;
        margin: 6px auto;
        background-color: var(--text-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open .bar:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #FDFBF7;
        width: 50%;
        height: 100vh;
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 120px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        display: flex;
        justify-content: flex-start;
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-links a {
        font-family: var(--font-body);
        font-size: 1.25rem;
        font-weight: 300;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #1A1A1A;
        padding: 15px 0;
        display: block;
        transition: all 0.3s ease;
    }

    .nav-links a:active {
        background-color: rgba(26, 26, 26, 0.03);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    /* Blur and Lock Logic */
    body.menu-open {
        overflow: hidden;
    }

    #page-content {
        transition: filter 0.4s ease, opacity 0.4s ease;
    }

    body.menu-open #page-content {
        filter: blur(8px);
        opacity: 0.6;
        pointer-events: none;
    }

    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
        background-color: #1A1A1A;
    }

    .menu-toggle.open .bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
        background-color: #1A1A1A;
    }

    .menu-toggle.open {
        position: fixed;
        right: 5%;
    }
}

/* Modal Specs Structural Improvements */
.modal-specs {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-specs h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#modal-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
}

#modal-specs-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.spec-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    flex-shrink: 0;
    font-weight: 400;
}

.spec-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    height: 1px;
    position: relative;
    top: -4px;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    text-align: right;
    font-weight: 500;
}

@media (max-width: 600px) {
    #modal-specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .spec-dots {
        display: none;
    }

    .spec-value {
        text-align: left;
    }
}

/* ── Price Block in Product Modal ── */
.modal-price-block {
    margin: 1rem 0 1.2rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), transparent);
    border-left: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0 8px 8px 0;
}

.modal-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

.modal-price-caption {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 0.03em;
    margin-top: 0.3rem;
    font-style: italic;
}