:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f4f4f4;
    --bg-card: #f9f9f9;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --accent: #0a0a0a;
    --accent-hover: #333333;
    --gold: #d4af37;
    --gold-hover: #e5c13c;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 0.5rem 2rem;
    background: #000000;
    transition: transform 0.3s ease;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: none;
    transition: all 0.3s ease;
    padding-top: 36px;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.header-top-left {
    color: #ffffff;
    opacity: 0.8;
}

.header-top-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-top-right a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.header-top-right a:hover {
    opacity: 0.7;
}

.header-top-right span {
    color: rgba(255, 255, 255, 0.5);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: padding-top 0.3s ease;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: font-size 0.3s ease;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #666666;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: #000000;
}

.nav-item {
    position: relative;
}

.nav-item-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.625rem;
    color: #999999;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.25rem;
    font-size: 0.625rem;
    color: #999999;
    display: inline-flex;
    align-items: center;
}

.nav-item.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown > .nav-item-link {
    padding-right: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #000000;
}

.products-dropdown {
    min-width: 900px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    border-top: 3px solid #000000;
}

.dropdown-content {
    display: flex;
    padding: 2rem;
    gap: 3rem;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h4 {
    color: #000000;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-column a {
    display: block;
    padding: 0.625rem 1rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    text-transform: none;
    transition: var(--transition);
    border-radius: 4px;
}

.dropdown-column a:hover {
    color: #000000;
    background: #f5f5f5;
    padding-left: 1.5rem;
    font-weight: 700;
}

.dropdown-image {
    flex-shrink: 0;
    width: 320px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.dropdown-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: #f9f9f9;
    border-top: 1px solid #f0f0f0;
}

.dropdown-footer span {
    color: #666666;
    font-size: 0.875rem;
}

.explore-btn {
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.active .nav-dropdown {
    display: block;
}

.nav-dropdown > a {
    display: block;
    padding: 0.625rem 1rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.9375rem;
    text-transform: none;
    transition: var(--transition);
    border-radius: 4px;
}

.nav-dropdown > a:hover {
    color: #000000;
    background: #f5f5f5;
    padding-left: 1.5rem;
    font-weight: 700;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.book-visit-btn {
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.book-visit-btn:hover {
    background: #333333;
}

.language-switcher {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    box-shadow: none;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-text {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.toggle-arrow {
    font-size: 10px;
    color: #666666;
    margin-left: 0.25rem;
    font-weight: 400;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    display: block;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.lang-dropdown-item:hover {
    background: #f5f5f5;
}

.check-icon {
    font-size: 10px;
    color: #666666;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-weight: 400;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    padding-top: 120px;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
    text-align: left;
    max-width: 720px;
    padding: 0 2rem;
    margin-left: 18%;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.7);
    margin-right: 0.75rem;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    text-shadow: none;
    color: #ffffff;
}

.hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero p strong {
    font-weight: 600;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8125rem;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    background: transparent;
    font-size: 0.8125rem;
}

.btn-secondary:hover {
    border-color: #f0f0f0;
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.05);
}

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

.hero .hero-badge.hero-anim-item,
.hero h1.hero-anim-item,
.hero p.hero-anim-item,
.hero .hero-buttons.hero-anim-item {
    opacity: 0;
}

.hero .hero-badge.hero-anim-item.hero-ready,
.hero h1.hero-anim-item.hero-ready,
.hero p.hero-anim-item.hero-ready,
.hero .hero-buttons.hero-anim-item.hero-ready {
    animation: fadeInUpHome 0.8s ease-out forwards;
}

.hero .hero-badge.hero-anim-item.hero-ready {
    animation-delay: 0.15s;
}

.hero h1.hero-anim-item.hero-ready {
    animation-delay: 0.3s;
}

.hero p.hero-anim-item.hero-ready {
    animation-delay: 0.45s;
}

.hero .hero-buttons.hero-anim-item.hero-ready {
    animation-delay: 0.6s;
}

.products {
    padding: 6rem 2rem;
    background: #ffffff;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.products-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.products-header p {
    font-size: 1rem;
    color: #777777;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

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

.product-number {
    display: none;
}

.product-overlay-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.product-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover .product-desc {
    opacity: 1;
    max-height: 200px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.product-catalog-btn {
    display: inline-block;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.25rem;
    transition: all 0.4s ease;
}

.product-catalog-btn:hover {
    opacity: 0.8;
}

.product-card:hover .product-catalog-btn {
    opacity: 1;
    max-height: 60px;
    margin-top: 0;
}

.product-link {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.product-link:hover {
    margin-left: 10px;
}

.home-manufacturing {
    padding: 6rem 2rem;
    background: #ffffff;
}

.home-mfg-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.home-mfg-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-mfg-header p {
    font-size: 0.9375rem;
    color: #777777;
    line-height: 1.8;
    margin: 0;
}

.home-mfg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.home-mfg-images {
    position: relative;
    height: 100%;
    display: block;
}

.home-mfg-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.home-mfg-image-item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.home-mfg-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-mfg-image-grid:hover .home-mfg-image-item img {
    transform: scale(1.1);
}

.home-mfg-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-mfg-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.home-mfg-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.home-mfg-feature:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.home-mfg-num {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    flex-shrink: 0;
}

.home-mfg-feature h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    text-align: left;
}

.home-mfg-feature p {
    font-size: 0.875rem;
    color: #777777;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

.home-mfg-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff !important;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
    border-radius: 0;
}

.home-mfg-btn:hover {
    background: #333333;
    color: #ffffff;
}

/* Factory page - Manufacturing Standards */
.factory-manufacturing {
    padding: 6rem 2rem;
    background: #ffffff;
}

.factory-mfg-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.factory-mfg-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.factory-mfg-header p {
    font-size: 0.9375rem;
    color: #777777;
    line-height: 1.8;
    margin: 0;
}

.factory-mfg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.factory-mfg-images {
    position: relative;
    height: 100%;
    display: block;
}

.factory-mfg-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.factory-mfg-image-item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.factory-mfg-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.factory-mfg-image-grid:hover .factory-mfg-image-item img {
    transform: scale(1.1);
}

.factory-mfg-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.factory-mfg-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.factory-mfg-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.factory-mfg-feature:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.factory-mfg-num {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999999;
    flex-shrink: 0;
}

.factory-mfg-feature h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    text-align: left;
}

.factory-mfg-feature p {
    font-size: 0.875rem;
    color: #777777;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

.factory-mfg-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
    border-radius: 0;
}

.factory-mfg-btn:hover {
    background: #333333;
    color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.center-btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
}

.showroom {
    padding: 6rem 2rem;
    background: #ffffff;
}

.showroom-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.showroom-content {
    padding: 0;
    text-align: left;
    max-width: 500px;
}

.showroom-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

.showroom-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #000000;
    display: block;
}

.showroom-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.showroom-content p {
    font-size: 1rem;
    color: #777777;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
}

.showroom-btn-black {
    display: inline-block;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #000000;
    text-decoration: none;
    margin-right: 0;
    border: none;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.showroom-btn-black:hover {
    opacity: 0.6;
    background: transparent;
    color: #000000;
}

.showroom-btn-outline {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.showroom-btn-outline:hover {
    background: #000000;
    color: #ffffff;
}

.showroom-slider {
    position: relative;
}

.slider-image-wrapper {
    overflow: hidden;
}

.slider-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #000000;
}

.slider-arrow:hover {
    background: #000000;
    color: #ffffff;
}

.slider-arrow-left {
    left: 1rem;
}

.slider-arrow-right {
    right: 1rem;
}

.showroom-partners {
    text-align: center;
    margin-top: 4rem;
}

.showroom-partners h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 0.5rem;
}

.showroom-partners p {
    font-size: 0.875rem;
    color: #777777;
}

.partners-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-top: 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 4px;
}

.partner-img-wrapper {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.partner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    transform-origin: center center;
}

.partner-img-wrapper:hover img {
    transform: scale(1.1);
}

.engineering-section {
    width: 100%;
    margin: 8rem auto 0;
    padding: 0 2rem;
    max-width: 1400px;
}

.engineering-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.engineering-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.engineering-header p {
    font-size: 0.9375rem;
    color: #777777;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.engineering-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}

.eng-img-wrapper {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.eng-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    transform-origin: center center;
}

.eng-img-wrapper:hover img {
    transform: scale(1.1);
}

.showroom-info {
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.info-row {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-stats {
    flex: 1;
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showroom-gallery {
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.showroom-gallery h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

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

.spatial-narrative {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.spatial-narrative h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.spatial-narrative p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zone-item {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: var(--transition);
}

.zone-item:hover {
    border-color: var(--accent);
}

.zone-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.zone-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.zone-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.concierge {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.concierge h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.concierge p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.blog {
    padding: 6rem 2rem;
    background: #f4f4f4;
}

.presence-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
    align-items: center;
}

.presence-content {
    padding-top: 0;
    margin-bottom: 0;
}

.presence-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    text-align: left;
}

.presence-content p {
    font-size: 0.9375rem;
    color: #777777;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.presence-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.presence-btn:hover {
    background: #333333;
}

.presence-img-wrapper {
    overflow: hidden;
    width: 100%;
}

.presence-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.6s ease;
    transform-origin: center center;
}

.certifications {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cert-img-wrapper {
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 7;
    object-fit: contain;
    transition: all 0.6s ease;
    transform-origin: center center;
}

.cert-img-wrapper:hover img {
    transform: scale(1.1);
}

.blog-section {
    padding: 8rem 2rem;
    background: #f7f7f7;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img-wrapper {
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: all 0.6s ease;
    transform-origin: center center;
}

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

.blog-card-content {
    padding: 1.5rem 0;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.8125rem;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq {
    padding: 8rem 2rem;
    background: #ffffff;
}

.faq .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.faq .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: none;
    color: #000000;
}

.faq .section-header p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
    transition: all 0.2s ease;
    letter-spacing: normal;
}

.faq-question:hover {
    color: #333333;
}

.faq-question-icon {
    color: #000000;
    font-size: 1.75rem;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    margin-left: 1.5rem;
    display: inline-block;
}

.faq-answer {
    display: none;
    padding: 0 0 1.75rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.contact {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-item p a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.footer {
    padding: 6rem 2rem 3rem;
    background: #ffffff;
    color: #000000;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
}

.footer-brand-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-icon:hover {
    color: #000000;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.875rem;
}

.footer-col a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #000000;
    transform: translateX(5px);
}



.footer-office li {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.footer-office li i {
    margin-right: 0.75rem;
    color: #999999;
    width: 16px;
    text-align: center;
}

.btn-footer-quote {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-footer-quote:hover {
    background: #333333;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666666;
    font-size: 0.75rem;
}

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

.footer-bottom .footer-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
    color: #000000;
}

.footer-bold-link {
    font-weight: 700;
    color: #000000 !important;
    text-decoration: underline !important;
}

.promo-banner {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-right: 7px solid #000000;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    z-index: 10000;
}

.promo-close {
    float: left;
    background: none;
    border: none;
    color: #999999;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.promo-close:hover {
    color: #333333;
}

.promo-content {
    text-align: right;
}

.promo-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.promo-content p {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 28px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

.chat-container {
    position: fixed;
    top: calc(50% + 120px);
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.chat-btn-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    transition: width 0.3s ease;
}

.chat-btn-wrapper:hover {
    width: 200px;
}

.chat-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 56px;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.chat-btn-static {
    width: 56px;
    justify-content: center;
    gap: 6px;
    background: #000000;
    border-radius: 28px 0 0 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.chat-btn-hover {
    width: 200px;
    justify-content: space-between;
    padding: 0 16px;
    background: #22c55e;
    border-radius: 28px 0 0 28px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    opacity: 0;
    pointer-events: none;
}

.chat-btn-wrapper:hover .chat-btn-static {
    opacity: 0;
    pointer-events: none;
}

.chat-btn-wrapper:hover .chat-btn-hover {
    opacity: 1;
    pointer-events: auto;
}

.chat-btn i {
    font-size: 18px;
}

.chat-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.chat-text-group span:first-child {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.chat-text-group span:last-child {
    font-size: 10px;
    font-weight: 500;
    text-transform: none;
    opacity: 0.9;
    line-height: 1;
}

.chat-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 92%;
    max-width: 600px;
    background: #ffffff;
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
    z-index: 10;
}

.mobile-menu-nav {
    flex: 1;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    text-transform: capitalize;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-item-header .mobile-menu-link {
    border-bottom: none;
    flex: 1;
}

.mobile-menu-arrow {
    padding: 1rem;
    color: #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-item.active .mobile-menu-arrow {
    transform: rotate(180deg);
}

.mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-item.active .mobile-menu-dropdown {
    max-height: 500px;
}

.mobile-menu-dropdown-group {
    padding: 0 1.5rem 1rem 1.5rem;
}

.mobile-menu-dropdown-title {
    display: block;
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.mobile-menu-dropdown-link {
    display: block;
    padding: 0.6rem 0;
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: none;
}

.mobile-menu-dropdown-link:hover {
    color: #000000;
}

.mobile-menu-lang-section {
    padding: 1.5rem 0 0 0;
}

.mobile-menu-lang-section .mobile-menu-lang-label {
    display: block;
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.mobile-menu-lang-section .mobile-lang-switcher .lang-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

@media (min-width: 769px) and (max-width: 992px) {
    .header-top {
        display: none;
    }

    .header {
        padding-top: 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .manufacturing-image-grid {
        grid-template-columns: 1fr;
    }

    .home-mfg-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .home-mfg-images {
        order: -1;
        margin-bottom: 1rem;
    }

    .home-mfg-image-grid {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-mfg-image-grid::-webkit-scrollbar {
        display: none;
    }

    .home-mfg-image-item {
        display: block;
        flex: 0 0 80%;
        scroll-snap-align: center;
        margin-right: 10px;
    }

    .home-mfg-image-item:first-child {
        aspect-ratio: 4 / 3;
    }

    .home-mfg-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-mfg-header {
        margin-bottom: 2rem;
    }

    .home-mfg-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .home-mfg-header p {
        text-align: center;
    }

    .home-mfg-content {
        align-items: center;
    }

    .home-mfg-features {
        text-align: left;
        margin-bottom: 2rem;
    }

    .home-mfg-btn {
        display: inline-block;
    }

    .grid-image-1 {
        height: 300px;
        grid-row: span 1;
    }

    .grid-image-4 {
        grid-column: span 1;
    }

    .feature-item {
        flex-direction: column;
    }

    .feature-number {
        font-size: 4rem;
    }

    .showroom-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .showroom-slider {
        order: -1;
    }

    .showroom-content {
        max-width: 100%;
        text-align: center;
    }

    .showroom-content h2 {
        text-align: center;
    }

    .showroom-content p {
        text-align: center;
    }

    .showroom-badge {
        padding-left: 0;
    }

    .showroom-badge::before {
        display: none;
    }

    .engineering-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .engineering-images {
        grid-template-columns: 1fr;
    }

    .presence-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .blog-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showroom-content h2 {
        font-size: 2rem;
    }

    .info-row {
        flex-direction: column;
        text-align: center;
    }

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

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

    .contact-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    body, html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-top {
        display: none;
    }

    .header {
        padding-top: 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .manufacturing-image-grid {
        grid-template-columns: 1fr;
    }

    .home-mfg-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .home-mfg-images {
        order: -1;
        margin-bottom: 1rem;
    }

    .home-mfg-image-grid {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-mfg-image-grid::-webkit-scrollbar {
        display: none;
    }

    .home-mfg-image-item {
        display: block;
        flex: 0 0 80%;
        scroll-snap-align: center;
        margin-right: 10px;
    }

    .home-mfg-image-item:first-child {
        aspect-ratio: 4 / 3;
    }

    .home-mfg-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-mfg-header {
        margin-bottom: 2rem;
    }

    .home-mfg-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .home-mfg-header p {
        text-align: center;
    }

    .home-mfg-content {
        align-items: center;
    }

    .home-mfg-features {
        text-align: left;
        margin-bottom: 2rem;
    }

    .home-mfg-btn {
        display: inline-block;
    }

    .grid-image-1 {
        height: 300px;
        grid-row: span 1;
    }

    .grid-image-4 {
        grid-column: span 1;
    }

    .feature-item {
        flex-direction: column;
    }

    .feature-number {
        font-size: 4rem;
    }

    .showroom-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .showroom-slider {
        order: -1;
    }

    .showroom-content {
        max-width: 100%;
        text-align: center;
    }

    .showroom-content h2 {
        text-align: center;
    }

    .showroom-content p {
        text-align: center;
    }

    .showroom-badge {
        padding-left: 0;
    }

    .showroom-badge::before {
        display: none;
    }

    .engineering-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .engineering-images {
        grid-template-columns: 1fr;
    }

    .presence-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 1400px;
        padding: 0;
    }

    .presence-content {
        max-width: 100%;
    }

    .presence-img-wrapper img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .presence-content h2 {
        text-align: center;
    }

    .presence-content p {
        text-align: center;
    }

    .blog-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .info-row {
        flex-direction: column;
        text-align: center;
    }

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

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

    .contact-content {
        flex-direction: column;
    }

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

    .hero {
        min-height: 66.67vh;
        padding-top: 60px;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-bg {
        padding-top: 60px;
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }

    .hero-image-bg {
        display: block;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.3) 100%);
    }

    .hero-content {
        text-align: center !important;
        max-width: 100%;
        padding: 0 1.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-badge {
        display: inline-block;
        position: static;
        padding: 0;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }

    .hero-badge::before {
        display: none;
    }

    .hero h1 {
        font-size: 1.75rem;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
    }

    .hero p {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: row !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .hero-buttons a {
        width: auto;
        flex: 1;
        max-width: 260px;
        padding: 0.75rem 1rem;
        font-size: 0.65rem;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }

    .about-hero,
    .products-hero,
    .sofas-hero,
    .armchairs-hero,
    .factory-hero,
    .showroom-hero,
    .beds-hero,
    .dining-hero,
    .mattresses-hero,
    .blog-hero,
    .contact-hero,
    .solutions-hero-new {
        min-height: 66.67vh;
        padding-top: 60px;
        justify-content: center;
        align-items: center;
    }

    .about-hero-content,
    .products-hero-content,
    .sofas-hero-content,
    .armchairs-hero-content,
    .factory-hero-content,
    .showroom-hero-content,
    .beds-hero-content,
    .dining-hero-content,
    .mattresses-hero-content,
    .blog-hero-content,
    .contact-hero-content,
    .solutions-hero-content {
        text-align: center !important;
        max-width: 100%;
        padding: 0 1.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .about-hero-content h1,
    .products-hero-content h1,
    .sofas-hero-content h1,
    .armchairs-hero-content h1,
    .factory-hero-content h1,
    .showroom-hero-content h1,
    .beds-hero-content h1,
    .dining-hero-content h1,
    .mattresses-hero-content h1,
    .blog-hero-content h1,
    .contact-hero-content h1,
    .solutions-hero-content h1 {
        font-size: 1.75rem;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
    }

    .about-hero-content p,
    .products-hero-content p,
    .sofas-hero-content p,
    .armchairs-hero-content p,
    .factory-hero-content p,
    .showroom-hero-content p,
    .beds-hero-content p,
    .dining-hero-content p,
    .mattresses-hero-content p,
    .blog-hero-content p,
    .contact-hero-content p,
    .solutions-hero-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-hero-bg,
    .products-hero-bg,
    .sofas-hero-bg,
    .armchairs-hero-bg,
    .factory-hero-bg,
    .showroom-hero-bg,
    .beds-hero-bg,
    .dining-hero-bg,
    .mattresses-hero-bg,
    .blog-hero-bg,
    .contact-hero-bg {
        top: 0;
        height: 100%;
        padding-top: 0;
    }

    .section-intro h2,
    .section-header h2,
    .spatial-narrative h2,
    .concierge h2 {
        font-size: 1.5rem;
    }

    .showroom-content h2 {
        font-size: 1.5rem;
    }

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

    .cert-img-wrapper {
        background: #ffffff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .partners-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 0 3px;
    }

    .info-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 85%;
        padding: 0;
        margin: 0 auto;
    }

    .products-header {
        max-width: 85%;
        padding: 0;
        margin: 0 auto 3rem;
    }

    .products-header h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .products-header p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
    }

    .navbar {
        max-width: 100%;
        padding: 1rem;
    }
}

.factory-page-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1920&q=80') center/cover;
    will-change: transform;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 5% 0;
    width: 100%;
}

.hero-content-left {
    max-width: 620px;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content-left h1 {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-content-left p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-solid:hover {
    background: #f4f4f4;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

.manufacturing-standards {
    padding: 6rem 2rem;
    background: #f7f7f7;
}

.manufacturing-standards .container {
    max-width: 1400px;
    margin: 0 auto;
}

.standards-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.standards-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.standards-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #888888;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.standards-images {
    flex-shrink: 0;
}

.standards-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.standards-img-grid .img-wrapper {
    overflow: hidden;
}

.standards-img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.6s ease;
    transform-origin: center center;
}

.standards-img-grid .img-wrapper:hover img {
    transform: scale(1.1);
}

.standards-content h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000000;
}

.standards-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.standard-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.standard-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.standard-info h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.625rem;
    color: #000000;
}

.standard-info p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #777777;
    margin-bottom: 0;
}

.standards-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.875rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.standards-btn:hover {
    background: #000000;
    color: #ffffff;
}

.concept-to-container {
    padding: 6rem 2rem;
    background: #ffffff;
}

.concept-to-container .container {
    max-width: 1400px;
    margin: 0 auto;
}

.concept-header {
    text-align: center;
    margin-bottom: 5rem;
}

.concept-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
}

.concept-header p {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
}

.concept-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.concept-step-left {
    grid-template-columns: 1fr 1fr;
}

.concept-step-right {
    grid-template-columns: 1fr 1fr;
}

.concept-image-wrapper {
    overflow: hidden;
}

.concept-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.concept-image-wrapper:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.concept-text {
    padding: 0 2rem;
}

.step-number {
    font-size: 6rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
}

.concept-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #000000;
}

.concept-text p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #777777;
}

.concept-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-production-run {
    display: inline-block;
    padding: 1.25rem 5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-production-run:hover {
    background: #000000;
    color: #ffffff;
}

.zero-defect {
    padding: 6rem 2rem;
    background: #ffffff;
}

.zero-defect .container {
    max-width: 1400px;
    margin: 0 auto;
}

.zero-defect-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.zero-defect-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.zero-defect-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #777777;
}

.zero-defect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.stats-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #f7f7f7;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #000000;
}

.stat-card:hover .stat-value,
.stat-card:hover .stat-label {
    color: #ffffff;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777777;
    transition: color 0.3s ease;
}

.cert-col h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-card {
    background: #f7f7f7;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: #000000;
}

.cert-card:hover i,
.cert-card:hover .cert-name,
.cert-card:hover .cert-desc {
    color: #ffffff;
}

.cert-card i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.cert-name {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.cert-desc {
    font-size: 0.75rem;
    color: #777777;
    transition: color 0.3s ease;
}

.qc-protocol {
    background: #f7f7f7;
    padding: 2rem;
    border-left: 3px solid #000000;
}

.qc-protocol h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1rem;
}

.qc-protocol p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #777777;
}

.factory-gallery-full {
    padding: 0;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item-full {
    overflow: hidden;
}

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

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

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-large img {
    height: 400px;
}

.factory-cta-section {
    padding: 6rem 2rem;
    background: #f7f7f7;
}

.factory-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.cta-inner p {
    font-size: 1rem;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 2.5rem;
}

.btn-request-quote {
    display: inline-block;
    padding: 1.25rem 4rem;
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-request-quote:hover {
    background: #333333;
}

.btn-solid-black {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-solid-black:hover {
    background: #333333;
}

.btn-outline-black {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background: #000000;
    color: #ffffff;
}

@media (min-width: 769px) and (max-width: 992px) {
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

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

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

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

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

    .gallery-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .standards-img-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-item-large img {
        height: 300px;
    }

    .concept-content h2 {
        font-size: 1.75rem;
    }

    .cta-btns {
        flex-direction: column;
    }
}

.solutions-hero-new {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 120px;
}

.solutions-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: -1;
    overflow: hidden;
}

.solutions-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 20s ease-in-out infinite;
}

@keyframes hero-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ken-burns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.05) translate(-1%, -1%);
    }
    50% {
        transform: scale(1.1) translate(0, -2%);
    }
    75% {
        transform: scale(1.05) translate(1%, -1%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
}

.solutions-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.scroll-text {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.solutions-hero-content {
    text-align: left;
    max-width: 720px;
    margin-left: 18%;
    padding: 0 2rem;
    z-index: 1;
}

.solutions-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.breadcrumb-line {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.solutions-hero-breadcrumb a {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.solutions-hero-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-divider {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.3);
}

.solutions-hero-breadcrumb span:last-child {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.solutions-hero-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.solutions-hero-badge {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.solutions-hero-new h1 {
    margin-bottom: 2rem;
}

.solutions-hero-new h1 span {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.solutions-hero-desc {
    margin-bottom: 3rem;
}

.solutions-hero-desc p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solutions-hero-desc p:last-child {
    margin-bottom: 0;
}

.solutions-hero-desc p strong {
    color: #ffffff;
    font-weight: 600;
}

.solutions-hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.solutions-hero-btn-primary {
    display: inline-block;
    padding: 0.875rem 3rem;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-hero-btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.solutions-hero-btn-secondary {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-hero-btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Solutions Hero Text Animation */
@keyframes fadeInUpSolutions {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions-hero-breadcrumb.hero-anim-item,
.solutions-hero-title-group .breadcrumb-line.hero-anim-item,
.solutions-hero-badge.hero-anim-item,
.solutions-hero-new h1.hero-anim-item,
.solutions-hero-desc.hero-anim-item,
.solutions-hero-buttons.hero-anim-item {
    opacity: 0;
}

.solutions-hero-breadcrumb.hero-anim-item.hero-ready,
.solutions-hero-title-group .breadcrumb-line.hero-anim-item.hero-ready,
.solutions-hero-badge.hero-anim-item.hero-ready,
.solutions-hero-new h1.hero-anim-item.hero-ready,
.solutions-hero-desc.hero-anim-item.hero-ready,
.solutions-hero-buttons.hero-anim-item.hero-ready {
    animation: fadeInUpSolutions 0.8s ease-out forwards;
}

.solutions-hero-breadcrumb.hero-anim-item.hero-ready {
    animation-delay: 0.1s;
}

.solutions-hero-title-group .breadcrumb-line.hero-anim-item.hero-ready,
.solutions-hero-badge.hero-anim-item.hero-ready {
    animation-delay: 0.2s;
}

.solutions-hero-new h1.hero-anim-item.hero-ready {
    animation-delay: 0.35s;
}

.solutions-hero-desc.hero-anim-item.hero-ready {
    animation-delay: 0.5s;
}

.solutions-hero-buttons.hero-anim-item.hero-ready {
    animation-delay: 0.65s;
}

.solutions-foshan {
    padding: 8rem 2rem;
    background: #f7f7f7;
    text-align: center;
}

.foshan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999999;
}

.foshan-destination-name {
    color: #000000;
    font-weight: 700;
}

.solutions-foshan h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.foshan-intro {
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
}

.solutions-foshan-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.foshan-image-wrapper {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.foshan-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.foshan-image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.foshan-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.foshan-highlights {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.foshan-highlight {
    padding-left: 1.5rem;
    border-left: 1px solid #000000;
    text-align: left;
}

.foshan-highlight h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
}

.foshan-highlight p {
    font-size: 0.9375rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    max-width: 400px;
}

.foshan-location {
    padding-left: 1.5rem;
    border-left: 1px solid #000000;
    text-align: left;
    margin-top: 2.5rem;
}

.foshan-location span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.foshan-footer {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.foshan-travel {
    display: flex;
    gap: 6rem;
}

.travel-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.travel-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.foshan-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.foshan-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.foshan-btn::after {
    content: '→';
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.foshan-btn:hover::after {
    transform: translateX(4px);
}

.factory-process {
    padding: 8rem 2rem;
    background: #ffffff;
}

.factory-process .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.factory-process .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.factory-process .section-header p {
    font-size: 0.9375rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.factory-facility {
    padding: 8rem 0;
    background: #f7f7f7;
}

.facility-images {
    display: flex;
    gap: 0;
    margin-bottom: 4rem;
}

.facility-image-wrapper {
    width: 33.33%;
    overflow: hidden;
    position: relative;
}

.facility-image-wrapper svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.facility-image-wrapper:hover svg {
    transform: scale(1.08);
}

.facility-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.facility-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
}

.facility-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.facility-stats {
    display: flex;
    justify-content: center;
    gap: 8rem;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.factory-capabilities {
    padding: 8rem 2rem;
    background: #ffffff;
}

.factory-capabilities .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.factory-capabilities .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.factory-capabilities .section-header p {
    font-size: 0.9375rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

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

.capability-item {
    padding: 3rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
}

.capability-item i {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.capability-item h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.capability-item p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.factory-cta {
    padding: 8rem 2rem;
    background: #000000;
    text-align: center;
}

.factory-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.factory-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.factory-cta .cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.factory-cta .cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.about-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 120px;
}

.about-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: -1;
    overflow: hidden;
}

.about-hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.about-hero-parallax-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 1;
}

.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.about-hero-breadcrumb a:hover {
    color: #ffffff;
}

.about-hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-subtitle span:nth-child(2) {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Hero Animation */
.about-hero-subtitle,
.about-hero-content h1,
.about-hero-content p,
.about-hero-buttons {
    opacity: 0;
}

.about-hero-subtitle.about-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
}

.about-hero-content h1.about-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.about-hero-content p.about-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.55s;
}

.about-hero-buttons.about-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.75s;
}

.about-hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.about-hero-btn-primary {
    color: #ffffff;
}

.about-hero-btn-primary:hover {
    opacity: 0.7;
}

.about-hero-btn-secondary {
    color: #ffffff;
}

.about-hero-btn-secondary:hover {
    opacity: 0.7;
}

.about-story {
    padding: 8rem 2rem;
    background: #f7f7f7;
}

.about-story .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-story .section-header p {
    font-size: 0.9375rem;
    color: #666666;
    letter-spacing: 1px;
}

.about-story .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-story .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.75rem;
}

.about-story .section-header p {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #000000;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item.timeline-left {
    justify-content: flex-start;
}

.timeline-item.timeline-right {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    background: #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-dot span {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
}

.timeline-card {
    width: calc(50% - 4rem);
    padding: 1.75rem;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-right: 3px solid #000000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.timeline-left .timeline-card {
    margin-right: auto;
}

.timeline-item.timeline-right .timeline-card {
    margin-left: auto;
}

.timeline-year {
    display: none;
}

.timeline-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: #000000;
    margin-top: 0;
    text-transform: uppercase;
}

.timeline-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    color: #333333;
}

.timeline-item:hover .timeline-card {
    transform: none;
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-right-color: #ffffff;
}

.timeline-item:hover .timeline-card h3 {
    color: #ffffff;
}

.timeline-item:hover .timeline-card p {
    color: rgba(255, 255, 255, 0.85);
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
}

.about-why {
    position: relative;
    min-height: 66.67vh;
    overflow: hidden;
    padding: 5rem 2rem;
}

.about-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-why-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-why-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: center;
}

.about-why-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
    text-align: left;
}

.about-why-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-why-left p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about-why-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-why-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.about-why-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-why-card {
    padding: 1.75rem;
    background: rgba(120, 120, 120, 0.35);
    backdrop-filter: blur(10px);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.about-why-card:hover {
    background: rgba(140, 140, 140, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.about-why-icon {
    width: 40px;
    height: 40px;
    margin: 0 0 1rem 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
}

.about-why-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.about-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.about-why-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.about-team {
    padding: 8rem 2rem;
    background: #ffffff;
}

.about-team .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-team .section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: none;
}

.about-team .section-header p {
    font-size: 0.875rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-sections {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-section {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.team-section-reverse {
    flex-direction: row-reverse;
}

.team-image-wrapper {
    width: 66.67%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.team-image-wrapper svg,
.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-section:hover .team-image-wrapper svg,
.team-section:hover .team-image-wrapper img {
    transform: scale(1.08);
}

.team-content {
    width: 50%;
    padding: 0;
}

.team-content-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.team-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.team-content p {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.about-cta {
    padding: 8rem 2rem;
    background: #f7f7f7;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.about-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-btn-primary {
    background: #000000;
    color: #ffffff;
}

.about-cta-btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.about-cta-btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.about-cta-btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.solutions-challenges {
    padding: 8rem 0;
    background: #ffffff;
}

.solutions-challenges-header {
    text-align: center;
    margin-bottom: 6rem;
}

.solutions-challenges-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.75rem;
}

.solutions-challenges-header p {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.challenges-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.challenge-item {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    overflow: hidden;
    align-items: stretch;
}

.challenge-item:nth-child(even) {
    flex-direction: row-reverse !important;
}

.challenge-image-wrapper {
    width: 50% !important;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    background: #f5f5f5;
    padding: 1.5rem;
    box-sizing: border-box;
}

.challenge-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-item:hover .challenge-image-wrapper img {
    transform: scale(1.08);
}

.challenge-content {
    width: 50% !important;
    max-width: none !important;
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    box-sizing: border-box;
}

.challenge-problem {
    margin-bottom: 2rem;
}

.problem-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.solution-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.challenge-problem p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.challenge-solution {
    padding-top: 0;
    border-top: none;
}

.challenge-solution h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.challenge-solution p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.solutions-reasons {
    padding: 8rem 2rem;
    background: #fafafa;
}

.solutions-reasons-header {
    text-align: left;
    margin: 0 auto 4rem;
    max-width: 1200px;
}

.solutions-reasons-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
}

.solutions-reasons-header p {
    font-size: 0.6875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reasons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.reason-item {
    padding: 3rem 2rem;
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #e5e5e5;
    border-bottom: none;
}

.reason-item:last-child {
    border-right: none;
}

.reason-item:first-child {
    border-top: none;
}

.reason-number {
    position: static;
    font-size: 2.5rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.reason-content {
    flex: 1;
    width: 100%;
}

.reason-content h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reason-content p {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.reason-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reason-content li {
    font-size: 0.875rem;
    color: #666666;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.reason-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    background: #999999;
    border-radius: 50%;
}

.reasons-cta {
    max-width: 1200px;
    margin: 5rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reasons-cta p {
    font-size: 1.75rem;
    color: #000000;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.reasons-btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 3rem;
    border-bottom: none;
    transition: all 0.3s ease;
    background: #000000;
}

.reasons-btn:hover {
    opacity: 0.9;
    background: #333333;
    transform: translateY(-2px);
}

.reasons-btn::after {
    content: none;
}

.solutions-private {
    padding: 8rem 2rem;
    background: #ffffff;
}

.solutions-private-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-private-header .private-desc {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.solutions-private-header p:first-child {
    font-size: 0.6875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solutions-private-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
}

.solutions-private-header .private-desc {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.8;
    max-width: 650px;
    margin: 0;
}

.private-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: none;
    border-bottom: none;
}

.private-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: transparent;
    position: relative;
    border-right: none;
    border-bottom: none;
}

.private-step::after {
    content: '';
    position: absolute;
    top: 54px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: #cccccc;
}

.private-step:last-child::after {
    display: none;
}

.private-step:last-child {
    border-right: none;
}

.private-step:first-child {
    border-top: none;
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    min-width: 48px;
    width: 48px;
    height: 48px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    font-family: inherit;
    transition: all 0.3s ease;
}

.private-step:hover .step-number {
    background: #000000;
    color: #ffffff;
}

.private-step-content {
    flex: 1;
    text-align: center;
}

.private-step h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.private-step p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.private-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.private-cta h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.private-btn {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 3rem;
    border-bottom: none;
    transition: all 0.3s ease;
    background: #000000;
}

.private-btn:hover {
    opacity: 0.9;
    background: #333333;
    transform: translateY(-2px);
}

.private-btn::after {
    content: none;
}

@media (min-width: 769px) and (max-width: 992px) {
    .solutions-hero-new {
        padding-top: 120px;
    }

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

    .solutions-hero-new h1 span {
        font-size: 2rem;
    }

    .solutions-foshan-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .foshan-image-wrapper {
        position: static;
        height: 400px;
    }

    .foshan-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .foshan-travel {
        flex-wrap: wrap;
        gap: 2rem;
    }

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

    .reason-item {
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .reason-item:nth-child(2n) {
        border-right: none;
    }

    .reason-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

    .private-step {
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .private-step:nth-child(3n) {
        border-right: none;
    }

    .private-step:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .challenge-content {
        padding: 3rem 3rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero-new {
        padding-top: 60px;
    }

    .solutions-hero-content {
        margin-left: 0;
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .solutions-hero-new h1 span {
        font-size: 1.75rem;
    }

    .solutions-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .solutions-foshan,
    .solutions-challenges,
    .solutions-reasons,
    .solutions-private {
        padding: 4rem 2rem;
    }

    .foshan-text h2,
    .solutions-challenges-header h2,
    .solutions-reasons-header h2,
    .solutions-private-header h2 {
        font-size: 1.75rem;
    }

    .foshan-highlights {
        gap: 1rem;
    }

    .foshan-highlight {
        padding: 1.5rem;
    }

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

    .private-step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .private-step:nth-child(2n) {
        border-right: none;
    }

    .private-step:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .private-step:last-child {
        border-right: 1px solid #e5e5e5;
    }

    .private-step:hover {
        transform: translateX(0);
    }

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

    .challenge-item,
    .challenge-item:nth-child(even) {
        flex-direction: column;
    }

    .challenge-image-wrapper {
        width: 100%;
    }

    .challenge-content {
        width: 100%;
        padding: 2rem 1.5rem 3rem;
    }

    .challenge-problem,
    .challenge-solution {
        padding: 1.75rem;
    }

    .reason-item {
        padding: 2.5rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

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

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

    .reasons-cta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.products-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.products-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: 0;
}

.products-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.products-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.products-hero-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.products-hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-hero-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.products-categories {
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: none;
}

.products-categories .container {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.product-category {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-collapse: collapse;
    overflow: hidden;
    outline: none !important;
    box-shadow: none !important;
}

.product-category-alt {
    flex-direction: row-reverse;
}

.category-number {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 1.5rem;
}

.category-content {
    flex: 0 0 50%;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    height: 400px;
}

.category-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.category-description {
    margin-bottom: 2rem;
}

.category-description p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.category-description p:last-child {
    margin-bottom: 0;
}

.category-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #666666;
    transform: translateX(5px);
}

.category-carousel {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    height: 400px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.carousel-btn {
    position: absolute;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000000;
    z-index: 100;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    left: 70px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

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

.carousel-dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 5px;
}

.products-manufacturing {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 2rem;
}

.products-manufacturing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.products-manufacturing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-manufacturing-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
    background: #ffffff;
}

.manufacturing-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 2rem;
}

.products-manufacturing-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-manufacturing-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.manufacturing-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.manufacturing-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.products-faq {
    padding: 8rem 2rem;
    background: #ffffff;
}

.products-faq .container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 1rem;
}

.products-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.products-faq-header p {
    font-size: 1rem;
    color: #666666;
}

.products-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.products-faq-column {
    display: flex;
    flex-direction: column;
}

.products-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.products-faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.products-faq-question span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.products-faq-question:hover span:first-child {
    color: #666666;
}

.products-faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: #999999;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.products-faq-question:hover .products-faq-icon,
.products-faq-question.active .products-faq-icon {
    color: #000000;
}

.products-faq-answer {
    padding: 0 0 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.products-faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

@media (min-width: 769px) and (max-width: 992px) {
    .product-category,
    .product-category-alt {
        flex-direction: column;
        text-align: center;
    }

    .category-content {
        flex: 0 0 100%;
        padding: 4rem 2rem;
    }

    .category-carousel {
        flex: 0 0 100%;
    }

    .products-hero-content h1,
    .products-manufacturing-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .products-hero,
    .products-manufacturing,
    .products-faq {
        padding: 4rem 2rem;
    }

    .products-hero-content h1,
    .products-manufacturing-content h2 {
        font-size: 1.75rem;
    }

    .products-hero-content p,
    .products-manufacturing-content p {
        font-size: 0.875rem;
    }

    .category-content {
        padding: 3rem 1.5rem;
    }

    .category-images {
        grid-template-columns: 1fr;
    }

    .category-content h2 {
        font-size: 1.5rem;
    }

    .products-faq-header h2 {
        font-size: 1.75rem;
    }
}

.sofas-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 120px;
}

.sofas-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/sofas.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sofas-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 700px;
    padding: 0 2rem;
}

.sofas-breadcrumb {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.sofas-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sofas-breadcrumb a:hover {
    color: #ffffff;
}

.sofas-breadcrumb span {
    margin: 0 0.75rem;
}

.sofas-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.sofas-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sofas-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.sofas-hero-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: none;
    padding: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.sofas-hero-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    transform: none;
    background: none;
}

/* Sofas Hero Text Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sofas-breadcrumb,
.sofas-hero-tag,
.sofas-hero-content h1,
.sofas-hero-content p,
.sofas-hero-btn {
    opacity: 0;
}

.sofas-breadcrumb.sofas-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.sofas-hero-tag.sofas-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.sofas-hero-content h1.sofas-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.sofas-hero-content p.sofas-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.sofas-hero-btn.sofas-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

.sofas-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.sofas-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.sofas-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.sofas-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.sofas-collection-header p a,
.quote-modal-trigger {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 0;
}

.sofas-collection-header p a:hover {
    text-decoration: underline;
}

.sofas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.sofa-item {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sofa-item:hover {
}

.sofa-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.sofa-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sofa-item:hover .sofa-image-wrapper img {
    transform: scale(1.03);
}

.sofa-info {
    text-align: center;
    padding: 0;
}

.sofa-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.sofa-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sofa-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.sofa-link:hover {
    color: #666666;
}

.sofas-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.sofas-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.sofas-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.sofas-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.sofas-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.sofas-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}

.sofas-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}

.sofas-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}

.sofas-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.sofas-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}

.sofas-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sofas-showroom-banner-btn:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .sofas-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sofas-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

/* armchairs showroom banner */
.armchairs-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}
.armchairs-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.armchairs-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}
.armchairs-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}
.armchairs-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}
.armchairs-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.armchairs-showroom-banner-btn:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .armchairs-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .armchairs-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

/* beds showroom banner */
.beds-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}
.beds-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.beds-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}
.beds-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}
.beds-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}
.beds-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.beds-showroom-banner-btn:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .beds-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .beds-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

/* coffee-tables showroom banner */
.coffee-tables-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}
.coffee-tables-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.coffee-tables-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}
.coffee-tables-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}
.coffee-tables-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}
.coffee-tables-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.coffee-tables-showroom-banner-btn:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .coffee-tables-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .coffee-tables-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

/* dining showroom banner */
.dining-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}
.dining-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.dining-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}
.dining-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}
.dining-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}
.dining-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.dining-showroom-banner-btn:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .dining-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .dining-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

/* mattresses showroom banner */
.mattresses-showroom-banner {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0;
}
.mattresses-showroom-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}
.mattresses-showroom-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 1rem;
}
.mattresses-showroom-banner-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}
.mattresses-showroom-banner-left p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
    max-width: 600px;
}
.mattresses-showroom-banner-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.mattresses-showroom-banner-btn:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .mattresses-showroom-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mattresses-showroom-banner-left h2 {
        font-size: 1.75rem;
    }
}

.sofas-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.sofas-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sofas-features-image {
    width: 100%;
    overflow: hidden;
}

.sofas-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.sofas-features:hover .sofas-features-image img {
    transform: scale(1.08);
}

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

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.1) translateY(-2%);
    }
}

