/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ff3122;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #3e8e41;
}

.btn:active {
    background-color: #3e8e41;
    box-shadow: 0 2px #666;
    transform: translateY(4px);
}


header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}
.btn-primary {
    background-color: #ff6600;
    color: #ffffff;
}


nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 50px;
}

h1, h2 {
    margin-bottom: 20px;
}

.btn.whatsapp {
    background-color: #25D366;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-info h4 {
    margin: 0;
    font-size: 18px;
}

.user-info p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.testimonial-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

#how-to-order {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#how-to-order h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

#how-to-order ol {
    display: inline-block;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}

#how-to-order li {
    margin-bottom: 10px;
}

#special-offer {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#special-offer h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#special-offer p {
    font-size: 24px;
    margin-bottom: 30px;
}

.offer-details {
    margin-bottom: 40px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
    margin-right: 10px;
}

.discount-price {
    color: #ff6b6b;
    font-size: 24px;
    font-weight: bold;
}

.discount-percentage {
    font-size: 24px;
    color: #ff6b6b;
    margin-top: 10px;
}

.countdown {
    margin-top: 40px;
}

.countdown p {
    font-size: 20px;
    margin-bottom: 10px;
}

#countdown-timer {
    font-size: 36px;
    font-weight: bold;
}

#order-cta {
    background-color: #ff6b6b;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#order-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

#order-cta p {
    font-size: 24px;
    margin-bottom: 40px;
}

#fomo-notification {
    position: fixed;
    top: 20px; /* Changed from bottom to top */
    left: 20px;
    background-color: #ffc5c5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    align-items: center;
    z-index: 9999;
}

#fomo-notification img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

#fomo-notification p {
    margin: 0;
    font-size: 16px;
}

#fomo-notification p strong {
    font-weight: bold;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

#product-details {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#product-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.product-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.product-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.product-info ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

#pricing {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

#pricing h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.package-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.package {
    width: 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px;
}

.package h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package p {
    font-size: 18px;
    margin-bottom: 20px;
}

.package .price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
}

.free-shipping {
    font-size: 20px;
    margin-bottom: 30px;
}

#product-gallery {
    padding: 50px 0;
    text-align: center;
}

#product-gallery h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    justify-items: center;
}

.gallery-item {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.gallery-item p {
    font-size: 18px;
    margin: 0;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    section {
        padding: 30px;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 100%;
        margin-bottom: 30px;
    }

    .package-container {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 15px;
    }

    .package {
        padding: 20px;
    }
}
