/* ============================================
   SOFAALAY - Premium Sofa Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #8B5E3C;
    --primary-light: #B8865C;
    --primary-dark: #5C3A24;
    --accent: #C9956B;
    --accent-gold: #D4A574;
    --bg: #FAFAF7;
    --bg-alt: #F3F0EB;
    --bg-dark: #1A1512;
    --text: #2D2420;
    --text-light: #6B5D52;
    --text-muted: #9B8F85;
    --surface: #FFFFFF;
    --surface-soft: #F8F5F1;
    --white: #FFFFFF;
    --border: #E8E0D8;
    --shadow-sm: 0 2px 8px rgba(44,36,32,0.06);
    --shadow-md: 0 8px 30px rgba(44,36,32,0.1);
    --shadow-lg: 0 20px 60px rgba(44,36,32,0.15);
    --shadow-xl: 0 30px 80px rgba(44,36,32,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
}

[data-theme='dark'] {
    --bg: #14110f;
    --bg-alt: #201a16;
    --bg-dark: #0c0908;
    --text: #f2e8df;
    --text-light: #c8b7a7;
    --text-muted: #aa998a;
    --surface: #251f1b;
    --surface-soft: #302824;
    --border: #43372f;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.65);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

::selection {
    background: var(--accent-gold);
    color: var(--white);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    border-radius: 3px;
    animation: preloaderFill 1.5s ease-out forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--primary);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139,94,60,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,94,60,0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

[data-theme='dark'] .navbar.scrolled {
    background: rgba(17,14,12,0.9);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.34);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.theme-toggle-icon-wrap {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.theme-toggle-icon {
    position: absolute;
    inset: 0;
    width: 16px;
    height: 16px;
    transition: opacity var(--transition), transform var(--transition);
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme='dark'] .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme='dark'] .theme-icon-moon {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
}

.theme-toggle-text {
    line-height: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-mark {
    width: 132px;
    height: 58px;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 164px;
    height: auto;
    max-width: none;
    transform: translate(-16px, -10px);
    transition: transform var(--transition), width var(--transition);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: color var(--transition), font-size var(--transition);
}

.nav-logo-subtext {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    transition: color var(--transition);
}

.navbar.scrolled .nav-logo-mark {
    width: 124px;
    height: 54px;
}

.navbar.scrolled .logo-img {
    width: 156px;
    transform: translate(-14px, -9px);
}

.navbar.scrolled .nav-logo-text {
    color: var(--primary-dark);
    font-size: 1.55rem;
}

.navbar.scrolled .nav-logo-subtext {
    color: rgba(92,58,36,0.7);
}

[data-theme='dark'] .navbar.scrolled .nav-logo-text {
    color: var(--accent-gold);
}

[data-theme='dark'] .navbar.scrolled .nav-logo-subtext {
    color: rgba(232,201,155,0.75);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: var(--bg-alt);
    color: var(--primary);
}

.navbar.scrolled .theme-toggle {
    border-color: rgba(92,58,36,0.24);
    background: rgba(92,58,36,0.08);
    color: var(--text);
}

[data-theme='dark'] .navbar.scrolled .theme-toggle {
    border-color: rgba(232,201,155,0.24);
    background: rgba(232,201,155,0.1);
    color: var(--accent-gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 92px;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8,7,7,0.84) 0%,
        rgba(10,9,8,0.54) 42%,
        rgba(8,7,7,0.9) 100%
    );
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.hero-title {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.06;
    text-shadow: 0 8px 34px rgba(0,0,0,0.48);
}

.hero-title-line.accent {
    color: var(--accent-gold);
    font-style: italic;
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-slogan {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    text-shadow: 0 4px 20px rgba(0,0,0,0.42);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero-scroll:hover {
    color: rgba(255,255,255,0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- About --- */
.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    transform: translate(16px, 16px);
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.owners-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.owner-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.owner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.owner-img-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.owner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.owner-role {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.owner-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Catalogue --- */
.catalogue {
    background:
        radial-gradient(circle at 8% 4%, rgba(212,165,116,0.22), transparent 36%),
        radial-gradient(circle at 92% 12%, rgba(139,94,60,0.24), transparent 34%),
        linear-gradient(180deg, #0f0c0a 0%, #17120f 42%, #120e0c 100%);
    position: relative;
}

.catalogue::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.catalogue .section-tag {
    color: #ddb182;
}

.catalogue .section-title {
    color: rgba(255,255,255,0.94);
}

.catalogue .section-title .accent {
    color: #ddb182;
}

.catalogue .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.catalogue .container {
    position: relative;
    z-index: 1;
}

.catalogue-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: -14px auto 36px;
    max-width: 980px;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid rgba(221,177,130,0.32);
    background: linear-gradient(110deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.38);
}

.catalogue-intro-lead {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    font-style: italic;
}

.catalogue-intro-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.catalogue-intro-meta span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(221,177,130,0.22);
}

