/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #111;
    color: white;
    padding: 12px 0;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #d4af37;
    letter-spacing: 1px;
}

.tagline {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') no-repeat center center/cover;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.highlight {
    color: #d4af37;
    font-weight: 700;
}

/* Video Section */
.video-section {
    padding: 40px 0;
    background-color: #000;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #d4af37;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Product Section */
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
    align-items: center;
    background-color: #fff;
}

.product-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #d4af37;
}

.product-details {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.product-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 22px;
}

.discounted-price {
    color: #d32f2f;
    font-weight: 700;
    font-size: 32px;
}

.offer-badge {
    background-color: #d32f2f;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
}

.features-list {
    list-style-type: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.features-list li:before {
    content: "✓";
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.offer-box {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #d4af37;
    font-size: 15px;
}

/* Countdown Section */
.countdown-section {
    background-color: #f1f1f1;
    padding: 25px 0;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.countdown-box {
    background-color: #111;
    color: white;
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.countdown-value {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

.countdown-label {
    font-size: 14px;
    margin-top: 5px;
}

.stock-warning {
    color: #d32f2f;
    font-weight: 700;
    margin: 15px 0;
    text-align: center;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
    font-weight: 700;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #ddd;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 12px;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #111;
}

.testimonial-rating {
    color: #d4af37;
    margin-top: 8px;
}

/* Order Form */
.order-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    padding: 40px 0;
}

.order-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid #d4af37;
}

.order-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: #d4af37;
    font-weight: 700;
}

.order-subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.form-group textarea {
    min-height: 80px;
}

.submit-btn {
    background-color: #d4af37;
    color: #111;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.whatsapp-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #d4af37;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background-color: #fff;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    font-size: 18px;
}

.faq-answer {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee {
    background-color: #111;
    color: white;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.guarantee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.guarantee-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: #d4af37;
}

.guarantee-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    color: #aaa;
    font-size: 13px;
}

.disclaimer {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .discounted-price {
        font-size: 28px;
    }
}



 /* Video autoplay fix */
 .video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Auto-playing image carousel */
.product-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    display: block;
}

/* Animation classes */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* New testimonial carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.active-slide {
    display: block;
}

/* Button animations */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    animation: pulse 1s;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.submit-btn:hover::after {
    left: 100%;
    top: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container iframe {
        height: 250px;
    }
    
    .carousel-item img {
        height: auto;
    }
}