@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Montserrat:wght@700;900&display=swap');

:root {
    --primary: #FF6B00; /* Vibrant Orange */
    --primary-light: #FF9E5E;
    --secondary: #FFFFFF;
    --accent: #FF3D00; /* More aggressive orange-red for urgency */
    --text: #1A1A1A;
    --text-muted: #666666;
    --bg: #FFFFFF;
    --bg-alt: #FFF5EE;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 107, 0, 0.2);
    --shadow: 0 10px 40px rgba(255, 107, 0, 0.12);
}

.shipping-bar {
    background: var(--text);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.shipping-bar span {
    color: var(--primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

/* Header/Hero */
header {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--bg-alt) 0%, var(--bg) 100%);
    position: relative;
}

.hero-img {
    width: 80%;
    margin: 20px auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

h1 {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2.section-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 22px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-align: center;
    cursor: pointer;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 61, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 61, 0, 0.4);
}

.cta-button:active {
    transform: scale(0.95);
}

/* Features Section */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border: 1px solid rgba(255, 107, 0, 0.1);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.08);
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text);
    text-transform: uppercase;
}

/* Sensationalist & Beautiful Timer */
.timer-container {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 30px 0;
    border: 3px solid var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
    text-align: center;
}

.timer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-part {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    padding: 15px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 8px 20px rgba(255, 61, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.timer-part::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.timer-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: white !important;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
    letter-spacing: 1px;
}


.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 400;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 10px 0;
}

.price-desc {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Sticky Footer CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.sticky-cta.visible {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.sticky-cta .cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.2);
}

.sales-notification {
    position: fixed;
    bottom: 80px;
    left: 15px;
    right: 15px;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2100;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    border-left: 4px solid var(--primary);
    max-width: 350px;
}

.sales-notification b {
    color: var(--primary);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Temperature Scale */
.temp-scale-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Benefits Grid & Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.benefit-card {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
    text-transform: uppercase;
}

.benefit-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.temp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.temp-item:hover {
    transform: scale(1.02);
}

.temp-bar {
    width: 40px;
    height: 10px;
    background: var(--color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--color);
    flex-shrink: 0;
}

.temp-info {
    display: flex;
    flex-direction: column;
}

.temp-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--color);
    line-height: 1;
}

.temp-desc {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.faq-answer {
    padding-top: 10px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}


/* Testimonials Grid & Cards */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text);
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 800;
    color: var(--text);
    font-size: 1rem;
}

.user-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    color: #2196F3;
}

.stars {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
}

/* Timer */
.timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.timer-part {
    background: var(--text);
    color: white;
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.timer-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: var(--primary);
}

.timer-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}
