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

/* ===== PREMIUM GOLDEN SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--furniture-gold, #C9A96E) 0%, var(--furniture-accent, #8A6240) 100%);
    border-radius: 10px;
    border: 2px solid var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D4B87A 0%, var(--furniture-gold, #C9A96E) 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--furniture-gold, #C9A96E) var(--furniture-dark, #0A1410);
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root {
    --cream: #F5F1E8;
    --beige: #CABA9C;
    --dark-green: #102820;
    --dark-brown: #0A1410;
    --gold: #C9A96E;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #F5F5F5;
    --secondary: #4C6444;
    --accent: #8A6240;
}

.furniture-theme {
    --furniture-primary: #102820;
    --furniture-secondary: #4C6444;
    --furniture-accent: #8A6240;
    --furniture-light: #CABA9C;
    --furniture-gold: #C9A96E;
    --furniture-dark: #0A1410;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body.furniture-theme {
    background: var(--furniture-light);
    color: var(--furniture-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    max-width: 100%;
    margin: 0 auto;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== HEADER ===== */
.header {
    background: transparent;
    padding: 13px 0;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: #c29d5b;
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

.furniture-theme .header {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.furniture-theme .header.scrolled {
    background: linear-gradient(135deg, var(--furniture-primary) 0%, var(--furniture-dark) 100%);
    border-bottom: 1px solid var(--furniture-secondary);
    box-shadow: 0 4px 30px rgba(10, 20, 16, 0.3);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-brown);
}

.furniture-theme .logo {
    color: var(--furniture-gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    color: var(--dark-brown);
}

.furniture-theme .logo-text {
    color: var(--furniture-gold);
}

.logo-year {
    font-style: italic;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--beige);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--furniture-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.furniture-theme .nav-item {
    color: var(--furniture-light);
}

.nav-item:hover {
    color: var(--gold);
}

.furniture-theme .nav-item:hover {
    color: var(--furniture-gold);
}

.nav-item svg {
    width: 10px;
    height: 6px;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-icon {
    color: var(--beige);
    transition: color 0.3s;
    position: relative;
}

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

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--dark-green);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-shopping {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FFD700;
    /* Yellow */
    color: #000;
    padding: 8px 8px 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.btn-shopping:hover {
    transform: translateY(-2px);
}

.btn-icon-circle {
    background-color: #111;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-shopping:hover .btn-icon-circle {
    transform: translateX(3px);
}

/* ===== HERO SECTION ===== */
.furniture-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slides Container */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide.transitioning {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-image {
    transform: scale(1.05);
}

/* Glass Transition Effect */
.glass-transition {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-transition.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 16, 0.4);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--furniture-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 32px;
}

.title-line-1 {
    display: block;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.title-line-2 {
    display: block;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--furniture-gold);
    font-style: italic;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 48px;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--furniture-accent);
    color: var(--furniture-light);
    border: 2px solid var(--furniture-accent);
}

.cta-primary:hover {
    background: transparent;
    border-color: var(--furniture-accent);
    transform: translateY(-3px);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--furniture-light);
    color: var(--furniture-light);
}

.cta-secondary:hover {
    background: var(--furniture-light);
    color: var(--furniture-primary);
    transform: translateY(-3px);
}

/* Hero Content Wrapper for Slideshow */
.hero-content-wrapper {
    position: relative;
    min-height: 400px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.hero-content.exiting {
    opacity: 0;
    transform: translateY(-30px);
}

/* Hero Navigation Dots */
.hero-nav-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(202, 186, 156, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.nav-dot::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--furniture-gold);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot:hover {
    border-color: var(--furniture-gold);
    transform: scale(1.2);
}

.nav-dot.active {
    border-color: var(--furniture-gold);
}

.nav-dot.active::before {
    transform: scale(1);
}

/* Progress indicator for active dot */
.nav-dot.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--furniture-gold);
    border-top-color: transparent;
    animation: dotProgress 6s linear infinite;
}

@keyframes dotProgress {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--furniture-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-indicator span {
    margin-bottom: 8px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--furniture-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
}

.hero-dots {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--white);
}

/* ===== ARTISANAL SECTION ===== */
.artisanal-section {
    padding: 120px 0;
    background: var(--cream);
}

.furniture-theme .artisanal-section {
    background: linear-gradient(180deg, var(--furniture-primary) 0%, var(--furniture-secondary) 100%);
}

.artisanal-text {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--black);
    max-width: 1200px;
    margin: 0 auto;
}

