.Lpage {
    background: url('./img/bg_mb.webp') no-repeat center center;
    background-size: cover;
}



.animate-pulse-custom {
    animation: pulse 2s infinite;
}


@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #df4074;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo p {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #4a7729;
}

/* Sale Banner */
.sale-banner {
    background-color: #4a7729;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 16px;
}

/* Main Banner */
.main-banner {
    background-color: #df4074;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.main-banner h2 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.main-banner p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.main-banner span {
    font-weight: 700;
}

/* Products */
.products-section {
    padding: 40px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 250px;
    background-color: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #f44336;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
}

.product-info {
    padding: 20px;
    background: #fff;
    position: relative;
}

.product-img {
    width: 100%;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.price-container {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.current-price {
    color: #f44336;
    font-size: 20px;
    font-weight: 800;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 16px;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #df4074;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #3a6619;
}

/* Footer Banner */
.footer-banner {
    background-color: #4a7729;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 17px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 16px;
}

.highlight {
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    nav ul {
        gap: 15px;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-banner h2 {
        font-size: 22px;
    }

    .main-banner p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }
}