:root {
    --color-ivory: #F0F4F8;
    /* Light Sky Blue */
    --color-beige: #D1D9E6;
    /* Soft Steel Blue */
    --color-charcoal: #1A2B3C;
    /* Navy Blue */
    --color-gold: #2C5282;
    /* Deep Azure Blue */
    --color-white: #FFFFFF;
    --color-black: #0A1117;
    /* Dark Navy */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.8s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-charcoal);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-charcoal);
    transition: width 0.2s, height 0.2s, top 0.1s, left 0.1s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.navbar.navbar-dark {
    color: var(--color-charcoal);
}

.navbar.scrolled {
    background: rgba(240, 244, 248, 0.98);
    /* Matching --color-ivory */
    padding: 0.8rem 4%;
    /* Reduced height */
    color: var(--color-charcoal);
    box-shadow: 0 5px 30px rgba(26, 43, 60, 0.08);
    /* Navy tint shadow */
    mix-blend-mode: normal;
}

.logo {
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
    filter: brightness(0) invert(1);
}

.scrolled .logo img {
    height: 45px;
    filter: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8rem;
    /* Slightly smaller for elegance */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Mobile Slide-in Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    /* Mobile friendly width */
    max-width: 400px;
    height: 100vh;
    background: var(--color-ivory);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    /* Ease in out circ like */
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.mobile-menu-header .logo {
    color: var(--color-charcoal);
}

.mobile-menu-header .logo img {
    filter: none;
}

.close-menu {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    /* Large touch friendly */
    color: var(--color-charcoal);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Staggered animation for links */
.mobile-menu.active .mobile-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-links a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-links a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-links a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-links a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-links a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu.active .mobile-links a:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-links a:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-menu.active .mobile-links a:nth-child(9) {
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-links a:nth-child(10) {
    transition-delay: 0.55s;
}


/* Desktop Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    /* Ensure it behaves like a link */
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 220px;
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.1);
    /* Navy tint shadow */
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    border-radius: 2px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--color-charcoal);
    width: 100%;
    text-align: left;
    text-transform: uppercase;
}

.dropdown-menu a:hover {
    background-color: var(--color-ivory);
    color: var(--color-gold);
}

.dropdown-menu a::after {
    display: none;
    /* No underline for dropdown items */
}

/* Mobile Nested Menu */
.mobile-dropdown-toggle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.5rem;
    margin-top: 1rem;
    border-left: 1px solid var(--color-beige);
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-content a {
    font-size: 1.5rem;
    opacity: 1;
    /* Override opacity transition from main links if aligned weirdly */
    transform: none;
}

.arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.mobile-dropdown-toggle.active .arrow {
    transform: rotate(45deg);
}

/* Hero Section Global (Inner Pages Default) */
.hero-section {
    height: 50vh;
    /* Short and elegant for inner pages */
    min-height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Inner Page Background - Mesh Gradient */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.hero-image {
    display: block;
    /* Show image on all pages */
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.4;
    /* Lower opacity for inner pages so gradient still shines through */
}


/* Premium Mesh Gradient / Aurora Effect for Inner Pages */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: floatOrb 15s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-bg::before {
    background: var(--color-gold);
    top: -200px;
    left: -200px;
}

.hero-bg::after {
    background: var(--color-beige);
    bottom: -200px;
    right: -200px;
    animation-delay: -7s;
}

/* Subtle texture overlay */
.hero-bg .texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- HOME PAGE HERO OVERRIDES --- */
.home-hero {
    height: 100vh;
    /* Full screen for Home */
}

.home-hero .hero-bg {
    background: transparent;
    /* Remove mesh background */
}

/* Remove orbs/texture from home to show image */
.home-hero .hero-bg::before,
.home-hero .hero-bg::after,
.home-hero .hero-bg .texture-overlay {
    display: none;
}

.home-hero .hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 25s infinite alternate;
    opacity: 1;
}

/* Dark Overlay for Home Page Video/Image */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}



.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-weight: 500;
}

.hero-content h1 {
    font-size: 5rem;
    /* Larger for desktop */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 300;
    /* Lighter weight for elegance */
    text-shadow: 0 4px 10px rgba(26, 43, 60, 0.3);
    /* Navy tint shadow */
}

/* Optimization for Inner Pages (Non-Home) */
.hero-section:not(.home-hero) .hero-content h1 {
    font-size: 3.5rem;
    /* Smaller for sleek one-line look */
    margin-bottom: 0;
    /* Remove bottom margin as desc is removed */
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-charcoal);
    border: 1px solid var(--color-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
}

/* Sections General */
.section-padding {
    padding: 5rem 5%;
    /* Reduced from 8rem */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Values Section */
.values-section {
    padding: 3rem 5%;
    background-color: var(--color-white);
    /* Detailed separation from hero/about */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-beige);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.value-item:hover .value-icon {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-5px);
}

.value-item h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    /* Modern clean feel for features */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-charcoal);
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    height: 650px;
    /* Tall, editorial ratio */
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