.furniture-theme .artisanal-text {
    color: wheat;
}

.inline-img-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 10px;
    border: 2px solid var(--white);
}

.inline-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-img-group {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 15px;
    height: 90px;
    align-items: center;
}

.inline-img-group img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: transform 0.3s;
}

.tilt-1 {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.tilt-2 {
    transform: rotate(5deg);
    z-index: 2;
}

.tilt-3 {
    transform: rotate(15deg) translateX(-10px);
    z-index: 1;
}

.arrow-icon {
    display: inline-block;
    font-family: sans-serif;
    font-weight: 300;
    margin-left: 10px;
    transform: translateY(2px);
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    padding: 80px 0;
    background: var(--cream);
    overflow: hidden;
}

.furniture-theme .what-we-do {
    background: var(--furniture-light);
}

.wwd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.wwd-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--black);
}

.furniture-theme .wwd-title {
    color: var(--furniture-dark);
}

.wwd-nav {
    display: flex;
    gap: 20px;
}

.wwd-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black);
    transition: transform 0.3s;
}

.furniture-theme .wwd-arrow {
    color: var(--furniture-dark);
}

.wwd-arrow:hover {
    transform: scale(1.1);
}

.wwd-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 40px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.wwd-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.wwd-item-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.wwd-item-link:hover {
    transform: translateY(-5px);
}

.wwd-item {
    flex: 0 0 auto;
    text-align: center;
    width: 200px;
}

.wwd-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--cream);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wwd-image img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.wwd-item:hover .wwd-image {
    transform: scale(1.05);
}

.wwd-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.furniture-theme .wwd-label {
    color: var(--furniture-dark);
}

/* ===== EXPRESS YOUR STYLE SECTION ===== */
.express-style {
    background: var(--cream);
    padding: 0;
}

.furniture-theme .express-style {
    background: var(--furniture-light);
}

.express-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 600px;
}

.express-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.furniture-theme .express-text {
    background: var(--furniture-light);
}

.express-title {
    font-family: 'Playfair Display', serif;
    font-size: 84px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 40px;
}

.furniture-theme .express-title {
    color: var(--furniture-dark);
}

.express-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 60px;
}

.furniture-theme .express-subtitle {
    color: var(--furniture-primary);
}

.express-label {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray);
}

.furniture-theme .express-label {
    color: var(--furniture-secondary);
}

.express-images {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
    padding: 0;
    height: 680px;
    align-items: center;
}

.express-image-large,
.express-image-small {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.express-image-large {
    height: 100%;
}

.express-image-small {
    height: 70%;
}

.express-image-large img,
.express-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.express-image-large:hover img,
.express-image-small:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 16px 20px;
}

.caption-brand {
    font-size: 11px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
    opacity: 0.9;
}

.caption-product {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* ===== LATEST COLLECTIONS SECTION ===== */
.latest-collections {
    padding: 100px 0;

    background: var(--cream);
}

.furniture-theme .latest-collections {
    background: linear-gradient(180deg, var(--furniture-primary) 0%, var(--furniture-secondary) 100%);
}

.section-title {
    font-family: 'Playfair Display',
        serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--furniture-light);
}

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

.collection-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.collection-large {
    grid-row: span 2;
    min-height: 820px;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
}

.collection-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

/* ===== QUALITY SECTION ===== */
.quality-section {
    padding-bottom: 100px;
    padding-top: 20px;
    background: var(--cream);
    text-align: center;
}

.furniture-theme .quality-section {
    background: var(--furniture-light);
}