.sofas-features-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 1.5rem;
}

.sofas-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sofas-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.sofas-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.sofas-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.sofas-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.sofas-factory {
    padding: 6rem 0;
}

.sofas-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.sofas-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sofas-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.sofas-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.sofas-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.sofas-factory-scroll:hover .sofas-factory-track {
    animation-play-state: paused;
}

.sofas-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.sofas-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.sofas-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.sofas-cta {
    padding: 8rem 0;
    background: url('./images/cta/sofas.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.sofas-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.sofas-cta-content {
    position: relative;
    z-index: 1;
}

.sofas-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.sofas-cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sofas-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #000000;
}

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

@media (min-width: 769px) and (max-width: 992px) {
    .sofas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .sofas-features-content {
        padding: 4rem 3rem;
    }

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

    .sofas-hero-content h1,
    .sofas-collection-header h2,
    .sofas-features-header h2,
    .sofas-factory-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .sofas-grid {
        grid-template-columns: 1fr;
    }

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

    .sofas-features-content {
        padding: 3rem 2rem;
    }

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

    .sofas-collection-footer {
        flex-direction: column;
        align-items: center;
    }
}

.armchairs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 120px;
}

.armchairs-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/armchairs.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.armchairs-hero-bg::before {
    display: none;
}

.armchairs-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 700px;
    padding: 0 2rem;
}

