﻿:root {
    --main-color: #ff4081;
    --accent-color: #8e2de2;
    --bg-light: #f2f4f8;
    --text-color: #2d2d2d;
    --section-padding: 80px;
}


.hero-section {
    background-color:crimson;
    color: white;
    padding: 120px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

    .hero-section h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.25rem;
        font-weight: 300;
        max-width: 600px;
        margin: auto;
    }

.btn-main2 {
    background-color: white;
    color: var(--main-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    border: solid 1px #ff4081;
}

    .btn-main2:hover {
        background-color: var(--main-color);
        color: white;
    }

.carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.slider-img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 600px;
}

    .carousel-caption h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .carousel-caption p {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #f1f1f1;
    }

.btn-custom {
    background-color: #ff4081;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255, 64, 129, 0.5);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

    .btn-custom:hover {
        background-color: #e91e63;
        color: white;
    }

/* Responsive*/
@media (max-width: 768px) {
    .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
        } 
}


.section-home {
    padding: var(--section-padding) 0;
}

.product-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--main-color);
}

.unique-product-card {
    background: white;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .unique-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(255, 64, 129, 0.25);
    }

.btn-main2 {
    background-color: var(--main-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-main2:hover {
        background-color: #e91e63;
    }

.review-star {
    color: gold;
}

.carousel-item {
    transition: transform 0.6s ease;
}

@media (max-width: 576px) {
    .unique-product-card {
        height: auto !important;
    }
}

.article-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: whitesmoke;
}

.article-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .article-block:nth-child(even) {
        flex-direction: row-reverse;
    }

.article-image, .article-text-wrap {
    flex: 1 1 50%;
    max-width: 50%;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-text-wrap {
    padding: 3rem;
}

.article-text {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
    word-break: break-word;
}

.review-star {
    color: gold;
}
@media (max-width: 768px) {
    .article-block {
        flex-direction: column !important;
    }

    .article-image, .article-text-wrap {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .article-text-wrap {
        padding: 2rem 1.5rem;
    }
}
.btn-main {
    background: var(--main-color);
    border: none;
    color: #fff;
}

    .btn-main:hover {
        background: #e91e63;
    }


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
}