.quality-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.quality-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--gray);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 12px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.furniture-theme .btn-outline-dark {
    color: var(--furniture-primary);
    border-color: var(--furniture-primary);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.furniture-theme .btn-outline-dark:hover {
    background: var(--furniture-primary);
    color: var(--furniture-light);
}

/* ===== ARTISANAL SECTION ===== */
.artisanal-section {
    padding: 100px 0;
    background: var(--white);
}

/* ===== NEW COLLECTIONS SECTION ===== */
.collections-section {
    padding: 100px 0;
    background: var(--furniture-light);
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--furniture-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--furniture-primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.collection-card-new {
    background: #f5f1e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.collection-image-new {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.collection-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card-new:hover .collection-image-new img {
    transform: scale(1.1);
}

.collection-overlay-new {
    position: absolute;
    inset: 0;
    background: rgba(16, 40, 32, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card-new:hover .collection-overlay-new {
    opacity: 1;
}

.collection-link {
    color: var(--furniture-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--furniture-gold);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.collection-link:hover {
    background: var(--furniture-gold);
    color: var(--furniture-primary);
}

.collection-content-new {
    padding: 30px;
}

.collection-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--furniture-primary);
    margin-bottom: 12px;
}

.collection-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.collection-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.collection-features li {
    font-size: 13px;
    color: var(--furniture-secondary);
    padding-left: 20px;
    position: relative;
}

.collection-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--furniture-gold);
    font-weight: bold;
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship-section {
    padding: 100px 0;
    background: var(--furniture-primary);
    color: var(--furniture-light);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.craftsmanship-content .section-label {
    color: var(--furniture-gold);
}

.craftsmanship-content .section-title-new {
    color: var(--furniture-light);
}

.craftsmanship-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(202, 186, 156, 0.9);
    margin-bottom: 40px;
}

.craftsmanship-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--furniture-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(202, 186, 156, 0.8);
}

.quality-badges {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--furniture-gold);
    color: var(--furniture-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--furniture-light);
}

.craftsmanship-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== MATERIALS SECTION ===== */
.materials-section {
    padding: 100px 0;
    background: var(--furniture-primary);
}

.materials-section .section-label {
    color: var(--furniture-gold);
}

.materials-section .section-title-new {
    color: #ffffff;
}

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

.material-card {
    background: rgba(76, 100, 68, 0.2);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(202, 186, 156, 0.1);
    transition: all 0.4s ease;
}

.material-card:hover {
    background: rgba(76, 100, 68, 0.3);
    transform: translateY(-8px);
    border-color: var(--furniture-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.material-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--furniture-light);
}

.material-icon svg {
    width: 100%;
    height: 100%;
}

.material-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.material-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--furniture-light);
}

/* ===== TESTIMONIALS SECTION ===== */
/* .testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--furniture-primary) 0%, var(--furniture-secondary) 100%);
}

.testimonials-section .section-label {
    color: var(--furniture-gold);
}

.testimonials-section .section-title-new {
    color: #ffffff;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(10, 20, 16, 0.5);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(202, 186, 156, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--furniture-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
    color: var(--furniture-gold);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--furniture-light);
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    border-top: 1px solid rgba(202, 186, 156, 0.2);
    padding-top: 24px;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: var(--furniture-gold);
} */

/* Reveal on scroll animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PROMO BANNERS ===== */
.promo-banners {
    padding: 60px 0;
    background: var(--cream);
}

.furniture-theme .promo-banners {
    background: var(--furniture-light);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
    transition: transform 0.6s;
}

.promo-card:hover img {
    transform: scale(1.05);
}

.promo-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 53, 0.85);
    z-index: 1;
}

.furniture-theme .promo-dark::before {
    background: rgba(16, 40, 32, 0.5);
}

.promo-brown::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 47, 40, 0.85);
    z-index: 1;
}

.furniture-theme .promo-brown::before {
    background: rgba(138, 98, 64, 0.5);
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.promo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
}

.btn-primary-light {
    background: var(--white);
    color: var(--black);
    padding: 12px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.furniture-theme .btn-primary-light {
    background: var(--furniture-gold);
    color: var(--furniture-dark);
}

.btn-primary-light:hover {
    background: var(--gold);
    color: var(--white);
}

.furniture-theme .btn-primary-light:hover {
    background: var(--furniture-light);
    color: var(--furniture-primary);
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    margin-bottom: 24px;
    color: var(--black);
}

.feature-item h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 100px 0;
    background: var(--cream);
}

.furniture-theme .instagram-section {
    background: var(--furniture-light);
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

.instagram-title a {
    font-style: italic;
    text-decoration: underline;
}




/* ===== ADVANCED CUSTOM CURSOR ===== */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--furniture-gold, #C9A96E);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.cursor-inner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid var(--furniture-gold, #C9A96E);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--furniture-gold, #C9A96E) 0%, #D4B87A 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out, background 0.3s ease;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
}

.cursor-follower.active,
.cursor-dot.active {
    opacity: 1;
}

/* Hover State - Magnetic Effect */
.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    border-color: #D4B87A;
    border-width: 3px;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, #D4B87A 0%, var(--furniture-gold, #C9A96E) 100%);
}

/* Trailing Particles */
.cursor-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.cursor-trail {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--furniture-gold, #C9A96E);
    border-radius: 50%;
    pointer-events: none;
    animation: trail-fade 0.6s ease-out forwards;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
}

