   /* Hero Section - Fixed for proper alignment */
.th-hero-wrapper {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0 60px; /* Added top padding for header clearance */
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

/* Images Grid Container - Responsive height */
.images-grid-container {
    position: relative;
    height: 600px;
    max-height: 80vh;
    width: 100%;
}

.image-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    padding: 10px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Individual Image Positions */
.img-pos-1 {
    width: 150px;
    height: 150px;
    top: 0;
    left: 45%;
    z-index: 5;
}

.img-pos-2 {
    width: 120px;
    height: 160px;
    top: 60px;
    left: 5%;
    z-index: 3;
}

.img-pos-3 {
    width: 160px;
    height: 160px;
    top: 120px;
    left: 30%;
    z-index: 4;
}

.img-pos-4 {
    width: 320px;
    height: 380px;
    top: 140px;
    right: 5%;
    z-index: 6;
}

.img-pos-5 {
    width: 140px;
    height: 120px;
    top: 260px;
    left: 0;
    z-index: 2;
}

.img-pos-6 {
    width: 110px;
    height: 110px;
    top: 310px;
    left: 28%;
    z-index: 3;
}

.img-pos-7 {
    width: 180px;
    height: 180px;
    bottom: 80px;
    right: 40%;
    z-index: 4;
}

.img-pos-8 {
    width: 140px;
    height: 200px;
    bottom: 0;
    right: 8%;
    z-index: 3;
}

/* Content Area Styles - Responsive padding */
.hero-content-area {
    padding: 40px 60px;
}

.hero-subtitle-new {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #666;
    display: block;
    margin-bottom: 30px;
}

/* Responsive title sizing */
.hero-title-large {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -3px;
    color: #000;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 480px;
}

.offer-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 20px 30px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.offer-text {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.offer-subtext {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.8;
}

.btn-group-new {
    margin-top: 30px;
}

.th-btn-new {
    background: #000;
    color: #fff;
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.th-btn-new:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #fff;
}

/* Feature Products Section - Fixed positioning */
.feature-products-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    clear: both;
}

.feature-products-section .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.feature-products-section h3 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

#carouselTrack {
    display: flex;
    transition: transform 0.7s ease;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 2px;
}

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.product-tag {
    color: #ef4444;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-card {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    border-left: 4px solid #ef4444;
    position: relative;
}

.text-card .product-tag {
    margin-bottom: 15px;
}

.text-card .product-title {
    font-size: 36px;
}

/* Navigation Arrows */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: translateY(-50%) scale(1.1);
}

.nav.prev {
    left: -30px;
}

.nav.next {
    right: -30px;
}

/* Indicator Dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #777;
}

.dot.active {
    background: #ef4444;
    transform: scale(1.3);
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet (iPad, etc) */
@media (max-width: 991px) {
    .hero-title-large {
        font-size: 60px;
    }

    .images-grid-container {
        height: 450px;
    }

    .hero-content-area {
        padding: 40px 20px;
        margin-top: 30px;
    }

    .img-pos-4 {
        width: 260px;
        height: 320px;
    }

    .carousel-slide {
        grid-template-rows: repeat(2, 220px);
    }

    .nav.prev {
        left: 10px;
    }

    .nav.next {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .th-hero-wrapper {
        padding: 60px 0 40px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .images-grid-container {
        height: 350px;
    }

    .hero-content-area {
        padding: 20px 15px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Stack carousel cards vertically on mobile */
    .carousel-slide {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .feature-products-section h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Adjust image positions for mobile */
    .img-pos-1 {
        width: 100px;
        height: 100px;
    }

    .img-pos-2 {
        width: 90px;
        height: 120px;
    }

    .img-pos-3 {
        width: 120px;
        height: 120px;
    }

    .img-pos-4 {
        width: 200px;
        height: 250px;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .hero-title-large {
        font-size: 36px;
    }

    .offer-badge {
        padding: 15px 20px;
    }

    .offer-text {
        font-size: 24px;
    }
}