.catalogue-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid rgba(221,177,130,0.34);
    background: rgba(255,255,255,0.06);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.86);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #b57d55, #8b5e3c);
    border-color: #c38d62;
    color: var(--white);
    box-shadow: 0 12px 28px rgba(181,125,85,0.36);
}

.catalogue-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 24px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: scrollPulse 2s ease-in-out infinite;
}

.catalogue-scroll-hint i {
    width: 16px;
    height: 16px;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

.catalogue-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.catalogue-grid::-webkit-scrollbar {
    height: 8px;
}

.catalogue-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.catalogue-grid::-webkit-scrollbar-thumb {
    background: rgba(221,177,130,0.6);
    border-radius: 10px;
}

.catalogue-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(221,177,130,0.8);
}

.catalogue-item {
    border-radius: 18px;
    overflow: hidden;
    transition: all var(--transition);
    flex: 0 0 380px;
    scroll-snap-align: start;
    box-shadow: 0 24px 50px rgba(0,0,0,0.36);
    border: 1px solid rgba(255,255,255,0.06);
}

.catalogue-item.hidden {
    display: none;
}

.catalogue-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #0a0807;
}

.catalogue-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.catalogue-img-wrapper:hover img {
    transform: scale(1.08);
}

.catalogue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,7,0.04) 12%, rgba(10,8,7,0.54) 48%, rgba(9,7,6,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    opacity: 1;
    transition: opacity var(--transition);
}

.catalogue-img-wrapper:hover .catalogue-overlay {
    opacity: 1;
}

.catalogue-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(221,177,130,0.95);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 50px;
    margin-bottom: 10px;
    width: fit-content;
}

.catalogue-overlay h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.32rem;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.catalogue-overlay p {
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    margin-bottom: 14px;
    line-height: 1.5;
    max-width: 36ch;
}

.catalogue-overlay .btn {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.54);
    backdrop-filter: blur(6px);
}

.catalogue-overlay .btn:hover {
    background: rgba(221,177,130,0.95);
    color: var(--white);
    border-color: rgba(221,177,130,0.95);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(5,4,4,0.94);
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: min(94vw, 1400px);
    max-height: 90vh;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: #100c0a;
    padding: 18px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.56);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(198,153,99,0.9);
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.lightbox-close:hover {
    background: var(--accent-gold);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(198,153,99,0.5);
}

.lightbox-zoom-controls {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: 50px;
    z-index: 20;
    border: 1px solid rgba(198,153,99,0.3);
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(198,153,99,0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.zoom-btn:hover {
    background: rgba(198,153,99,0.4);
    transform: scale(1.15);
    color: var(--white);
}

.zoom-btn svg {
    width: 18px;
    height: 18px;
}

.zoom-level {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.lightbox-image-wrapper {
    width: 100%;
    max-height: 74vh;
    overflow: auto;
    border-radius: 12px;
    background: #0d0908;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.lightbox-image-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.lightbox-image-wrapper::-webkit-scrollbar-thumb {
    background: rgba(221,177,130,0.4);
    border-radius: 4px;
}

.lightbox-image-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(221,177,130,0.6);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 74vh;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-content img.zoomed {
    cursor: zoom-out;
    max-width: none;
    max-height: none;
}

.lightbox-meta {
    padding-top: 12px;
}

.lightbox-meta h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 6px;
}

.lightbox-meta p {
    color: rgba(255,255,255,0.76);
    font-size: 0.95rem;
}

/* --- Fabrics --- */
.fabrics {
    background: var(--bg);
}

.fabrics-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fabric-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

.fabric-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.fabric-swatch {
    height: 160px;
    position: relative;
}

.fabric-swatch::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--surface));
}

.fabric-info {
    padding: 24px;
}

.fabric-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.fabric-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.fabric-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fabric-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.fabric-features li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.fabrics-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.fabrics-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- AI Design --- */
.ai-design {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2A1F18 100%);
    color: var(--white);
}

.ai-design .section-tag {
    background: linear-gradient(135deg, var(--accent-gold), #E8C99B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-design .section-title {
    color: var(--white);
}

.ai-design .section-title .accent {
    color: var(--accent-gold);
}

.ai-design .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.ai-design-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    background: rgba(255,255,255,0.03);
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent-gold);
    background: rgba(212,165,116,0.05);
}