@keyframes trail-fade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Click Ripple Effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--furniture-gold, #C9A96E);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-ripple.active {
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4);
    }
}

/* Text Selection Effect */
.cursor-follower.text-hover {
    transform: translate(-50%, -50%) scale(0.5);
    border-width: 1px;
    opacity: 0.6;
}

.cursor-dot.text-hover {
    width: 2px;
    height: 16px;
    border-radius: 2px;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {

    .cursor-follower,
    .cursor-dot,
    .cursor-trail-container,
    .cursor-ripple {
        display: none;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.scroll-top:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.scroll-top.visible:hover {
    transform: translateY(-5px);
}

.furniture-theme .scroll-top {
    background: var(--furniture-primary);
    border: 1px solid var(--furniture-gold);
}

.furniture-theme .scroll-top:hover {
    background: var(--furniture-gold);
    color: var(--furniture-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .express-grid {
        grid-template-columns: 40% 60%;
    }

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

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

  
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 56px;
    }

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

    .express-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .express-image-large {
        grid-row: auto;
        height: 400px;
    }

    .express-image-small {
        height: 300px;
    }

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

    .collection-large {
        min-height: 500px;
    }

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

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

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



    /* New sections responsive */
    .collections-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .craftsmanship-gallery {
        order: -1;
    }

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

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

    .craftsmanship-stats {
        justify-content: center;
    }

    .quality-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-discover {
        position: static;
        margin-top: 40px;
    }

    .hero-nav-dots {
        right: 20px;
        gap: 12px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .hero-content-wrapper {
        min-height: 350px;
    }

    .express-title {
        font-size: 48px;
    }

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

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


}

/* Scroll Line Animation */
@keyframes scrollLine {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(20px);
        opacity: 0.3;
    }
}

@media (max-width: 480px) {

    .title-line-1,
    .title-line-2 {
        font-size: 42px;
    }

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

    .express-title {
        font-size: 36px;
    }

    .section-title,
    .quality-title {
        font-size: 32px;
    }

    /* New sections responsive */
    .section-title-new {
        font-size: 32px;
    }

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

    .craftsmanship-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .quality-badges {
        flex-direction: column;
        align-items: center;
    }

    .collection-features {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ===== VISUAL CATEGORIES GRID (Pinterest-Style Masonry) ===== */
.visual-categories-grid {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--furniture-primary) 0%, #0D1F17 100%);
    overflow: hidden;
}

.masonry-header {
    text-align: center;
    margin-bottom: 60px;
}

.masonry-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.masonry-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--furniture-light);
    margin-bottom: 20px;
}

.masonry-header p {
    font-size: 18px;
    color: rgba(202, 186, 156, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 20, 16, 0.9) 0%, rgba(10, 20, 16, 0.3) 40%, transparent 70%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    background: linear-gradient(0deg, rgba(10, 20, 16, 0.95) 0%, rgba(10, 20, 16, 0.5) 50%, rgba(10, 20, 16, 0.2) 100%);
}

.masonry-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--furniture-gold);
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.masonry-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.masonry-item.tall .masonry-title {
    font-size: 42px;
}

.masonry-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
    max-width: 300px;
}

.masonry-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--furniture-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.masonry-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-cta svg {
    transform: translateX(5px);
}

.masonry-item:hover .masonry-category,
.masonry-item:hover .masonry-title,
.masonry-item:hover .masonry-description,
.masonry-item:hover .masonry-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Always visible on touch devices */
@media (hover: none) {

    .masonry-category,
    .masonry-title,
    .masonry-description,
    .masonry-cta {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== ANATOMY SECTION (DeconstructedProduct) ===== */
.anatomy-section {
    padding: 20px 0;
    background-color: var(--furniture-dark);
    position: relative;
    overflow: hidden;
}

.anatomy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(16, 40, 32, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated subtle grid pattern */
.anatomy-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes gridFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.anatomy-content {
    flex: 0 0 45%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.anatomy-content .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.anatomy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.anatomy-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.anatomy-showcase {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 500px;
}

.anatomy-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 55%;
    height: 700px;
}

.main-chair-img {
    max-height: 600px;
    width: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    animation: floatChair 6s ease-in-out infinite;
}

@keyframes floatChair {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hotspots */
.hotspot-point {
    position: absolute;
    z-index: 10;
}

.hotspot-dot {
    width: 20px;
    height: 20px;
    background: var(--furniture-gold);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 0 rgba(201, 169, 110, 0.7),
        0 0 20px rgba(201, 169, 110, 0.5);
    animation: pulseGold 2s infinite;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.hotspot-dot:hover {
    transform: scale(1.2);
}

@keyframes pulseGold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7), 0 0 20px rgba(201, 169, 110, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(201, 169, 110, 0), 0 0 20px rgba(201, 169, 110, 0.3);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0), 0 0 20px rgba(201, 169, 110, 0.5);
    }
}

/* Animated SVG Lines */
.hotspot-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--furniture-gold), transparent);
    top: 9px;
    transform-origin: left center;
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.line-right {
    left: 20px;
    background: linear-gradient(90deg, var(--furniture-gold), transparent);
}

