* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: normal;
}

/* 🔹 Top Section Header */
.header-section {
    /*max-width: 1229px;*/
    display: flex;
    padding-bottom: 40px;
    flex-direction: column;
    gap: 40px;
    font-size: 80px;
    color: #000;
    justify-content: center;
    align-items: center; /* ✅ Center content inside header */
    padding-top: 40px;
    text-align: center; /* ✅ Center text */
}

.header-section .top-line,
.header-section .bottom-line {
    display: flex;
    align-items: center;
    justify-content: center; /* ✅ Center line contents */
    gap: 30px;
    flex-wrap: wrap;
}
.top-line-content {
    display: flex;
    align-items: center;
    gap: 29px;
}
.top-line-text {
    font-size: 65px;
    font-weight: 300;
}
.view-text {
    font-size: 16px;
}
.header-section img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: cover;
}

.view-all-line {
    font-size: 21px;
    color: black;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    text-align: center;
    text-decoration: none;
}

/* 🔸 Main Featured Category Section */
.featured-category-wrapper {
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}
.featured-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
}
.featured-slide {
    display: none;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.featured-slide.active {
    display: flex;
    opacity: 1;
}

/* 🔸 Left & Right Panels */
.featured-left, .featured-right {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* 🔹 Left Panel Content */
.category-details {
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    max-width: 500px;
    gap: 30px;
}
.category-details h4 {
    font-size: 18px;
    font-weight: 300;
}
.category-details .headline {
    font-size: 85px;
    font-weight: 500;
}
.category-details .cat-btn {
    padding: 20px 10px;
    border-radius: 2px;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    max-width: 240px;
    text-align: center;
}

/* 🔹 Right Product Image Slider */
.product-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* Prevent overflow if image stretches */
}

.product-slide {
    position: absolute;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-slide.active {
    display: flex;
    opacity: 1;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🔸 Pagination Dots (Shared Style) */
.category-dots,
.product-dots,
.category-dots-inner {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Outer bottom dots */
.category-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
}

/* Left-side inner category dots */
.category-dots-inner {
    position: absolute;
    left: 25px;
    bottom: 30px;
    flex-direction: column;
}

/* Product dots */
.product-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    width: 19px;
    height: 19px;
    background-color: #000;
}