.armchairs-hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.armchairs-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.armchairs-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.armchairs-hero-scroll {
    display: none;
}

.armchairs-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.armchairs-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.armchairs-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.armchairs-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.armchairs-collection-header p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.armchairs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.armchair-item {
    background: transparent;
    overflow: hidden;
}

.armchair-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.armchair-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.armchair-item:hover .armchair-image-wrapper img {
    transform: scale(1.03);
}

.armchair-info {
    text-align: center;
    padding: 0;
}

.armchair-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.armchair-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.armchair-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.armchair-link:hover {
    color: #666666;
}

.armchairs-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.armchairs-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.armchairs-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.armchairs-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.armchairs-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.armchairs-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.armchairs-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.armchairs-features-image {
    width: 100%;
    overflow: hidden;
}

.armchairs-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.armchairs-features:hover .armchairs-features-image img {
    transform: scale(1.08);
}

.armchairs-features-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.armchairs-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.armchairs-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.armchairs-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.armchairs-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.armchairs-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.armchairs-factory {
    padding: 6rem 0;
}

.armchairs-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.armchairs-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.armchairs-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.armchairs-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.armchairs-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.armchairs-factory-scroll:hover .armchairs-factory-track {
    animation-play-state: paused;
}

.armchairs-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.armchairs-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.armchairs-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.armchairs-cta {
    padding: 8rem 0;
    background: url('./images/cta/sofas.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.armchairs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.armchairs-cta-content {
    position: relative;
    z-index: 1;
}

.armchairs-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.armchairs-cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.armchairs-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #000000;
}

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