/* Subtle zoom interaction */
.about-grid:hover .about-image img {
    transform: scale(1.05);
}

.about-content {
    padding-left: 2rem;
    text-align: left;
    /* Editorial alignment */
}

/* Reuse existing typography but ensure left align where needed */
.about-content .section-title {
    margin-bottom: 2.5rem;
    font-size: 3.5rem;
    /* Larger impact */
}

.about-content .section-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    margin-top: 3rem;
    color: var(--color-gold);
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-content .section-desc {
        margin: 0 auto 3rem;
    }
}

/* Quality Section */
.quality-section {
    position: relative;
    background: url('imgs/catagory/Table Linen.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--color-white);
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Navy Base */
    background-color: rgba(10, 20, 30, 0.95);
    /* Fabric Weave Texture using Gradients */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    z-index: 1;
}

/* Add subtle noise for realism */
.quality-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.quality-section .container {
    position: relative;
    z-index: 2;
}

.quality-section .section-title {
    color: var(--color-white);
}

.quality-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

.quality-section h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quality-section p {
    color: rgba(255, 255, 255, 0.8);
}

.quality-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.timeline-item {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    /* Stitched Border Layout */
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    color: var(--color-white);
}

.timeline-icon {
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .quality-timeline {
        grid-template-columns: 1fr;
    }
}



/* Collections Grid */
.collection-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Collections Grid */
.collection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.collection-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Ensure content stays within border radius if any */
}

.img-wrapper {
    width: 100%;
    height: 550px;
    /* Taller, more elegant proportion */
    overflow: hidden;
    margin-bottom: 0;
    /* Remove margin as text goes overlay */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-item:hover .img-wrapper img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    text-align: center;
}

.collection-item:hover .collection-info {
    transform: translateY(0);
    opacity: 1;
}

.collection-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.collection-info p {
    color: var(--color-beige);
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.collection-arrow {
    display: inline-block;
    color: var(--color-gold);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
    /* Slight delay after text */
}

.collection-item:hover .collection-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Quality Timeline Section */
/* Quality Section with Background */
.quality-section {
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--color-white);
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 0;
}

.quality-section .container {
    position: relative;
    z-index: 1;
}

.quality-section .section-title,
.quality-section .subtitle,
.quality-section .section-desc {
    color: var(--color-white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.quality-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 3rem;
    /* Space for potential floating elements */
}

/* Elegant Connecting Line */
/* Connecting Line Removed */

.timeline-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline-item:hover {
    transform: translateY(-15px);
}

/* Step Number Styles Removed */

.timeline-item:hover .step-number {
    transform: scale(1.1);
    background: var(--color-charcoal);
}

.timeline-content {
    background: rgba(240, 244, 248, 0.95);
    /* Matching --color-ivory glass effect */
    backdrop-filter: blur(5px);
    padding: 2.5rem 1.5rem;

    /* Adjusted padding */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.03);
    /* Navy tint shadow */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    gap: 1.2rem;
    border: 1px solid rgba(26, 43, 60, 0.05);
    transition: all 0.5s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(197, 160, 89, 0.1);
}

.timeline-icon {
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    color: var(--color-gold);
}

.timeline-content h3 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    color: var(--color-charcoal);
}

.timeline-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
    max-width: 250px;
}

@media (max-width: 900px) {
    .quality-timeline {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 0;
    }

    .quality-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .step-number {
        margin-bottom: 0;
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-top: 5px;
    }

    .timeline-content {
        padding: 2rem;
        /* Normal padding */
        align-items: flex-start;
        width: auto;
    }

    .timeline-content p {
        max-width: none;
    }
}

/* Certifications Section */
.certifications-section {
    background-color: #F8FAFC;
    padding: 6rem 5%;
    border-top: 1px solid rgba(26, 43, 60, 0.03);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.cert-badge {
    position: relative;
    width: 100%;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.cert-badge img {
    width: 100%;
    height: auto;
    aspect-ratio: 240 / 340;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 43, 60, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-cert-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.cert-badge:hover .view-cert-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.cert-badge:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.cert-badge span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-charcoal);
    font-weight: 500;
    margin-top: auto;
}

/* Certificate Popup Modal */
.cert-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.cert-popup.active {
    opacity: 1;
    visibility: visible;
}

.cert-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-popup.active .cert-popup-content {
    transform: scale(1);
}

.cert-popup-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cert-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* Certificate Popup Modal */
.cert-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.cert-popup.active {
    opacity: 1;
    visibility: visible;
}

.cert-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-popup.active .cert-popup-content {
    transform: scale(1);
}

.cert-popup-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cert-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .cert-grid {
        gap: 3rem;
        display: grid;
        grid-template-columns: 1fr;
        /* Stack vertically on mobile for large A4 certificates */
    }

    .cert-badge img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
}