.line-left {
    right: 20px;
    background: linear-gradient(-90deg, var(--furniture-gold), transparent);
    transform-origin: right center;
}

/* Glassmorphism Cards */
.hotspot-card {
    position: absolute;
    width: 260px;
    padding: 24px;
    top: -30px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: rgba(16, 40, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-right {
    left: 150px;
    text-align: left;
}

.card-left {
    right: 150px;
    text-align: right;
}

.hotspot-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--furniture-gold);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hotspot-card p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.hotspot-card .card-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--furniture-gold);
}

.card-left .card-icon {
    margin-left: auto;
}

/* Hover Effects */
.hotspot-point:hover .hotspot-line {
    width: 120px;
}

.hotspot-point:hover .hotspot-card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== INTERACTIVE SHOWROOM (HotspotRoom) ===== */
.showroom-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.showroom-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showroom-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 16, 0.3) 0%, rgba(10, 20, 16, 0.5) 100%);
}

.showroom-header {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.showroom-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 16px;
}

.showroom-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
}

/* Shop Hotspots */
.shop-hotspot {
    position: absolute;
    z-index: 20;
    cursor: pointer;
}

.shop-hotspot-dot {
    width: 24px;
    height: 24px;
    background: var(--furniture-gold);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6), 0 0 30px rgba(201, 169, 110, 0.4);
    animation: shopPulse 2.5s infinite;
    position: relative;
    transition: all 0.3s ease;
}

.shop-hotspot:hover .shop-hotspot-dot {
    transform: scale(1.3);
    background: #ffffff;
}

@keyframes shopPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6), 0 0 30px rgba(201, 169, 110, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(201, 169, 110, 0), 0 0 30px rgba(201, 169, 110, 0.2);
    }
}

.shop-hotspot-card {
    position: absolute;
    left: 40px;
    top: -20px;
    width: 280px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.shop-hotspot:hover .shop-hotspot-card {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.shop-product-image {
    width: 100%;
    height: 120px;
    background: var(--furniture-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--furniture-dark);
    margin-bottom: 4px;
}

.shop-product-category {
    font-size: 12px;
    color: var(--furniture-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}


/* ===== TEXTURE SWITCHER (Material Library) ===== */
.texture-section {
    padding: 120px 0;
    position: relative;
    background: var(--furniture-light);
    overflow: hidden;
    transition: background-image 0.8s ease-in-out;
}

.texture-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.texture-section.texture-active::before {
    opacity: 0;
}

.texture-section-content {
    position: relative;
    z-index: 1;
}

.texture-header {
    text-align: center;
    margin-bottom: 80px;
}

.texture-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.texture-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--furniture-primary);
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.texture-section.texture-active .texture-header h2 {
    color: #ffffff;
}

.texture-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    transition: color 0.5s ease;
}

.texture-section.texture-active .texture-header p {
    color: rgba(255, 255, 255, 0.8);
}

.texture-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.texture-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.texture-item:hover {
    transform: translateY(-10px);
}

.texture-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.texture-item:hover .texture-circle,
.texture-item.active .texture-circle {
    border-color: var(--furniture-gold);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
    transform: scale(1.1);
}

.texture-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.texture-item:hover .texture-circle img {
    transform: scale(1.2);
}

.texture-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--furniture-primary);
    margin-bottom: 4px;
    transition: color 0.5s ease;
}

.texture-section.texture-active .texture-name {
    color: #ffffff;
}

