
.hero {
    position: relative;
    height: 85vh;
    
    display: flex;
    align-items: center;
    overflow: hidden;
}

.discount-badge {
    position: absolute;
    top: 80px;
    left: 100px;
    background: #000;
    color: #fff;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 700;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    border-radius: 50px;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 80px;
    color: #fff;
    max-width: 50%;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.accessibility-btn {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.accessibility-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-image {
        opacity: 0.3;
    }
    
    .navbar-menu {
        gap: 20px;
        font-size: 11px;
    }
}


/* Product Grid */
.product-grid {
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    position: relative;
    cursor: pointer;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 1px;
    z-index: 10;
}

.product-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 15px 0;
}

.product-name {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.product-price {
    font-size: 14px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.sale-price {
    color: #000;
    font-weight: 600;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    border: 1px solid #ddd;
}

/* Value Prop Section */
.value-prop {
    width: 100vw;
    max-width: none;
    margin: 100px 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: #F8F6F3; /* cream */
}

.value-prop img {
    width: 90%;
    height: auto;
}

.value-content {
    padding: 40px;
}

.value-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid #000;
    display: inline-block;
    margin-bottom: 30px;
}

.value-content h2 {
    font-size: 36px;
    font-weight: 5  00;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.value-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    
    padding: 80px 40px;
    text-align: center;
}

.services-images {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.services-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.services-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-section p {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 33.333%;
    padding: 40px;
    box-sizing: border-box;
}

.testimonial-content {
    background: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.stars {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 13px;
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #000;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-categories,
    .value-prop {
        grid-template-columns: 1fr;
    }

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

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

    .testimonial {
        min-width: 100%;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .category-card.area-rugs,
    .category-card.square-rugs,
    .category-card.runners {
        grid-column: 1;
        grid-row: auto;
    }

    
}

@media (max-width: 768px) {
   

    .hero-section {
        padding: 40px 20px;
    }

    .category-card {
        padding: 40px 20px;
    }

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