@media (min-width: 769px) and (max-width: 992px) {
    .armchairs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .armchairs-hero-content h1,
    .armchairs-collection-header h2,
    .armchairs-features-header h2,
    .armchairs-factory-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .armchairs-grid {
        grid-template-columns: 1fr;
    }

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

    .armchairs-collection-footer {
        flex-direction: column;
        align-items: center;
    }
}

.coffee-tables-page .armchairs-hero-bg {
    background: url('https://images.unsplash.com/photo-1585435912169-601242565b0c?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.beds-page .armchairs-hero-bg {
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.dining-page .armchairs-hero-bg {
    background: url('https://images.unsplash.com/photo-1517462705767-c639042777db?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.factory-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.factory-hero-bg {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: 0;
    overflow: hidden;
}

.factory-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.factory-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 720px;
    margin-left: 18%;
    text-align: left;
}

.factory-hero-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.factory-hero-tag .tag-line {
    display: none;
}

.factory-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    text-align: left;
}

.factory-hero-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 2.5rem;
    text-align: left;
}

.factory-hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.factory-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.8125rem;
}

.factory-hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.factory-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.8125rem;
}

.factory-hero-btn-secondary:hover {
    opacity: 0.6;
}

/* Factory Hero Text Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.factory-hero-tag,
.factory-hero-content h1,
.factory-hero-content p,
.factory-hero-buttons {
    opacity: 0;
}

.factory-hero-tag.hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
}

.factory-hero-content h1.hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.factory-hero-content p.hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.55s;
}

.factory-hero-buttons.hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.75s;
}

.factory-categories {
    padding: 0;
    background: #ffffff;
}

.factory-categories-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
}

.factory-categories-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center;
}

.factory-categories-slide {
    flex-shrink: 0;
    width: 75%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

.factory-categories-slide.active {
    opacity: 1;
    transform: scale(1);
}

.factory-categories-slide img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .factory-hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 60px;
    }

    .factory-hero-content {
        padding: 4rem 1.5rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .factory-hero-content h1 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .factory-hero-content p {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .factory-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .factory-hero-btn-primary,
    .factory-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 0.6875rem;
    }
}

.manufacturing-section {
    padding: 5rem 2rem;
    background: #f7f7f7;
}

.manufacturing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.manufacturing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.manufacturing-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.manufacturing-header p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.manufacturing-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    height: 430px;
    width: 100%;
}

.manufacturing-img-side {
    flex: 1 1 0;
    overflow: hidden;
    height: 100%;
    min-width: 0;
}

.manufacturing-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manufacturing-img-center {
    flex: 2 1 0;
    overflow: hidden;
    height: 100%;
    min-width: 0;
}

.manufacturing-img-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manufacturing-features {
    margin-bottom: 3rem;
}

.manufacturing-feature {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.manufacturing-feature:last-child {
    border-bottom: none;
}

.feature-number {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #333333;
    width: 60px;
}

.manufacturing-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
}

.manufacturing-feature p {
    font-size: 0.8125rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.manufacturing-footer {
    text-align: center;
    padding-top: 2rem;
}

.manufacturing-btn-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #111111;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #111111;
    transition: opacity 0.3s ease;
}

.manufacturing-btn-link:hover {
    opacity: 0.6;
}

.workflow-section {
    padding: 5rem 0;
    background: #ffffff;
}

.workflow-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-header h2 {
    font-size: 1.875rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.workflow-subtitle {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #666666;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.workflow-steps {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
    margin-bottom: 2rem;
}

.workflow-step-image {
    margin-bottom: 3rem;
    overflow: hidden;
}

.workflow-step-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.workflow-step-number {
    display: block;
    font-size: 6rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.workflow-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.workflow-step p {
    font-size: 0.8125rem;
    color: #666666;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.workflow-footer {
    text-align: center;
    padding-top: 1rem;
}

.workflow-btn-link {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #111111;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #111111;
    transition: opacity 0.3s ease;
}

.workflow-btn-link:hover {
    opacity: 0.6;
}

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

    .workflow-header {
        margin-bottom: 2rem;
    }

    .workflow-header h2 {
        font-size: 1.375rem;
    }

    .workflow-subtitle {
        font-size: 0.625rem;
        letter-spacing: 3px;
    }

    .workflow-step-image {
        margin-bottom: 2rem;
    }

    .workflow-step {
        margin-bottom: 2rem;
    }

    .workflow-step-number {
        font-size: 4rem;
    }

    .workflow-step h3 {
        font-size: 1rem;
    }

    .workflow-step p {
        font-size: 0.75rem;
        line-height: 1.8;
    }
}

.zero-defect-section {
    padding: 5rem 0;
    background: #ffffff;
}

.zero-defect-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.zero-defect-header h2 {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    color: #111111;
    font-family: 'Playfair Display', Georgia, serif;
}

.zero-defect-header p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.zero-defect-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.zero-defect-stat {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.zero-defect-number {
    font-size: 3.75rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: #111111;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 0.5rem;
}

.zero-defect-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666666;
}

@media (max-width: 768px) {
    .zero-defect-section {
        padding: 3rem 0;
    }

    .zero-defect-header {
        margin-bottom: 2rem;
    }

    .zero-defect-header h2 {
        font-size: 1.5rem;
    }

    .zero-defect-header p {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .zero-defect-stat {
        padding: 1.75rem 1rem;
    }

    .zero-defect-number {
        font-size: 2.5rem;
    }

    .zero-defect-label {
        font-size: 0.625rem;
        letter-spacing: 2px;
    }
}

.ready-start-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.ready-start-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ready-start-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: #111111;
    font-family: 'Playfair Display', Georgia, serif;
}

.ready-start-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ready-start-btn {
    display: block;
    width: 100%;
    padding: 1.75rem 2rem;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ready-start-btn:hover {
    background: #333333;
}

@media (max-width: 768px) {
    .ready-start-section {
        padding: 3rem 0;
    }

    .ready-start-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ready-start-content p {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
    }

    .ready-start-btn {
        padding: 1.25rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .manufacturing-section {
        padding: 3rem 1.5rem;
    }

    .manufacturing-header h2 {
        font-size: 1.375rem;
    }

    .manufacturing-images {
        flex-direction: column;
        height: auto;
    }

    .manufacturing-img-side,
    .manufacturing-img-center {
        flex: none;
        height: 300px;
    }
}

.mattresses-page .armchairs-hero-bg {
    background: url('https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.showroom-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 120px;
}

.showroom-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/hero/hero-showroom.jpg') center/cover no-repeat;
    animation: kenBurns 20s ease-out infinite;
}

.showroom-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.showroom-hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.showroom-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-hero-content p strong {
    font-weight: 700;
}

.showroom-hero-btn {
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    transition: opacity 0.3s ease;
    background: transparent;
}

.showroom-hero-btn:hover {
    opacity: 0.6;
}

/* Showroom Hero Text Animation */
@keyframes fadeInUpShowroom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showroom-hero-tag.hero-anim-item,
.showroom-hero-content h1.hero-anim-item,
.showroom-hero-content p.hero-anim-item,
.showroom-hero-btn.hero-anim-item {
    opacity: 0;
}

