/* General Reset */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Header Section */
header {
    background: #2467f7;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    font-weight: 400;
}

header img {
    max-width: 200px;
    margin: 10px auto;
    display: block;
}

/* Section Styling */
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Product Categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background: #f9f9f9;
}

.category img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.category h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.category p {
    font-size: 0.9rem;
    color: #666;
}

.gallery-rv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 20px 0;
}

.gallery-rv img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-rv img:hover {
    transform: scale(1.25);
}

/* Countdown Section */
.countdown {
    text-align: center;
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#timer {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff5722;
    display: block;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

/* Promo Section */
.promo {
    background: #f9f9f9;
    border: 2px dashed #ff5722;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.promo span {
    font-weight: 700;
    color: #333;
}

/* Testimonials */
.testimonials {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.testimonials h3 {
    margin-top: 0;
    font-weight: 700;
}

.testimonial {
    margin-bottom: 15px;
}

.testimonial p {
    margin: 5px 0;
    font-weight: 400;
}

.testimonial span {
    font-weight: 600;
    color: #ff5722;
}

/* Footer Section */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Button */
.cta-button {
    display: block;
    background: #ff5722;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    margin: 10px auto;
    text-align: center;
    max-width: 300px;
}

.cta-button:hover {
    background: #e64a19;
}

.cta-button.expired {
    background-color: #888 !important;
    cursor: not-allowed;
}

/* Map Section */
#map {
    padding-bottom: 20px;
}

.map {
    margin: 20px 0;
    text-align: center;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: 0;
    border-radius: 5px;
}

/* FOMO Notification */
.fomo-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 6px solid #ff5722;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease-in-out;
}

.fomo-notification.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fomo-content {
    color: #333;
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .fomo-notification {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        width: 85%;
        font-size: 15px;
        padding: 15px 20px;
    }

    .fomo-notification.hidden {
        transform: translate(-50%, 20px);
    }
}