/* CTA Section */
.cta-section {
    background-image: url('imgs/hero img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    position: relative;
    padding: 8rem 5%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    padding: 1rem 2.5rem;
}

.cta-section .btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* About Page Specific Styles */
.about-hero {
    height: 70vh;
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.about-hero .section-title,
.about-hero .subtitle,
.about-hero .section-desc {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Contact Page Specific Styles */
.contact-hero {
    height: 70vh;
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.contact-hero .section-title,
.contact-hero .subtitle,
.contact-hero .section-desc {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(26, 43, 60, 0.03);
    /* Navy tint border */
    transition: all 0.5s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.05);
    /* Navy tint shadow */
}

.value-icon {
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-ivory);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background-color: var(--color-white);
    border-top: 1px solid rgba(26, 43, 60, 0.03);
    /* Navy tint border */
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Quality Process Section */
.quality-process {
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--color-white);
}

.quality-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.quality-process .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(240, 244, 248, 0.1);
    /* Matching --color-ivory opac */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.2);
    /* Navy tint shadow */
}

.process-icon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.quality-process .section-title,
.quality-process .subtitle,
.quality-process .section-desc {
    color: var(--color-white);
}

.quality-process .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Infrastructure Section */
.reverse-layout .about-content {
    padding-left: 0;
    padding-right: 3rem;
}

@media (max-width: 960px) {
    .reverse-layout .about-content {
        padding-right: 0;
        /* Reset on mobile */
    }
}

.infra-list {
    margin-top: 2rem;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.infra-list li {
    font-family: var(--font-heading);
    /* Elegant list font */
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-charcoal);
}

.infra-list li::before {
    content: '•';
    color: var(--color-gold);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reverse-layout {
        direction: ltr;
        /* Reset for mobile stack */
    }
}



.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-box {
    background: var(--color-white);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(26, 43, 60, 0.05);
    /* Navy tint border */
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(26, 43, 60, 0.05);
    /* Navy tint shadow */
}

.contact-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.contact-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.text-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--color-gold);
}

/* Form Styles */
.inquiry-section {
    background-color: var(--color-white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    /* Comfortable padding */
    border: 1px solid #ddd;
    border-radius: 4px;
    /* Soft structure */
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-charcoal);
    background: var(--color-white);
}

@media (max-width: 768px) {

    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Premium Luxury Footer */
.footer-premium {
    background-color: #0A1117;
    /* Dark Navy matching --color-black */
    color: var(--color-ivory);
    padding: 6rem 5% 2rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    /* Editorial Balance */
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(240, 244, 248, 0.1);
    /* Matching --color-ivory opac */
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand .logo img {
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.brand-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--color-white);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    opacity: 1;
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.contact-text {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.email-link a {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 244, 248, 0.2);
    /* Matching --color-ivory opac */
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-link a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.bottom-links {
    display: flex;
    gap: 2rem;
}

.bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        /* Full width on tablet */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand,
    .footer-column {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.link-group a {
    display: block;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #888;
}

/* Animations and Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s forwards;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Class for JS Interaction */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    /* Slightly increased distance for grander entrance */
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    /* Slower, smoother easing */
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        /* In a real app, integrate a hamburger menu */
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        /* Thumb friendly */
        text-align: center;
        padding: 1.2rem;
        /* Larger touch target */
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
        /* No custom cursor on touch */
    }
}

/* Collections Page Styles */

/* Collections Hero */
.collections-hero {
    height: 70vh;
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.collections-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-heading);
    margin: 1rem 0;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

/* About & Contact Hero Shared Styles */
.about-hero,
.contact-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 2rem;
    padding-top: 3rem;
    /* Offset for fixed navbar */
}

.about-hero {
    background-image: url('imgs/bed.jpg');
}

.contact-hero {
    background-image: url('imgs/bed.jpg');
    /* Replace if a specific contact image exists */
}

/* Common Overlay for Sub-pages */
.about-hero .hero-overlay,
.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero .hero-content,
.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Material Highlight Section */
.material-highlight {
    background-color: var(--color-white);
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.material-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.material-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.material-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-style: italic;
    background: #FAFAF8;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Collection Categories & Product Grid */
.collection-category {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* transition: background-image 0.5s ease-in-out; */
}

.collection-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    /* Heavy white overlay for readability */
    z-index: 0;
}

.collection-category .container {
    position: relative;
    z-index: 1;
}

.collection-category .category-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-header h2 {
    font-size: 2rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #777;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    cursor: pointer;
}

.product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}


.product-overlay span {
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-overlay span {
    transform: translateY(0);
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 0.3rem;
}

.product-info p {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Private Label Section */
.private-label-section {
    background-image: url('imgs/bed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    text-align: center;
}

.private-label-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Dark overlay */
}

.label-content {
    position: relative;
    z-index: 2;
}

.label-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-image {
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .material-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us Section */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.choose-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(26, 43, 60, 0.08);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 43, 60, 0.12);
    border-color: rgba(197, 160, 89, 0.4);
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), #e8c688);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.choose-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FAFAF8;
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.choose-card:hover .choose-icon {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.choose-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    transition: transform 0.5s ease;
}

.choose-card:hover .choose-icon svg {
    transform: rotateY(180deg);
}

.choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--color-charcoal);
    letter-spacing: 0.5px;
}

.choose-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 900px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}