        /* --- Hero Section --- */
        .hero-section { text-align: center; padding: 60px 0 40px; }
        .hero-section h1 { font-size: 2.2rem; margin-bottom: 15px; }
        .hero-section p { max-width: 700px; margin: 0 auto; font-size: 1rem; font-weight: 300; line-height: 1.8; }

        /* --- Category Sections --- */
        .section-wrap { padding: 40px 0; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .section-title { font-size: 1.4rem; color: var(--brand-dark); margin: auto; }
        .btn-view-all { 
            font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; 
            border: 2px solid #ccc; color: #777; padding: 10px 18px; border-radius: 0;
            text-decoration: none; transition: all 0.2s;
        }
        .btn-view-all:hover { border-color: #000; color: #000; }

        /* Product Cards */
        .prod-card { text-decoration: none; color: inherit; display: block; margin-bottom: 20px; transition: transform 0.3s; }
        .prod-img-box { aspect-ratio: 4/3; background: #f9f9f9; overflow: hidden; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
        .prod-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .prod-card:hover .prod-img-box img { transform: scale(1.05); }
        .prod-name { font-size: 1rem; color: #555; text-align: left; }

        /* Carousel Arrows Style */
        .category-grid-container { position: relative; }


	   /* --- Full Width Banners - Updated to 1:2.35 Aspect Ratio --- */
        .banner-box { 
            position: relative; 
            width: 100%;
            aspect-ratio: 2.35 / 1;
            background-size: cover; 
            background-position: center; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            text-align: center; 
            color: white;
            margin: 40px 0;
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .banner-box {
                aspect-ratio: 16 / 9;
                min-height: 250px;
            }
        }
        .banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
        .banner-content { position: relative; z-index: 2;}
        .banner-box h2 { font-size: 2.2rem; margin-bottom: 15px; }
        .banner-box p { font-size: 0.9rem; font-weight: 300; margin-bottom: 25px; opacity: 0.9; }
        .btn-shop-now { 
            background: white; color: black; border: none; padding: 10px 35px; 
            font-size: 0.7rem; text-transform: uppercase; font-weight: 700; 
            letter-spacing: 0.1em; border-radius: 0; text-decoration: none;
        }

        /* --- Why Knoll Knot Section --- */
        .why-section { text-align: center; padding: 80px 0; border-top: 1px solid #eee; }
        .why-section h2 { font-size: 2rem; margin-bottom: 50px; }
        .why-card { margin-bottom: 30px; }
        .why-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 20px; }
        .why-card h4 { font-size: 1rem; margin-bottom: 12px; color: #333; }
        .why-card p { font-size: 0.75rem; color: #888; line-height: 1.6; padding: 0 10px; }
        
		.layui-carousel, .layui-carousel > *[carousel-item] > * {background-color:#fff;}