* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background: linear-gradient(15deg, #fff5f5 0%, #f7faff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}




.banner {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}


.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.content .lt{
    width: 100%;
    max-width: 900px;
    margin:auto;
}
.content .rt{
    /*width: 30%;*/
}

.category-header {
    text-align: center;
    margin: 2rem 0 1rem;
    padding: 1rem;
}

.category-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #ff6b6b;
    bottom: -10px;
    left: 20%;
}

.slogan {
    color: #e74c3c;
    padding: 20px 0 0 0;
    font-style: italic;
    font-size: 2.1rem;
}


.product-module {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding:1rem;
    margin:1.5rem 0 1.5rem;
    display: flex;
    align-items: center;
    max-width: 900px;
    transition: transform 0.3s ease;
    position: relative;
}

.product-module2{
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding:1rem;
    margin:1.5rem 0 1.5rem;
    display: flex;
    align-items: center;
   
    transition: transform 0.3s ease;
    position: relative;
}

.product-module:hover {
    transform: translateY(-5px);
}


.image-container {
    flex: 0 0 45%;
    margin-right: 2rem;
    position: relative;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.product-content {
    flex: 1;
}

.product-name {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}
.search-name{
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.features-list ,.search-list{
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li ,.search-list li{
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✔";
    color: #2ecc71;
    margin-right: 1rem;
    font-size: 1.2rem;
}


.price-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discounted-price {
    color: #e74c3c;
    font-size: 2rem;
    font-weight: bold;
}


.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.cta-button:hover {
    transform: scale(1.05);
}


.petal {
    position: fixed;
    background: rgba(255,182,193,0.6);
    border-radius: 50% 50% 0 50%;
    animation: fall 15s linear infinite;
    z-index: 0;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}


@media (max-width: 768px) {
    .content{
        flex-direction: column;
    }
    .content .lt{
        width:100%;
    }
    .content .rt{
        width:100%;
    }
    .product-module2{
        margin:0;
    }
    .product-module {
        flex-direction: column;
        padding: 1.5rem;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .discounted-price {
        font-size: 1.5rem;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .main-content {
        margin: 1rem auto;
        padding: 1rem;
    }
    .cta-button{
        display: flex;
        margin:auto;
        width:175px;
    }
}