.upload-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.upload-zone h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.upload-zone p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.upload-zone .btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.upload-zone .btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.upload-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0;
}

.upload-preview img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
}

.remove-img {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    font-size: 0.8rem;
}

.remove-img:hover {
    background: #e74c3c;
    color: var(--white);
}

.ai-controls {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.currency-selector label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.currency-selector select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    appearance: auto;
}

.currency-selector select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.currency-selector select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px;
}

.quote-note {
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
}

.quote-note h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
}

.quote-note p {
    color: rgba(255,255,255,0.66);
    font-size: 0.95rem;
    line-height: 1.7;
}

.rule-estimator {
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.035);
}

.rule-estimator h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
}

.rule-estimator-note {
    color: rgba(255,255,255,0.58);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.rule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rule-field label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 6px;
}

.rule-field select,
.rule-field input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.rule-field select:focus,
.rule-field input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.rule-field select option {
    background: rgba(20, 20, 20, 0.95);
    color: var(--white);
    padding: 8px;
}

.ai-controls .btn-primary {
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.ai-controls .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ai-controls .btn-primary svg {
    width: 18px;
    height: 18px;
}

.ai-helper-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-top: -8px;
}

/* AI Result */
.ai-result {
    margin-top: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-header svg {
    color: var(--accent-gold);
    width: 24px;
    height: 24px;
}

.result-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.result-body {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.result-body h4 {
    color: var(--accent-gold);
    font-family: var(--font-display);
    margin: 16px 0 8px;
    font-size: 1.1rem;
}

.estimate-confidence {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.confidence-high {
    background: rgba(39, 174, 96, 0.16);
    color: #8ef1bb;
    border: 1px solid rgba(39, 174, 96, 0.35);
}

.confidence-medium {
    background: rgba(212, 165, 116, 0.16);
    color: #f3cf9c;
    border: 1px solid rgba(212, 165, 116, 0.35);
}

.confidence-low {
    background: rgba(231, 76, 60, 0.16);
    color: #ffb8b0;
    border: 1px solid rgba(231, 76, 60, 0.35);
}

.result-body ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.result-body li {
    margin-bottom: 4px;
}

.estimate-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 16px 0;
    padding: 16px;
    background: rgba(212,165,116,0.1);
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-bottom: 16px;
}

.result-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.result-cta-row .btn {
    flex: 1 1 220px;
    justify-content: center;
}

.result-actions .btn-primary {
    box-shadow: 0 4px 15px rgba(139,94,60,0.3);
}

.result-actions .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(139,94,60,0.4);
}

/* Loading state */
.btn-loading {
    pointer-events: none;
    position: relative;
}

.btn-loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Contact Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.modal {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
    color: var(--text);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-alt);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: #e74c3c;
    color: var(--white);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--surface-soft);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}

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

.contact-modal-form .btn {
    margin-top: 8px;
}

.contact-modal-form .btn svg {
    width: 16px;
    height: 16px;
}

/* --- Facts --- */
.facts {
    background: var(--bg-alt);
}

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

.fact-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.fact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.fact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.fact-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.fact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.fact-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- FAQ --- */
.faq {
    background: var(--bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-item summary {
    padding: 20px 28px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item[open] summary {
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}

.faq-item p {
    padding: 20px 28px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Instagram Gallery --- */
.instagram-gallery {
    background: var(--bg-alt);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.instagram-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131,58,180,0.9), rgba(253,29,29,0.9), rgba(252,176,69,0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all var(--transition);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.instagram-icon {
    width: 32px;
    height: 32px;
}

.instagram-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.instagram-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.instagram-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
}

.instagram-follow-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px;
    text-align: center;
    gap: 12px;
}

.instagram-follow-box svg {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.instagram-icon-large {
    width: 48px;
    height: 48px;
}

.instagram-icon-large svg {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.instagram-follow-box h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
}

.instagram-follow-box p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0 0 8px 0;
}

.instagram-follow-box .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-size: 0.85rem;
}

.instagram-follow-box .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* --- Newsletter --- */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.newsletter-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    display: flex;
    gap: 48px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.newsletter-content {
    flex: 1;
}

.newsletter-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.newsletter-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-wrapper p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.newsletter-form {
    flex: 1.2;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 24px;
    box-shadow: var(--shadow-md);
}

.newsletter-input-group svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--text-light);
}

.newsletter-input-group .btn {
    border-radius: var(--radius-full);
    padding: 12px 32px;
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    text-align: center;
}

