:root {
    --bg-color: #0a0a0a;
    --card-bg: #161616;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-red: #e63946;
    --accent-gold: #ffd700;
    --primary-color: #e63946; /* Red for urgency */
    --hover-color: #ff4d5a;
    --font-main: 'Inter', sans-serif;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-container{
    padding-bottom: 22px;
}

/* Top Notification Bar */
#top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.deal-text {
    font-weight: 700;
    text-transform: uppercase;
}

.mini-countdown {
    font-family: monospace;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-top-claim {
    background-color: #ff6b00; /* Orange from reference */
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-top-claim:hover {
    background-color: #ff8c00;
}

/* Header Adjustment */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 50px; /* Adjusted for top bar height */
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo .highlight {
    color: var(--accent-red);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    margin-left: 10px;
}

.btn-secondary:hover {
    border-color: white;
}

/* Hero Section */
#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 130px; /* Increased for top bar + header */
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .sticky-call-btn {
        display: block;
    }
    
    /* Mobile Header - Pill Shape */
    header {
        top: 80px; /* Below top bar */
        width: 90%;
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50px;
        padding: 10px 20px;
        background: rgba(20, 20, 20, 0.85); /* Glassmorphism */
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    header .container {
        padding: 0;
        justify-content: space-between;
    }

    .logo img {
        height: 40px !important; /* Smaller logo for pill */
        width: auto !important;
    }

    nav ul {
        display: none; /* Hide links */
    }

    /* Show Call Button in Header */
    header .btn {
        display: block !important;
        padding: 8px 15px;
        font-size: 0.8rem;
        border-radius: 20px;
        background: var(--accent-gold);
        color: #000;
        box-shadow: none;
    }

    .nav-phone {
        display: none;
    }
    
    #hero {
        padding-top: 180px; /* Adjust for floating header */
    }
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/hero-bg.png');
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.badge {
    background: rgba(230, 57, 70, 0.2);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

#hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Countdown Bar */
#countdown-bar {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
}

#countdown-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#countdown-bar p {
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#timer {
    display: flex;
    gap: 20px;
}

.time-unit {
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-unit small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Products Section */
.products-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.1);
}

.sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.product-image {
    width: 100%;
    height: 250px;
    background: #222;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
}

/* Mobile Responsive */
/* Sticky Call Button (Mobile) */
.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--accent-gold);
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 2000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.nav-phone a {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .sticky-call-btn {
        display: block;
    }
    
    header .btn, .nav-phone {
        display: none; /* Hide header button and phone on mobile to declutter */
    }

    nav ul {
        gap: 15px;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #111;
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: var(--card-bg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.brands-section p {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brands-grid span {
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.features-section {
    padding: 80px 0;
    background: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Testimonials Section */
/* Terms & Conditions Accordion */
.terms-section {
    padding: 60px 0;
    background: #000;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.accordion-header:hover {
    background: rgba(255,255,255,0.05);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.2);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.testimonial-card h4 {
    font-weight: 700;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(230, 57, 70, 0.1), rgba(0,0,0,0));
    border-top: 1px solid rgba(255,255,255,0.05);
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    width: 300px;
    font-family: var(--font-main);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-red);
}