.showroom-hero-tag.hero-anim-item.hero-ready,
.showroom-hero-content h1.hero-anim-item.hero-ready,
.showroom-hero-content p.hero-anim-item.hero-ready,
.showroom-hero-btn.hero-anim-item.hero-ready {
    animation: fadeInUpShowroom 0.8s ease-out forwards;
}

.showroom-hero-tag.hero-anim-item.hero-ready {
    animation-delay: 0.15s;
}

.showroom-hero-content h1.hero-anim-item.hero-ready {
    animation-delay: 0.3s;
}

.showroom-hero-content p.hero-anim-item.hero-ready {
    animation-delay: 0.45s;
}

.showroom-hero-btn.hero-anim-item.hero-ready {
    animation-delay: 0.6s;
}

.showroom-authenticity {
    display: flex;
    min-height: 600px;
}

.showroom-authenticity-image {
    flex: 0 0 50%;
    overflow: hidden;
}

.showroom-authenticity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-out infinite;
}

.showroom-authenticity-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

.showroom-authenticity-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #999999;
}

.showroom-authenticity-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.showroom-authenticity-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.showroom-authenticity-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.showroom-authenticity-stat {
    display: flex;
    flex-direction: column;
}

.showroom-authenticity-stat span:first-child {
    font-size: 1.5rem;
    font-weight: 800;
}

.showroom-authenticity-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-top: 0.5rem;
}

.showroom-authenticity-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
    align-self: flex-start;
}

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

.showroom-zones {
    padding: 0 0 5rem;
    background: #f8f8f8;
}

.showroom-zones-header {
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.showroom-zones-tag {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 1.25rem;
    color: #000000;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.showroom-zones-header h2 {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    color: #666666;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.showroom-zone-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.showroom-zone-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.showroom-zone-image {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.showroom-zone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.showroom-zone-item:hover .showroom-zone-image img {
    transform: scale(1.06);
}

.showroom-zone-info {
    padding: 1.75rem 1.75rem 2rem;
    background: #ffffff;
    position: relative;
}

.showroom-zone-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    color: #999999;
}

.showroom-zone-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #000000;
}

.showroom-zone-info p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .showroom-zones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .showroom-zones-header {
        padding: 3rem 1rem 2rem;
    }

    .showroom-zones-tag {
        font-size: 2rem;
    }

    .showroom-zone-info {
        padding: 1rem 1rem 1.25rem;
    }
}



.showroom-factory {
    background: #ffffff;
}

.showroom-factory-inner {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    gap: 5rem;
    align-items: center;
}

.showroom-factory-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background: #ffffff;
    color: #000000;
    max-width: 560px;
    margin: 0 auto;
}

.showroom-factory-tag {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    color: #999999;
    display: flex;
    align-items: center;
}

.showroom-factory-tag::before {
    content: '';
    width: 3.5rem;
    height: 1px;
    background: #999999;
    margin-right: 1.25rem;
}

.showroom-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.showroom-factory-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.showroom-factory-stats {
    display: flex;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.showroom-factory-stat {
    display: flex;
    flex-direction: column;
}

.showroom-factory-stat span:first-child {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1;
}

.showroom-factory-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-top: 0.5rem;
}

.showroom-factory-btn {
    display: inline-block;
    padding: 1.15rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    align-self: flex-start;
}

.showroom-factory-btn:hover {
    background: #ffffff;
    color: #000000;
}

.showroom-factory-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.showroom-phone-frame {
    position: relative;
    background: #000000;
    border-radius: 3rem;
    padding: 0.7rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.showroom-phone-screen {
    width: 280px;
    height: 580px;
    background: #ffffff;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.showroom-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background: #000000;
    border-radius: 0 0 1.75rem 1.75rem;
    z-index: 10;
}

.showroom-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.showroom-phone-icons {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    z-index: 15;
}

.showroom-phone-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.showroom-phone-icon:hover {
    background: rgba(0, 0, 0, 0.6);
}

.showroom-phone-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.showroom-phone-icon-label {
    font-size: 14px;
    color: #ffffff;
    margin-top: 4px;
    text-align: center;
}

.showroom-phone-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    margin-bottom: 12px;
}

.showroom-phone-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-phone-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.showroom-phone-play-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.showroom-phone-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    margin-left: 5px;
}

.showroom-phone-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #ffffff;
    z-index: 8;
}

.showroom-phone-username {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.showroom-phone-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #ffffff;
}

.showroom-phone-tags {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.showroom-phone-tags span {
    margin-right: 6px;
}

.showroom-phone-audio {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.showroom-phone-audio svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.showroom-phone-music-icon {
    animation: spin 3s linear infinite;
}

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

.showroom-highlights {
    padding: 6rem 0 5rem;
    background: #ffffff;
}

.showroom-highlights-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 2rem 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.showroom-highlights-left {
    margin-bottom: 0;
}

.showroom-highlights-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showroom-highlights-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #999999;
}

.showroom-highlights-left h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.showroom-highlights-stats {
    display: flex;
    gap: 4rem;
    margin-top: 0;
    justify-content: flex-end;
    align-items: flex-end;
}

.showroom-highlights-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showroom-highlights-number {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.showroom-highlights-number span {
    font-size: 0.875rem;
    font-weight: 600;
    vertical-align: super;
    position: relative;
    top: -0.3em;
}

.showroom-highlights-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999;
    margin-top: 0.5rem;
}

.showroom-highlights-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.showroom-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.showroom-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showroom-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    flex-shrink: 0;
}

.showroom-carousel-slide img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

#homeShowroomCarousel .showroom-carousel-track {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#homeShowroomCarousel .showroom-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1600 / 1000;
}

#homeShowroomCarousel .showroom-carousel-slide img {
    height: 100% !important;
    width: 100% !important;
    aspect-ratio: 1600 / 1000 !important;
    object-fit: cover !important;
}

.showroom-carousel-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.showroom-carousel-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.showroom-carousel-link:hover {
    background: #ffffff;
    color: #000000;
}

.showroom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.showroom-carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.showroom-carousel-btn.prev {
    left: 20px;
}

.showroom-carousel-btn.next {
    right: 20px;
}

.showroom-carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: #111111;
}

.showroom-thumbnails {
    margin-top: 2.5rem;
    overflow: hidden;
}