.texture-type {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.texture-section.texture-active .texture-type {
    color: rgba(255, 255, 255, 0.7);
}

/* Texture Preview Overlay */
.texture-preview {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 20, 16, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.texture-preview.active {
    opacity: 1;
    visibility: visible;
}

.texture-preview-content {
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.texture-preview.active .texture-preview-content {
    transform: scale(1);
}

.texture-preview-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid var(--furniture-gold);
}

.texture-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texture-preview-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--furniture-gold);
    border-radius: 50%;
    color: var(--furniture-gold);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.texture-preview-close:hover {
    background: var(--furniture-gold);
    color: var(--furniture-dark);
}

/* ===== COMPARISON SLIDER (Sketch to Reality) ===== */
.comparison-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--furniture-primary) 0%, #0D1F17 100%);
    overflow: hidden;
}

.comparison-header {
    text-align: center;
    margin-bottom: 80px;
}

.comparison-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.comparison-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.comparison-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-image.after {
    clip-path: inset(0 50% 0 0);
}

/* Slider Handle */
.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--furniture-gold);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.comparison-slider:hover {
    width: 6px;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--furniture-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.5);
    cursor: ew-resize;
    transition: transform 0.3s ease;
}

.comparison-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison-handle svg {
    width: 24px;
    height: 24px;
    color: var(--furniture-dark);
}

/* Labels */
.comparison-labels {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 5;
}

.comparison-label {
    padding: 12px 24px;
    background: rgba(10, 20, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-label.sketch {
    color: var(--furniture-light);
}

.comparison-label.reality {
    color: var(--furniture-gold);
}

/* Process Steps */
.comparison-process {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--furniture-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--furniture-gold);
}

.process-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1200px) {
    .masonry-grid {
        gap: 15px;
    }

    .comparison-process {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .masonry-item.tall {
        grid-row: span 1;
        min-height: 350px;
    }

    .masonry-item.wide {
        grid-column: span 1;
    }

    .anatomy-showcase {
        min-height: 500px;
    }

    .anatomy-image-wrapper {
        height: 500px;
    }

    .main-chair-img {
        max-height: 450px;
    }

    .hotspot-card {
        width: 200px;
        padding: 16px;
    }

    .card-right {
        left: 100px;
    }

    .card-left {
        right: 100px;
    }

    .showroom-section {
        height: 80vh;
    }

    .texture-grid {
        gap: 30px;
    }

    .texture-circle {
        width: 100px;
        height: 100px;
    }

    .comparison-wrapper {
        height: 450px;
    }

    .comparison-process {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .masonry-item {
        min-height: 300px;
    }

    .masonry-title {
        font-size: 28px;
    }

    .anatomy-header h2,
    .texture-header h2,
    .comparison-header h2 {
        font-size: 36px;
    }

    .hotspot-card {
        display: none;
    }

    .showroom-header h2 {
        font-size: 32px;
    }

    .shop-hotspot-card {
        position: fixed;
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: auto;
        width: auto;
        transform: translateY(100%);
    }

    .shop-hotspot:hover .shop-hotspot-card {
        transform: translateY(0);
    }

    .texture-circle {
        width: 80px;
        height: 80px;
    }

    .comparison-wrapper {
        height: 350px;
    }

    .comparison-handle {
        width: 50px;
        height: 50px;
    }

    .comparison-labels {
        padding: 0 20px;
    }
}

/* ===== CINEMATIC REVEAL (ScrollVideoMask) ===== */
.cinematic-reveal {
    position: relative;
    height: 100vh;
    background: var(--furniture-dark);
    overflow: hidden;
}

.cinematic-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cinematic-video-bg img,
.cinematic-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

.cinematic-mask-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--furniture-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The expanding window/arch mask */
.cinematic-window {
    position: relative;
    width: 200px;
    height: 300px;
    background: transparent;
    overflow: hidden;
    border-radius: 100px 100px 0 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 100vmax var(--furniture-dark);
}

/* Expands on scroll via JS */
.cinematic-window.expanded {
    width: 90vw;
    height: 85vh;
    border-radius: 50px 50px 0 0;
}

.cinematic-window-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinematic-window-inner img,
.cinematic-window-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered typography that fades */
.cinematic-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.cinematic-text.faded {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 50px));
}

.cinematic-text .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.cinematic-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--furniture-gold);
    line-height: 1.1;
    margin-bottom: 16px;
}

.cinematic-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Scroll indicator at bottom */
.cinematic-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--furniture-gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.cinematic-scroll-hint.hidden {
    opacity: 0;
}

.cinematic-scroll-hint .scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--furniture-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/* ===== EDITORIAL LOOKBOOK (HorizontalTrendScroll) ===== */
.editorial-lookbook {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--furniture-primary) 0%, #0D1F17 100%);
    overflow: hidden;
}

