:root {
    --primary: #ff3e6c;
    --secondary: #ff6b9d;
    --accent: #d4af37;
    --dark: #2a2a2a;
    --light: #f9f9f9;
    --text: #333;
    --text-light: #777;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.promotion-banner.cashback-banner {
    background: linear-gradient(90deg, #ff3e6c, #ff6b9d);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.promotion-banner.cashback-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-banner.cashback-banner p {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.promotion-banner.cashback-banner .btn {
    background: var(--white);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
    transition: var(--transition);
}

.promotion-banner.cashback-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 108, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.hero-carousel {
    height: 80vh;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.slide-content .btn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--white);
}

.trends-section {
    padding: 5rem 0;
    background: var(--white);
}

.trends-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.trend-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.trend-tabs span {
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.trend-tabs span.active {
    background: var(--primary);
    color: var(--white);
}

.trend-tabs span:hover {
    background: rgba(255, 62, 108, 0.1);
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.trend-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trend-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.trend-card h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.trend-card p {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.exclusives-section {
    padding: 5rem 0;
    background: var(--light);
}

.exclusives-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.exclusive-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.exclusive-card:hover {
    transform: scale(1.03);
}

.exclusive-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: var(--light);
}

.exclusive-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
}

.exclusive-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.promotion-banners {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.promo-banner {
    border-radius: 15px;
    overflow: hidden;
    margin: 1.5rem 0;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.frizzy-days {
    background: linear-gradient(135deg, #ff6b9d, #ff3e6c);
}

.sbi-offer {
    background: linear-gradient(135deg, #2d5bff, #1d42b0);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    color: white;
}

.text-content {
    flex: 1;
    padding-right: 2rem;
    z-index: 2;
}

.banner-tag {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-name {
    font-size: 2.2rem;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.offer-details {
    margin: 1.5rem 0;
}

.main-offer {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.extra-offer {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

.promo-code {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    margin: 1rem 0;
    backdrop-filter: blur(5px);
}

.promo-code .code {
    font-weight: 700;
    margin-left: 0.5rem;
    color: #ffd700;
    animation: bounce 1.5s infinite;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: white;
    color: #ff3e6c;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bank-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.offer-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.know-more-btn {
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.card-tilt {
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: rotate(-5deg) scale(1.05);
}

.innerwear-section {
    padding: 5rem 0;
    background: var(--white);
}

.innerwear-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
    text-transform: uppercase;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
}

.brand-logos img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.innerwear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.innerwear-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.innerwear-card:hover {
    transform: translateY(-5px);
}

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

.innerwear-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
    color: var(--dark);
}

.innerwear-card p {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.safety-notice {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: rgba(255, 62, 108, 0.1);
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .trend-grid,
    .exclusive-grid,
    .innerwear-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .trend-card img,
    .innerwear-card img {
        height: 250px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .main-offer {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .promotion-banner.cashback-banner h3 {
        font-size: 1.2rem;
    }

    .trend-tabs {
        flex-wrap: wrap;
    }

    .brand-logos {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .trend-grid,
    .exclusive-grid,
    .innerwear-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .promotion-banner.cashback-banner h3 {
        font-size: 1.4rem;
    }

    .promotion-banner.cashback-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .trend-card img,
    .innerwear-card img {
        height: 250px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .main-offer {
        font-size: 2rem;
    }

    .promo-code {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .shop-now-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .promotion-banner.cashback-banner h3 {
        font-size: 1.2rem;
    }

    .trend-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .trend-tabs span {
        padding: 5px 15px;
        font-size: 0.9rem;
    }

    .brand-logos {
        flex-direction: column;
        align-items: center;
    }

    .trend-card img,
    .innerwear-card img {
        height: 200px;
    }

    .exclusive-card img {
        height: 150px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .main-offer {
        font-size: 1.8rem;
    }

    .promo-code {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .shop-now-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .safety-notice {
        font-size: 0.8rem;
        padding: 1rem;
    }
}