.showroom-thumbnails-track {
    display: flex;
    gap: 0.875rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #cccccc #f0f0f0;
}

.showroom-thumbnails-track::-webkit-scrollbar {
    height: 4px;
}

.showroom-thumbnails-track::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.showroom-thumbnails-track::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 2px;
}

.showroom-thumbnail {
    flex: 0 0 auto;
    width: 150px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.showroom-thumbnail:hover {
    opacity: 0.8;
}

.showroom-thumbnail.active {
    opacity: 1;
    border-color: #111111;
}

.showroom-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   Coffee Tables Page Styles
   ============================================ */

.coffee-tables-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.coffee-tables-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/coffee-tables.jpg');
    background-size: cover;
    background-position: center;
}

.coffee-tables-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.coffee-tables-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 700px;
}

.coffee-tables-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.coffee-tables-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.coffee-tables-breadcrumb a:hover {
    opacity: 0.7;
}

.coffee-tables-breadcrumb span {
    margin: 0 0.75rem;
}

.coffee-tables-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.coffee-tables-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coffee-tables-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.coffee-tables-hero-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: none;
    padding: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.coffee-tables-hero-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    transform: none;
    background: none;
}

.coffee-tables-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.coffee-tables-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.coffee-tables-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.coffee-tables-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.coffee-tables-collection-header p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.coffee-tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.coffee-table-item {
    background: transparent;
    overflow: hidden;
}

.coffee-table-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.coffee-table-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.coffee-table-item:hover .coffee-table-image-wrapper img {
    transform: scale(1.03);
}

.coffee-table-info {
    text-align: center;
    padding: 0;
}

.coffee-table-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.coffee-table-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.coffee-table-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.coffee-table-link:hover {
    color: #666666;
}

.coffee-tables-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.coffee-tables-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.coffee-tables-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.coffee-tables-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.coffee-tables-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.coffee-tables-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.coffee-tables-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coffee-tables-features-image {
    width: 100%;
    overflow: hidden;
}

.coffee-tables-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.coffee-tables-features:hover .coffee-tables-features-image img {
    transform: scale(1.08);
}

.coffee-tables-features-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.coffee-tables-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coffee-tables-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.coffee-tables-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.coffee-tables-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.coffee-tables-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.coffee-tables-factory {
    padding: 6rem 0;
}

.coffee-tables-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.coffee-tables-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.coffee-tables-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.coffee-tables-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.coffee-tables-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.coffee-tables-factory-scroll:hover .coffee-tables-factory-track {
    animation-play-state: paused;
}

.coffee-tables-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.coffee-tables-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.coffee-tables-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.coffee-tables-cta {
    padding: 8rem 0;
    background: url('./images/cta/coffee-tables-cta.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.coffee-tables-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.coffee-tables-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.coffee-tables-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.coffee-tables-cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coffee-tables-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.coffee-tables-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
    .coffee-tables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .coffee-tables-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Beds Page Styles
   ============================================ */

.beds-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.beds-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/beds.jpg');
    background-size: cover;
    background-position: center;
}

.beds-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.beds-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 700px;
}

.beds-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.beds-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.beds-breadcrumb a:hover {
    opacity: 0.7;
}

.beds-breadcrumb span {
    margin: 0 0.75rem;
}

.beds-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.beds-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.beds-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.beds-hero-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: none;
    padding: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.beds-hero-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    transform: none;
    background: none;
}

.beds-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.beds-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.beds-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.beds-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.beds-collection-header p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.beds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.bed-item {
    background: transparent;
    overflow: hidden;
}

.bed-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bed-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bed-item:hover .bed-image-wrapper img {
    transform: scale(1.03);
}

.bed-info {
    text-align: center;
    padding: 0;
}

.bed-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.bed-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bed-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.bed-link:hover {
    color: #666666;
}

.beds-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.beds-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.beds-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.beds-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.beds-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.beds-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.beds-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beds-features-image {
    width: 100%;
    overflow: hidden;
}

.beds-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.beds-features:hover .beds-features-image img {
    transform: scale(1.08);
}

.beds-features-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.beds-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.beds-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.beds-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.beds-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.beds-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.beds-factory {
    padding: 6rem 0;
}

.beds-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.beds-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.beds-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.beds-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.beds-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.beds-factory-scroll:hover .beds-factory-track {
    animation-play-state: paused;
}

.beds-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.beds-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.beds-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.beds-cta {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.beds-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.beds-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.beds-cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.beds-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.beds-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
    .beds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .beds-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Dining Page Styles
   ============================================ */

.dining-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dining-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/dining.jpg');
    background-size: cover;
    background-position: center;
}

.dining-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.dining-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 700px;
}

.dining-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.dining-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.dining-breadcrumb a:hover {
    opacity: 0.7;
}

.dining-breadcrumb span {
    margin: 0 0.75rem;
}

.dining-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.dining-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dining-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.dining-hero-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: none;
    padding: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.dining-hero-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    transform: none;
    background: none;
}

.dining-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.dining-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.dining-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.dining-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.dining-collection-header p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.dining-item {
    background: transparent;
    overflow: hidden;
}

.dining-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.dining-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dining-item:hover .dining-image-wrapper img {
    transform: scale(1.03);
}

.dining-info {
    text-align: center;
    padding: 0;
}

.dining-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.dining-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dining-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.dining-link:hover {
    color: #666666;
}

.dining-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.dining-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.dining-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.dining-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.dining-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.dining-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.dining-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dining-features-image {
    width: 100%;
    overflow: hidden;
}

.dining-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.dining-features:hover .dining-features-image img {
    transform: scale(1.08);
}

.dining-features-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.dining-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dining-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.dining-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.dining-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.dining-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.dining-factory {
    padding: 6rem 0;
}

.dining-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.dining-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.dining-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.dining-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.dining-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.dining-factory-scroll:hover .dining-factory-track {
    animation-play-state: paused;
}

.dining-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.dining-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.dining-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.dining-cta {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.dining-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.dining-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.dining-cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.dining-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dining-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
    .dining-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dining-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Mattresses Page Styles
   ============================================ */

.mattresses-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mattresses-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero/mattresses.jpg');
    background-size: cover;
    background-position: center;
}

.mattresses-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.mattresses-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 700px;
}

.mattresses-breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.mattresses-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mattresses-breadcrumb a:hover {
    opacity: 0.7;
}

.mattresses-breadcrumb span {
    margin: 0 0.75rem;
}

.mattresses-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.mattresses-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mattresses-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.mattresses-hero-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    background: none;
    padding: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
}

.mattresses-hero-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    transform: none;
    background: none;
}

.mattresses-collection {
    padding: 6rem 0;
    background: #ffffff;
}

.mattresses-collection-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.mattresses-collection-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.mattresses-collection-header p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
}

.mattresses-collection-header p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.mattresses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mattress-item {
    background: transparent;
    overflow: hidden;
}

.mattress-image-wrapper {
    overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mattress-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mattress-item:hover .mattress-image-wrapper img {
    transform: scale(1.03);
}

.mattress-info {
    text-align: center;
    padding: 0;
}

.mattress-model {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000000;
}

.mattress-type {
    font-size: 0.75rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.mattress-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mattress-link:hover {
    color: #666666;
}

.mattresses-collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.mattresses-collection-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid #000000;
    transition: all 0.3s ease;
}

.mattresses-collection-btn:hover {
    background: #000000;
    color: #ffffff;
}

.mattresses-collection-btn-secondary {
    background: #000000;
    color: #ffffff;
    border: 1.5px solid #000000;
    text-decoration: none;
}

.mattresses-collection-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.mattresses-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
}

.mattresses-features-content {
    padding: 6rem 5rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mattresses-features-image {
    width: 100%;
    overflow: hidden;
}

.mattresses-features-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
    animation: fadeInUp 1s ease forwards, kenBurns 20s ease-in-out infinite alternate;
}

.mattresses-features:hover .mattresses-features-image img {
    transform: scale(1.08);
}

.mattresses-features-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.mattresses-features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mattresses-features-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.mattresses-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}

.mattresses-feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.mattresses-feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.mattresses-factory {
    padding: 6rem 0;
}

.mattresses-factory-content {
    text-align: center;
    margin-bottom: 3rem;
}

.mattresses-factory-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mattresses-factory-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
}

.mattresses-factory-scroll {
    overflow: hidden;
    white-space: nowrap;
}

.mattresses-factory-track {
    display: inline-flex;
    animation: scrollLeft 40s linear infinite;
}

.mattresses-factory-scroll:hover .mattresses-factory-track {
    animation-play-state: paused;
}

.mattresses-factory-item {
    flex: 0 0 auto;
    margin-right: 1px;
    overflow: hidden;
}

.mattresses-factory-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.mattresses-factory-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.mattresses-cta {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.mattresses-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.mattresses-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mattresses-cta-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.mattresses-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mattresses-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
    .mattresses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mattresses-grid {
        grid-template-columns: 1fr;
    }
}

.showroom-carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.showroom-carousel-btn i {
    font-size: 1rem;
}

.showroom-carousel-prev {
    left: 20px;
}

.showroom-carousel-next {
    right: 20px;
}

.showroom-carousel-thumbs {
    margin-top: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #cccccc #f0f0f0;
}

.showroom-carousel-thumbs::-webkit-scrollbar {
    height: 6px;
}

.showroom-carousel-thumbs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.showroom-carousel-thumbs::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 3px;
}

.showroom-carousel-thumbs-track {
    display: flex;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.showroom-carousel-thumb {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.showroom-carousel-thumb:hover {
    opacity: 1;
}

.showroom-carousel-thumb.active {
    border-color: #111111;
    opacity: 1;
}

.showroom-carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-concierge {
    padding: 6rem 0;
    background: #f7f7f7;
}

.showroom-concierge-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showroom-concierge-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.showroom-concierge-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
}

.showroom-concierge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.showroom-concierge-item {
    padding: 2.5rem;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
}

.showroom-concierge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showroom-concierge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    font-size: 1.5rem;
}

.showroom-concierge-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.showroom-concierge-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
}

.showroom-booking {
    padding: 6rem 0;
    background: #ffffff;
}

.showroom-booking-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.showroom-booking-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.showroom-booking-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.showroom-booking-form {
    text-align: left;
}

.showroom-form-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    background: #f9f9f9;
}

.showroom-captcha-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.showroom-captcha-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.showroom-captcha-checkmark {
    position: relative;
    width: 28px;
    height: 28px;
    border: 2px solid #cccccc;
    background: #ffffff;
    margin-right: 0.75rem;
}

.showroom-captcha-checkbox input:checked ~ .showroom-captcha-checkmark {
    background: #ffffff;
    border-color: #000000;
}

.showroom-captcha-checkbox input:checked ~ .showroom-captcha-checkmark::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 8px;
    height: 14px;
    border: solid #00aa00;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.showroom-form-captcha.verified .showroom-captcha-text {
    color: #00aa00;
    font-weight: 600;
}

.showroom-form-captcha.verified .showroom-captcha-checkmark {
    border-color: #00aa00;
}

.showroom-form-captcha.verified .showroom-captcha-checkmark::after {
    border-color: #00aa00;
}

.showroom-captcha-cloud-icon {
    display: none;
    width: 40px;
    height: 32px;
    margin-bottom: 2px;
}

.showroom-form-captcha.verified .showroom-captcha-cloud-icon {
    display: block;
}

.showroom-captcha-cloud {
    display: none;
}

.showroom-captcha-spinner {
    display: none;
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
    border: 2px solid #e0e0e0;
    border-top-color: #00aa00;
    border-radius: 50%;
    animation: showroomCaptchaSpin 1s linear infinite;
}

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

.showroom-form-captcha.verifying .showroom-captcha-checkmark {
    display: none;
}

.showroom-form-captcha.verifying .showroom-captcha-spinner {
    display: inline-block;
}

.showroom-form-captcha.verifying .showroom-captcha-text {
    color: #666666;
}

.showroom-captcha-text {
    font-size: 0.9375rem;
    color: #333333;
    flex: 1;
}

.showroom-captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.6875rem;
    color: #999999;
}