.editorial-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.editorial-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.editorial-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.editorial-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Horizontal Scroll Container */
.editorial-scroll-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.editorial-scroll-container::-webkit-scrollbar {
    display: none;
}

.editorial-scroll-container:active {
    cursor: grabbing;
}

.editorial-scroll-track {
    display: flex;
    gap: 40px;
    padding: 0 calc((100vw - 1400px) / 2 + 40px);
    width: max-content;
}

/* Individual Trend Slide */
.trend-slide {
    position: relative;
    width: 500px;
    height: 700px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.trend-slide:hover {
    transform: scale(1.02);
}

.trend-slide-image {
    position: absolute;
    inset: 0;
}

.trend-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.trend-slide:hover .trend-slide-image img {
    transform: scale(1.1);
}

.trend-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 20, 16, 0.9) 0%, rgba(10, 20, 16, 0.3) 40%, transparent 70%);
}

.trend-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
}

/* Magazine-style overlapping typography */
.trend-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
}

.trend-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: var(--furniture-gold);
}

.trend-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 350px;
}

.trend-issue {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 10px 20px;
    background: rgba(10, 20, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    color: var(--furniture-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Scroll progress indicator */
.editorial-scroll-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.scroll-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-progress-dot.active {
    background: var(--furniture-gold);
    transform: scale(1.3);
}

/* Drag hint */
.editorial-drag-hint {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.editorial-drag-hint svg {
    width: 24px;
    height: 24px;
    animation: dragHint 2s infinite;
}

@keyframes dragHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* ===== ANIMATED VERTICAL TIMELINE (Project Roadmap) ===== */
.project-roadmap {
    padding: 120px 0;
    background: var(--furniture-dark);
    position: relative;
    overflow: hidden;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 100px;
}

.roadmap-header .section-label {
    color: var(--furniture-gold);
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.roadmap-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.roadmap-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Central Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(201, 169, 110, 0.2);
    transform: translateX(-50%);
}

/* Animated gold fill that draws on scroll */
.timeline-line-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--furniture-gold) 0%, rgba(201, 169, 110, 0.5) 100%);
    transform: translateX(-50%);
    transition: height 0.1s ease-out;
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}

/* Timeline Steps */
.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 100px;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Node in the middle */
.timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-node-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--furniture-dark);
    border: 3px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
}

.timeline-step.active .timeline-node-circle {
    border-color: var(--furniture-gold);
    background: rgba(201, 169, 110, 0.1);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.4);
}

.timeline-node-number {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: rgba(201, 169, 110, 0.4);
    transition: color 0.5s ease;
}

.timeline-step.active .timeline-node-number {
    color: var(--furniture-gold);
}