/* --- Footer Social --- */
.footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(198,153,99,0.3);
}

.social-link svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.social-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* --- Floating Socials --- */
.floating-socials {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instagram-float {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(131,58,180,0.4);
    transition: all var(--transition);
    animation: instagramPulse 3s infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(131,58,180,0.6);
}

.instagram-float svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.float-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.whatsapp-float {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsappPulse 2s infinite;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    color: var(--white);
}

@keyframes instagramPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(131,58,180,0.4); }
    50% { box-shadow: 0 4px 30px rgba(131,58,180,0.7); }
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* --- Contact --- */
.contact {
    background: var(--bg);
}

/* --- Inquiry Form --- */
.inquiry-form-wrapper {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 56px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

.inquiry-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 8px;
}

.inquiry-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg);
    color: var(--text);
    padding: 8px;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
    justify-content: center;
}

.contact-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 56px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text);
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-grid h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 8px;
}

.footer-grid ul a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-grid ul a:hover {
    color: var(--accent-gold);
}

.footer-contact-col p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-contact-col p svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-gold);
}

.footer-contact-col a {
    color: rgba(255,255,255,0.5);
}

.footer-contact-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 148px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 1024px) {
    .catalogue-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalogue-intro-meta {
        justify-content: flex-start;
    }

    .catalogue-grid {
        gap: 16px;
    }

    .catalogue-item {
        flex: 0 0 320px;
    }

    .fabrics-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        padding: 40px;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .nav-logo {
        gap: 6px;
        align-items: center;
    }

    .nav-logo-copy {
        gap: 0;
    }

    .nav-logo-mark {
        width: 72px;
        height: 32px;
        display: flex;
        align-items: center;
    }

    .logo-img {
        width: 93px;
        transform: translate(-11px, -2px);
    }

    .nav-logo-text {
        font-size: 0.78rem;
        letter-spacing: 0.05em;
        line-height: 1.1;
    }

    .nav-logo-subtext {
        display: none;
    }

    .theme-toggle {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .theme-toggle-text {
        display: none;
    }

    .theme-toggle {
        padding: 9px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
    }

    [data-theme='dark'] .nav-links {
        background: #120f0d;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: rgba(255,255,255,0.8);
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold);
        background: rgba(255,255,255,0.05);
    }

    /* Hero */
    .hero {
        align-items: flex-start;
        min-height: 100svh;
        padding-top: 110px;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(7,6,6,0.87) 0%,
            rgba(7,6,6,0.58) 46%,
            rgba(7,6,6,0.94) 100%
        );
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-badge {
        margin-bottom: 16px;
        padding: 8px 20px;
        font-size: 0.75rem;
        letter-spacing: 1.6px;
    }

    .hero-title {
        margin-bottom: 12px;
    }

    .hero-title-line {
        font-size: clamp(2rem, 11vw, 3.3rem);
        line-height: 1.02;
    }

    .hero-title-line.accent {
        font-size: clamp(2.6rem, 13vw, 3.8rem);
    }

    .hero-slogan {
        font-size: 1.75rem;
        letter-spacing: 0.6px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 22px;
        color: rgba(255,255,255,0.94);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1.22rem;
    }

    .stat-label {
        font-size: 0.64rem;
        letter-spacing: 1.1px;
        line-height: 1.3;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        margin-bottom: 26px;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.95rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Catalogue */
    .catalogue-intro {
        margin-bottom: 20px;
        padding: 14px 14px;
        background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    }

    .catalogue-intro-lead {
        font-size: 0.98rem;
    }

    .catalogue-intro-meta span {
        font-size: 0.62rem;
        padding: 6px 10px;
    }

    .catalogue-scroll-hint {
        font-size: 0.7rem;
        margin-bottom: 16px;
        gap: 8px;
    }

    .catalogue-scroll-hint i {
        width: 14px;
        height: 14px;
    }

    .catalogue-grid {
        gap: 14px;
    }

    .catalogue-item {
        flex: 0 0 85%;
    }

    .catalogue-img-wrapper {
        aspect-ratio: 16 / 11;
    }

    .catalogue-overlay {
        padding: 16px;
    }

    .catalogue-overlay h3 {
        font-size: 1.05rem;
    }

    .catalogue-overlay p {
        font-size: 0.76rem;
        margin-bottom: 10px;
    }

    .lightbox {
        padding: 10px;
    }

    .lightbox-content {
        padding: 12px;
        width: 96vw;
        max-height: 94vh;
    }

    .lightbox-zoom-controls {
        top: 8px;
        left: 8px;
        padding: 6px 10px;
        gap: 6px;
    }

    .zoom-btn {
        width: 28px;
        height: 28px;
    }

    .zoom-btn svg {
        width: 14px;
        height: 14px;
    }

    .zoom-level {
        font-size: 0.75rem;
        min-width: 45px;
    }

    .lightbox-image-wrapper {
        max-height: 70vh;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-meta h3 {
        font-size: 1.08rem;
    }

    .lightbox-meta p {
        font-size: 0.83rem;
    }

    .result-cta-row {
        flex-direction: column;
    }

    .result-cta-row .btn {
        width: 100%;
    }

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

    /* Fabrics */
    .fabrics-showcase {
        grid-template-columns: 1fr;
    }

    /* Facts */
    .facts-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-item summary {
        padding: 16px 20px;
        font-size: 0.98rem;
    }

    .faq-item p {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .instagram-item {
        aspect-ratio: 1;
    }

    .instagram-overlay svg,
    .instagram-icon,
    .instagram-icon svg {
        width: 28px;
        height: 28px;
    }

    .instagram-overlay span {
        font-size: 0.75rem;
    }

    .instagram-follow-box {
        padding: 16px;
        gap: 8px;
    }

    .instagram-icon-large,
    .instagram-icon-large svg {
        width: 40px;
        height: 40px;
    }

    .instagram-follow-box h3 {
        font-size: 1rem;
    }

    .instagram-follow-box p {
        font-size: 0.75rem;
    }

    .instagram-follow-box .btn {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    /* Newsletter */
    .newsletter {
        padding: 56px 0;
    }

    .newsletter-wrapper {
        padding: 32px 24px;
        gap: 24px;
    }

    .newsletter-wrapper h2 {
        font-size: 1.6rem;
    }

    .newsletter-wrapper p {
        font-size: 0.9rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
        align-items: stretch;
    }

    .newsletter-input-group input {
        padding: 10px 12px;
        text-align: center;
    }

    .newsletter-input-group .btn {
        width: 100%;
    }

    /* Floating Socials */
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .instagram-float,
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .instagram-float svg {
        width: 22px;
        height: 22px;
    }

    .float-icon {
        width: 22px;
        height: 22px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 120px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }

    /* Owners */
    .owner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Inquiry Form */
    .inquiry-form-wrapper {
        padding: 32px 24px;
    }

    .inquiry-form-wrapper h3 {
        font-size: 1.6rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Modal */
    .modal {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-logo-text {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        line-height: 1.1;
    }

    .nav-logo-mark {
        width: 60px;
        height: 28px;
        display: flex;
        align-items: center;
    }

    .logo-img {
        width: 78px;
        transform: translate(-9px, -1px);
    }

    .theme-toggle {
        padding: 9px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title-line {
        font-size: clamp(1.84rem, 10.4vw, 2.7rem);
    }

    .hero-title-line.accent {
        font-size: clamp(2.3rem, 12vw, 3.35rem);
    }

    .hero-slogan {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.86rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 1.26rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.57rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title-line {
        font-size: 2rem;
    }

    .hero-title-line.accent {
        font-size: 2.5rem;
    }

    .catalogue-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .upload-zone {
        padding: 40px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    /* Instagram small screens */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .instagram-item {
        max-width: 100%;
    }

    .instagram-overlay svg,
    .instagram-icon,
    .instagram-icon svg {
        width: 32px;
        height: 32px;
    }

    .instagram-icon-large,
    .instagram-icon-large svg {
        width: 44px;
        height: 44px;
    }
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Print styles */
@media print {
    .navbar, .whatsapp-float, .back-to-top, #preloader, .hero-scroll {
        display: none !important;
    }
}
/* === TOAST NOTIFICATION SYSTEM === */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(450px);
    animation: slideIn 0.3s ease forwards;
    border-left: 4px solid;
    min-width: 320px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast.info {
    border-left-color: #3b82f6;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.toast.success .toast-icon {
    background: #d1fae5;
    color: #059669;
}

.toast.error .toast-icon {
    background: #fee2e2;
    color: #dc2626;
}

.toast.warning .toast-icon {
    background: #fef3c7;
    color: #d97706;
}

.toast.info .toast-icon {
    background: #dbeafe;
    color: #2563eb;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 15px;
}

.toast-message {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(450px);
        opacity: 0;
    }
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}


@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
        transform: translateY(-100px);
    }
    
    @keyframes slideIn {
        to {
            transform: translateY(0);
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-100px);
            opacity: 0;
        }
    }
}