.showroom-captcha-logo span {
    font-weight: 700;
    color: #666666;
    letter-spacing: 0.05em;
}

.showroom-captcha-links {
    margin-top: 2px;
}

.showroom-captcha-links a {
    color: #999999;
    text-decoration: none;
}

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

.showroom-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 0.75rem;
}

.showroom-booking-form input,
.showroom-booking-form select,
.showroom-booking-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.showroom-booking-form input:focus,
.showroom-booking-form select:focus,
.showroom-booking-form textarea:focus {
    outline: none;
    border-color: #000000;
}

.showroom-booking-form textarea {
    resize: vertical;
}

.showroom-booking-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (min-width: 769px) and (max-width: 992px) {
    .showroom-authenticity {
        flex-direction: column;
    }

    .showroom-authenticity-image,
    .showroom-authenticity-content {
        flex: 1;
    }

    .showroom-stats-content,
    .showroom-highlights-stats {
        gap: 3rem;
    }

    .showroom-highlights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .showroom-highlights-left h2 {
        font-size: 2rem;
    }

    .showroom-highlights-stats {
        justify-content: flex-start;
        gap: 3rem;
    }

    .showroom-highlights-number {
        font-size: 2rem;
    }

    .showroom-carousel-slide img {
        height: 525px;
    }

    .showroom-zone-item {
        flex-direction: column;
    }

    .showroom-zone-reverse {
        flex-direction: column;
    }

    .showroom-zone-image,
    .showroom-zone-info {
        flex: 1;
    }

    .showroom-zones-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .showroom-factory-inner {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .showroom-factory-content,
    .showroom-factory-image {
        flex: 1;
        max-width: 100%;
    }

    .showroom-factory-image {
        justify-content: center;
    }

    .showroom-concierge-grid {
        grid-template-columns: 1fr;
    }

    .showroom-form-row {
        flex-direction: column;
    }

    .showroom-hero-content h1,
    .showroom-authenticity-content h2,
    .showroom-factory-content h2,
    .showroom-highlights-left h2,
    .showroom-concierge-header h2,
    .showroom-booking-content h2 {
        font-size: 1.75rem;
    }
}

.blog-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #ffffff;
    overflow: hidden;
    padding-top: 120px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1920&h=800&fit=crop') center/cover no-repeat;
    z-index: 0;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.blog-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.blog-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
}

/* Blog Hero Text Animation */
@keyframes fadeInUpBlog {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-hero-tag.hero-anim-item,
.blog-hero-content h1.hero-anim-item,
.blog-hero-content p.hero-anim-item {
    opacity: 0;
}

.blog-hero-tag.hero-anim-item.hero-ready,
.blog-hero-content h1.hero-anim-item.hero-ready,
.blog-hero-content p.hero-anim-item.hero-ready {
    animation: fadeInUpBlog 0.8s ease-out forwards;
}

.blog-hero-tag.hero-anim-item.hero-ready {
    animation-delay: 0.15s;
}

.blog-hero-content h1.hero-anim-item.hero-ready {
    animation-delay: 0.3s;
}

.blog-hero-content p.hero-anim-item.hero-ready {
    animation-delay: 0.45s;
}

.blog-list {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.blog-list-content {
    max-width: 1000px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
}

.blog-post {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 2.5rem;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-post-content h2 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h2 a:hover {
    color: #666666;
}

.blog-post-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.75rem;
}

.blog-post-readmore {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: #000000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-post-readmore:hover {
    background: #333333;
    transform: translateY(-2px);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
}

.blog-pagination-prev,
.blog-pagination-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-pagination-prev {
    background: #f0f0f0;
    color: #999999;
}

.blog-pagination-prev:hover {
    background: #e0e0e0;
}

.blog-pagination-next {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.blog-pagination-next:hover {
    background: #000000;
    color: #ffffff;
}

.pagination-arrow {
    font-size: 0.875rem;
    line-height: 1;
}

.blog-pagination-info {
    font-size: 1rem;
    color: #666666;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.blog-pagination-info strong {
    color: #000000;
    font-weight: 700;
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.25rem;
    }

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

    .blog-post-image img {
        height: 220px;
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.25rem;
    }

    .blog-list {
        padding: 4rem 0;
    }
}

.blog-cta {
    padding: 8rem 0;
    background: url('https://images.unsplash.com/photo-1532372320572-cda25653a26d?w=1920&h=800&fit=crop') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.blog-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.blog-cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* ============================================
   Product Pages Hero Animations (fadeInUp)
   ============================================ */

/* Armchairs Page */
.armchairs-hero-tag,
.armchairs-hero-content h1,
.armchairs-hero-content p {
    opacity: 0;
}

.armchairs-hero-tag.armchairs-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.armchairs-hero-content h1.armchairs-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.armchairs-hero-content p.armchairs-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Coffee Tables Page */
.coffee-tables-breadcrumb,
.coffee-tables-hero-tag,
.coffee-tables-hero-content h1,
.coffee-tables-hero-content p,
.coffee-tables-hero-btn {
    opacity: 0;
}

.coffee-tables-breadcrumb.coffee-tables-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.coffee-tables-hero-tag.coffee-tables-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.coffee-tables-hero-content h1.coffee-tables-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.coffee-tables-hero-content p.coffee-tables-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.coffee-tables-hero-btn.coffee-tables-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

/* Beds Page */
.beds-breadcrumb,
.beds-hero-tag,
.beds-hero-content h1,
.beds-hero-content p,
.beds-hero-btn {
    opacity: 0;
}

.beds-breadcrumb.beds-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.beds-hero-tag.beds-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.beds-hero-content h1.beds-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.beds-hero-content p.beds-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.beds-hero-btn.beds-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

/* Dining Page */
.dining-breadcrumb,
.dining-hero-tag,
.dining-hero-content h1,
.dining-hero-content p,
.dining-hero-btn {
    opacity: 0;
}

.dining-breadcrumb.dining-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.dining-hero-tag.dining-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.dining-hero-content h1.dining-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.dining-hero-content p.dining-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.dining-hero-btn.dining-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

/* Mattresses Page */
.mattresses-breadcrumb,
.mattresses-hero-tag,
.mattresses-hero-content h1,
.mattresses-hero-content p,
.mattresses-hero-btn {
    opacity: 0;
}

.mattresses-breadcrumb.mattresses-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

.mattresses-hero-tag.mattresses-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.mattresses-hero-content h1.mattresses-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.mattresses-hero-content p.mattresses-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.mattresses-hero-btn.mattresses-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.65s;
}

.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #ffffff;
    overflow: hidden;
    padding-top: 120px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&h=800&fit=crop') center/cover no-repeat;
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 6rem 5rem;
    max-width: 800px;
}

.contact-hero-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    opacity: 0;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
}

.contact-hero-tag.contact-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.contact-hero-content h1.contact-hero-ready {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.contact-hero-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main {
    padding: 8rem 0;
    background: #ffffff;
}

.contact-row {
    display: flex;
    gap: 4rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    flex: 0 0 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.contact-info-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}

.contact-info-content p a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-content p a:hover {
    color: #666666;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-form {
    background: #f7f7f7;
    padding: 3rem;
}

.contact-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-group {
    flex: 1;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #999999;
}

.contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.contact-form-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
    .contact-row {
        flex-direction: column;
    }

    .contact-info {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-content {
        padding: 0 1.5rem 4rem 1.5rem;
    }

    .contact-hero-content h1 {
        font-size: 2.25rem;
    }

    .contact-main {
        padding: 4rem 0;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
}

.contact-booking {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-booking-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-booking-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-booking-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.contact-captcha {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 2rem;
    overflow: hidden;
}

.contact-captcha-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.contact-captcha-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-captcha-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 32px;
    width: 32px;
    z-index: 10;
    margin: 0;
}

.contact-captcha-checkmark {
    height: 32px;
    width: 32px;
    background: #ffffff;
    border: 2px solid #d0d0d0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.contact-captcha-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid #e0e0e0;
    border-top-color: #00aa00;
    border-radius: 50%;
    animation: contactCaptchaSpin 1s linear infinite;
}

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

.contact-captcha-checkbox input:checked ~ .contact-captcha-checkmark {
    background: #000000;
    border-color: #000000;
}

.contact-captcha-checkbox input:checked ~ .contact-captcha-checkmark::after {
    content: '';
    width: 9px;
    height: 16px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.contact-captcha.verifying .contact-captcha-checkbox input:checked ~ .contact-captcha-checkmark {
    border-color: #00aa00;
    background: #ffffff;
}

.contact-captcha.verifying .contact-captcha-checkbox input:checked ~ .contact-captcha-checkmark::after {
    display: none;
}

.contact-captcha.verifying .contact-captcha-spinner {
    display: block;
}

.contact-captcha-text {
    font-size: 0.9375rem;
    color: #333333;
    flex: 1;
}

.contact-captcha-success-icon,
.contact-captcha-success-text {
    display: none;
}

.contact-captcha.verified .contact-captcha-text {
    display: none;
}

.contact-captcha.verified .contact-captcha-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #00aa00;
    flex-shrink: 0;
}

.contact-captcha.verified .contact-captcha-success-icon::after {
    content: '';
    width: 9px;
    height: 16px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.contact-captcha.verified .contact-captcha-success-text {
    display: inline;
    font-size: 1rem;
    font-weight: 700;
    color: #00aa00;
}

.contact-captcha-brand {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #f5f5f5;
    border-left: 1px solid #e0e0e0;
}

.contact-captcha-cloud {
    width: 40px;
    height: 40px;
    margin-bottom: 0.25rem;
}

.contact-captcha-brand-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333333;
    margin-bottom: 0.25rem;
}

.contact-captcha-brand-links {
    font-size: 0.625rem;
    color: #999999;
}

.contact-captcha-brand-links a {
    color: #999999;
    text-decoration: none;
}

.contact-captcha-brand-links a:hover {
    color: #333333;
}

.contact-booking-form {
    text-align: left;
}

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

.contact-booking-form .contact-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 0.75rem;
}

.contact-booking-form .contact-form-group input,
.contact-booking-form .contact-form-group select,
.contact-booking-form .contact-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-booking-form .contact-form-group input:focus,
.contact-booking-form .contact-form-group select:focus,
.contact-booking-form .contact-form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.contact-booking-form .contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-booking-form .contact-form-group textarea {
    resize: vertical;
}

.contact-booking-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.contact-file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    border: 1px dashed #e0e0e0;
    border-radius: 2px;
    padding: 1rem 1.25rem;
    background: #fafafa;
}

.contact-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-file-btn:hover {
    opacity: 0.8;
}

.contact-file-btn input[type="file"] {
    display: none;
}

.contact-file-name {
    font-size: 0.875rem;
    color: #999999;
}

@media (min-width: 769px) and (max-width: 992px) {
    .contact-booking-content h2 {
        font-size: 1.75rem;
    }
}

.quote-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.quote-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.quote-modal {
    position: relative;
    width: 85%;
    max-width: 1105px;
    height: auto;
    max-height: 88vh;
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}

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

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333333;
    z-index: 20;
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

/* Left panel */
.quote-modal-left {
    position: relative;
    display: block;
    padding: 2rem 1.75rem;
    color: #ffffff;
    overflow: hidden;
    min-height: 320px;
}

.quote-modal-left-bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a url('./images/modal/background.jpg') center/cover no-repeat;
    z-index: 0;
}

.quote-modal-left-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.quote-modal-left-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.quote-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.quote-modal-left::before {
    display: none;
}

.quote-modal-brand {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-transform: uppercase;
}

.quote-modal-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.quote-modal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
    position: relative;
    z-index: 1;
}

.quote-modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.8125rem;
    color: #cccccc;
}

.quote-modal-features li i {
    color: #4ade80;
    margin-top: 2px;
    font-size: 0.625rem;
}

.quote-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.quote-modal-badges span {
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #dddddd;
    background: rgba(255, 255, 255, 0.05);
}

.quote-modal-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.cert-tag {
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #dddddd;
}

/* Right panel */
.quote-modal-right {
    padding: 1.75rem;
    overflow-y: auto;
    max-height: 88vh;
    background: #ffffff !important;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.quote-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.quote-form-group label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: #cccccc;
}