/* Pulse animation for active node */
.timeline-node-circle::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--furniture-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.timeline-step.active .timeline-node-circle::after {
    opacity: 1;
    transform: scale(1);
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Content blocks - alternating left/right */
.timeline-content {
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-step.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content-left {
    text-align: right;
}

.timeline-content-right {
    text-align: left;
}

.timeline-content-empty {
    /* Empty spacer for alternating layout */
    display: block;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 350px;
}

.timeline-content-left .timeline-desc {
    margin-left: auto;
}

/* Connecting line from node to content */
.timeline-connector {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: rgba(201, 169, 110, 0.2);
    transition: background 0.5s ease;
}

.timeline-connector-left {
    right: 60px;
}

.timeline-connector-right {
    left: 60px;
}

.timeline-step.active .timeline-connector {
    background: var(--furniture-gold);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1200px) {
    .portfolio-split {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .trend-slide {
        width: 400px;
        height: 600px;
    }
}

@media (max-width: 968px) {
    .cinematic-text h2 {
        font-size: 48px;
    }

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

    .portfolio-client-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
    }

    .portfolio-client-item {
        padding: 24px 30px;
        border-bottom: none;
        border-right: 1px solid rgba(201, 169, 110, 0.2);
        white-space: nowrap;
    }

    .portfolio-client-item:first-child {
        border-top: none;
        border-left: 1px solid rgba(201, 169, 110, 0.2);
    }

    .portfolio-client-item::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
    }

    .portfolio-client-item:hover::before,
    .portfolio-client-item.active::before {
        transform: scaleX(1);
    }

    .portfolio-client-item:hover,
    .portfolio-client-item.active {
        padding-left: 30px;
    }

    .client-name {
        font-size: 24px;
    }

    .portfolio-image-container {
        min-height: 400px;
    }

    .trend-slide {
        width: 320px;
        height: 500px;
    }

    .trend-title {
        font-size: 36px;
    }

    .timeline-step {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .timeline-node {
        grid-column: 1;
    }

    .timeline-content-left,
    .timeline-content-right {
        grid-column: 2;
        text-align: left;
    }

    .timeline-content-empty {
        display: none;
    }

    .timeline-content-left .timeline-desc {
        margin-left: 0;
    }

    .timeline-line,
    .timeline-line-fill {
        left: 20px;
    }

    .timeline-node-circle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .cinematic-text h2 {
        font-size: 36px;
    }

    .cinematic-window {
        width: 150px;
        height: 220px;
        border-radius: 75px 75px 0 0;
    }

    .cinematic-window.expanded {
        width: 95vw;
        height: 80vh;
        border-radius: 30px 30px 0 0;
    }

    .portfolio-header h2,
    .editorial-header h2,
    .roadmap-header h2 {
        font-size: 36px;
    }

    .client-name {
        font-size: 20px;
    }

    .trend-slide {
        width: 280px;
        height: 420px;
    }

    .trend-slide-content {
        padding: 30px;
    }

    .trend-title {
        font-size: 28px;
    }

    .timeline-title {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
    }
}

/* ============================================
   FOOTER STYLES - FURNITURE THEME
   ============================================ */
.furniture-theme .main-footer {
    background: var(--furniture-dark);
    padding: 80px 0 30px;
    color: var(--furniture-light);
}

.furniture-theme .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.furniture-theme .footer-column {
    color: var(--furniture-light);
}

.furniture-theme .footer-about {
    max-width: 320px;
}

.furniture-theme .footer-company-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.furniture-theme .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.furniture-theme .footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.furniture-theme .footer-tagline,
.furniture-theme .cta-tagline {
    font-family: 'Poppins', sans-serif;
    color: var(--furniture-light);
}

.furniture-theme .cta-company-name {
    font-weight: 700;
    color: var(--furniture-gold);
    letter-spacing: 1px;
}

.furniture-theme .footer-description {
    font-size: 15px;
    color: rgba(202, 186, 156, 0.7);
    line-height: 1.7;
}

.furniture-theme .footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--furniture-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--furniture-secondary);
    display: inline-block;
}

.furniture-theme .footer-title-secondary {
    margin-top: 24px;
}

.furniture-theme .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.furniture-theme .footer-links li {
    margin-bottom: 10px;
}

.furniture-theme .footer-links a {
    font-size: 15px;
    color: rgba(202, 186, 156, 0.7);
    transition: color 0.3s ease;
}

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

.furniture-theme .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.furniture-theme .footer-contact li {
    font-size: 15px;
    color: rgba(202, 186, 156, 0.7);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.furniture-theme .footer-contact li svg {
    flex-shrink: 0;
    color: var(--furniture-gold);
    margin-top: 2px;
}

.furniture-theme .footer-contact li a {
    color: rgba(202, 186, 156, 0.7);
    transition: color 0.3s ease;
}

.furniture-theme .footer-contact li a:hover {
    color: var(--furniture-gold);
}

.furniture-theme .hours-item {
    align-items: flex-start;
}

.furniture-theme .hours-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.furniture-theme .hours-text span {
    font-size: 14px;
}

.furniture-theme .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.furniture-theme .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--furniture-gold);
    transition: all 0.3s ease;
}

.furniture-theme .social-link svg {
    width: 18px;
    height: 18px;
}

.furniture-theme .social-link:hover {
    background: var(--furniture-gold);
    color: var(--furniture-dark);
    transform: translateY(-3px);
}

.furniture-theme .footer-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ffd700;
    color: #0A1410;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.furniture-theme .footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    background: #ffc700;
}

.furniture-theme .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    text-align: center;
}

.furniture-theme .footer-bottom p {
    font-size: 14px;
    color: rgba(202, 186, 156, 0.6);
    margin-bottom: 15px;
}

.furniture-theme .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.furniture-theme .footer-bottom-links a {
    font-size: 14px;
    color: rgba(202, 186, 156, 0.7);
    transition: color 0.3s ease;
}

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

/* Responsive Footer Styles */
@media (min-width: 768px) {
    .furniture-theme .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .furniture-theme .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .furniture-theme .footer-bottom p {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .furniture-theme .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}