.quote-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

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

.quote-form-upload {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.quote-form-upload label {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999999;
}

.quote-form-file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote-form-file input[type="file"] {
    display: none;
}

.quote-file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-file-label:hover {
    background: #333333;
}

.quote-file-text {
    font-size: 0.8125rem;
    color: #999999;
}

.quote-captcha {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 0.375rem;
    max-width: calc(100% - 60px);
}

.quote-captcha-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.quote-captcha-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.quote-captcha-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.quote-captcha-checkmark {
    height: 26px;
    width: 26px;
    background: #ffffff;
    border: 2px solid #d0d0d0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.quote-captcha-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid #e0e0e0;
    border-top-color: #00aa00;
    border-radius: 50%;
    animation: quoteCaptchaSpin 1s linear infinite;
}

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

.quote-captcha-checkbox input:checked ~ .quote-captcha-checkmark {
    background: #000000;
    border-color: #000000;
}

.quote-captcha-checkbox input:checked ~ .quote-captcha-checkmark::after {
    content: '';
    width: 7px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.quote-captcha.verifying .quote-captcha-checkbox input:checked ~ .quote-captcha-checkmark {
    border-color: #00aa00;
    background: #ffffff;
}

.quote-captcha.verifying .quote-captcha-checkbox input:checked ~ .quote-captcha-checkmark::after {
    display: none;
}

.quote-captcha.verifying .quote-captcha-spinner {
    display: block;
}

.quote-captcha-text {
    font-size: 0.8125rem;
    color: #333333;
}

.quote-captcha-success {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #1a7f37;
    font-weight: 500;
}

.quote-captcha-success-icon {
    width: 34px;
    height: 34px;
    background: #1a7f37;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
}

.quote-captcha.verified .quote-captcha-checkbox,
.quote-captcha.verified .quote-captcha-text {
    display: none;
}

.quote-captcha.verified .quote-captcha-success {
    display: flex;
}

.quote-captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    min-width: 80px;
    gap: 0.25rem;
}

.quote-captcha-cloud {
    width: 32px;
    height: 20px;
    background: linear-gradient(135deg, #f38020 0%, #faae40 50%, #f38020 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.quote-captcha-cloud::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #faae40;
    border-radius: 50%;
    top: -5px;
    left: 5px;
}

.quote-captcha-logo > span {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.5px;
}

.quote-captcha-links {
    font-size: 0.4375rem;
    color: #999999;
}

.quote-captcha-links a {
    color: #999999;
    text-decoration: none;
}

.quote-captcha-links a:hover {
    color: #666666;
}

.quote-form-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.quote-form-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-category-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    padding: 0;
    max-width: none;
    margin: 0;
    align-items: stretch;
    width: 100%;
}

.product-category-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-category-detail.reverse .product-category-detail-text {
    order: 1;
    padding-left: 5rem;
    padding-right: 0;
}

.product-category-detail.reverse .product-category-detail-image {
    order: 2;
}

.product-category-detail .container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.product-category-detail-text {
    padding: 5rem 5rem 5rem 5rem;
    text-align: left;
    max-width: 580px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category-detail:not(.reverse) .product-category-detail-text {
    padding-left: 5rem;
    padding-right: 0;
}

.product-category-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 1.25rem;
}

.product-category-detail-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.product-category-detail-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

.product-category-link {
    display: inline-block;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    padding-bottom: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.product-category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
}

.product-category-link:hover {
    color: #666666;
}

.product-category-link:hover::after {
    background: #666666;
}

.product-category-detail-image {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.product-category-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-category-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.product-category-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-category-nav-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-category-nav-btn svg {
    width: 18px;
    height: 18px;
    fill: #111111;
}

@media (min-width: 769px) and (max-width: 992px) {
    .product-category-detail {
        padding: 3rem 0 0;
    }

    .product-category-detail-text h2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .quote-modal {
        width: 90%;
        max-width: 936px;
        height: auto;
        max-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
    }

    .quote-modal-left {
        padding: 1.75rem 1.5rem;
    }

    .quote-modal-right {
        padding: 1.25rem;
    }

    .quote-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-modal-overlay {
        background: #ffffff;
    }

    .quote-modal {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        display: block;
    }

    .quote-modal-left {
        padding: 1.25rem 1rem;
        min-height: auto;
    }

    .quote-modal-right {
        padding: 1rem;
    }

    .quote-form-row {
        grid-template-columns: 1fr;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    width: 85%;
    max-width: 85vw;
    max-height: 85vh;
    height: auto;
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: #cccccc;
}

.sofa-image-wrapper img,
.bed-image-wrapper img,
.armchair-image-wrapper img,
.coffee-table-image-wrapper img,
.dining-image-wrapper img,
.mattress-image-wrapper img,
.factory-categories-slide img,
.product-category-detail-image img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.sofa-image-wrapper img:hover,
.bed-image-wrapper img:hover,
.armchair-image-wrapper img:hover,
.coffee-table-image-wrapper img:hover,
.dining-image-wrapper img:hover,
.mattress-image-wrapper img:hover,
.factory-categories-slide img:hover,
.product-category-detail-image img:hover {
    opacity: 0.85;
}

/* Unified Hero Typography for all pages */
.about-hero-content,
.factory-hero-content,
.products-hero-content,
.showroom-hero-content,
.blog-hero-content,
.contact-hero-content,
.solutions-hero-content,
.sofas-hero-content,
.beds-hero-content,
.dining-hero-content,
.mattresses-hero-content,
.armchairs-hero-content,
.coffee-tables-hero-content {
    text-align: left !important;
    max-width: 720px !important;
    margin-left: 18% !important;
    margin-right: 0 !important;
    padding: 0 2rem !important;
}

/* Badge/Tag unified style */
.about-hero-subtitle,
.factory-hero-tag,
.products-hero-badge,
.showroom-hero-tag,
.blog-hero-tag,
.contact-hero-tag,
.solutions-hero-badge,
.sofas-hero-tag,
.beds-hero-tag,
.dining-hero-tag,
.mattresses-hero-tag,
.armchairs-hero-tag,
.coffee-tables-hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 0 !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 1.5rem !important;
}

.about-hero-subtitle::before,
.factory-hero-tag::before,
.products-hero-badge::before,
.showroom-hero-tag::before,
.blog-hero-tag::before,
.contact-hero-tag::before,
.solutions-hero-badge::before,
.sofas-hero-tag::before,
.beds-hero-tag::before,
.dining-hero-tag::before,
.mattresses-hero-tag::before,
.armchairs-hero-tag::before,
.coffee-tables-hero-tag::before {
    content: '' !important;
    display: inline-block !important;
    width: 2px !important;
    height: 1rem !important;
    background: rgba(255, 255, 255, 0.7) !important;
    margin-right: 0.75rem !important;
}

/* H1 unified style */
.about-hero-content h1,
.factory-hero-content h1,
.products-hero-content h1,
.showroom-hero-content h1,
.blog-hero-content h1,
.contact-hero-content h1,
.solutions-hero-new h1,
.sofas-hero-content h1,
.beds-hero-content h1,
.dining-hero-content h1,
.mattresses-hero-content h1,
.armchairs-hero-content h1,
.coffee-tables-hero-content h1 {
    font-size: 3.25rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.5px !important;
    text-shadow: none !important;
    color: #ffffff !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Paragraph unified style */
.about-hero-content p,
.factory-hero-content p,
.products-hero-content p,
.showroom-hero-content p,
.blog-hero-content p,
.contact-hero-content p,
.solutions-hero-desc p,
.sofas-hero-content p,
.beds-hero-content p,
.dining-hero-content p,
.mattresses-hero-content p,
.armchairs-hero-content p,
.coffee-tables-hero-content p {
    font-size: 1rem !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Buttons unified style */
.about-hero-btn,
.factory-hero-btn-primary,
.factory-hero-btn-secondary,
.products-hero-btn,
.showroom-hero-btn,
.solutions-hero-btn-primary,
.solutions-hero-btn-secondary,
.sofas-hero-btn,
.beds-hero-btn,
.dining-hero-btn,
.mattresses-hero-btn,
.armchairs-hero-btn,
.coffee-tables-hero-btn {
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    font-size: 0.8125rem !important;
    width: auto !important;
    display: inline-flex !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-bottom: none !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

/* Additional overrides for specific pages */
.about-hero-btn-primary,
.about-hero-btn-secondary,
.showroom-hero-btn,
.factory-hero-inquiry {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-bottom: none !important;
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    font-size: 0.8125rem !important;
    width: auto !important;
    display: inline-flex !important;
}

.about-hero-buttons {
    justify-content: flex-start !important;
}

/* Force badge/tag left vertical line for all pages */
.about-hero-subtitle::before,
.factory-hero-tag::before,
.products-hero-badge::before,
.showroom-hero-tag::before,
.blog-hero-tag::before,
.contact-hero-tag::before,
.sol-hero-badge::before,
.sofas-hero-tag::before,
.beds-hero-tag::before,
.dining-hero-tag::before,
.mattresses-hero-tag::before,
.armchairs-hero-tag::before,
.coffee-tables-hero-tag::before {
    content: '' !important;
    display: inline-block !important;
    width: 2px !important;
    height: 1rem !important;
    background: rgba(255, 255, 255, 0.7) !important;
    margin-right: 0.75rem !important;
}

/* Remove internal tag-line spans */
.factory-hero-tag .tag-line,
.about-hero-subtitle span:nth-child(2) {
    display: none !important;
}

/* Products page Hero animation */
.products-hero-content .factory-hero-tag.hero-anim-item,
.products-hero-content h1.hero-anim-item,
.products-hero-content p.hero-anim-item,
.products-hero-buttons.hero-anim-item {
    opacity: 0;
}

.products-hero-content .factory-hero-tag.hero-anim-item.hero-ready,
.products-hero-content h1.hero-anim-item.hero-ready,
.products-hero-content p.hero-anim-item.hero-ready,
.products-hero-buttons.hero-anim-item.hero-ready {
    animation: fadeInUp 0.8s ease-out forwards;
}

.products-hero-content .factory-hero-tag.hero-anim-item.hero-ready {
    animation-delay: 0.15s;
}

.products-hero-content h1.hero-anim-item.hero-ready {
    animation-delay: 0.3s;
}

.products-hero-content p.hero-anim-item.hero-ready {
    animation-delay: 0.45s;
}

.products-hero-buttons.hero-anim-item.hero-ready {
    animation-delay: 0.6s;
}

@media (min-width: 769px) {
    /* Fix hero layout alignment for all pages */
    .about-hero,
    .factory-hero,
    .products-hero,
    .showroom-hero,
    .blog-hero,
    .contact-hero,
    .sol-hero-new,
    .sofas-hero,
    .beds-hero,
    .dining-hero,
    .mattresses-hero,
    .armchairs-hero,
    .coffee-tables-hero {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* Fix hero-content position for all pages */
    .about-hero-content,
    .factory-hero-content,
    .products-hero-content,
    .showroom-hero-content,
    .blog-hero-content,
    .contact-hero-content,
    .sol-hero-content,
    .sofas-hero-content,
    .beds-hero-content,
    .dining-hero-content,
    .mattresses-hero-content,
    .armchairs-hero-content,
    .coffee-tables-hero-content {
        max-width: 720px !important;
        margin-left: 18% !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding-top: 0 !important;
    }

    /* Explicit rules for blog & contact pages */
    .blog-hero-content,
    .contact-hero-content {
        position: relative !important;
        max-width: 720px !important;
        margin-left: 18% !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 2rem !important;
        text-align: left !important;
        z-index: 10 !important;
        width: auto !important;
    }

    /* Unified hero height for all pages */
    .about-hero,
    .factory-hero,
    .products-hero,
    .showroom-hero,
    .blog-hero,
    .contact-hero,
    .sol-hero-new,
    .sofas-hero,
    .beds-hero,
    .dining-hero,
    .mattresses-hero,
    .armchairs-hero,
    .coffee-tables-hero {
        min-height: 100vh !important;
        height: auto !important;
        padding-top: 120px !important;
    }
}