:root {
    --primary: #2f9e44;
    --primary-dark: #1f7a34;
    --primary-soft: #eaf8ee;
    --accent: #22b8cf;
    --accent-dark: #1098ad;
    --bg: #f7fbf8;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --sale: #ef4444;
    --radius: 14px;
    --shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px;
}

header {
    background: linear-gradient(145deg, #0f172a 0%, #14532d 45%, #22c55e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 56px;
}

.header-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 15% 20%, #d9f99d 0, transparent 45%),
        radial-gradient(circle at 85% 70%, #67e8f9 0, transparent 45%);
}

.navbar {
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.hero {
    text-align: center;
    padding: 22px 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: #d9f99d;
}

.hero p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
}

.proof-line {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 18px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 28px;
}

.countdown-item {
    min-width: 92px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--primary-dark);
    font-weight: 800;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 5px;
    color: #4b5563;
    font-weight: 700;
}

.cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-button,
.outline-button {
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.cta-button {
    background: linear-gradient(135deg, #d9f99d 0%, #86efac 100%);
    color: #0f172a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.outline-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.cta-button:hover,
.outline-button:hover {
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-subtitle {
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.18;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
}

.section-title p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(16, 24, 40, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 68%;
    background: #f3f4f6;
    overflow: hidden;
}

.product-image a,
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-image img {
    object-fit: cover;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--sale);
    color: #fff;
    font-weight: 800;
    font-size: 0.84rem;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.product-title a {
    color: var(--text);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-dark);
}

.product-excerpt {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 14px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.price-current {
    color: var(--primary-dark);
    font-size: 1.35rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

.price-original {
    color: var(--muted);
    text-decoration: line-through;
}

.product-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 10px;
    padding: 11px 16px;
    font-weight: 700;
}

.product-link:hover {
    filter: brightness(1.04);
}

.no-products {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 52px 20px;
}

.value-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.highlight-box {
    margin-top: 30px;
    background: linear-gradient(130deg, #14532d 0%, #16a34a 55%, #22b8cf 100%);
    color: #fff;
    padding: 34px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 15px 35px rgba(20, 83, 45, 0.28);
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
}

.call-to-action {
    background: var(--primary-soft);
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
    text-align: center;
}

.sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 14px;
    background: linear-gradient(90deg, #14532d 0%, #15803d 50%, #0891b2 100%);
    color: #fff;
    padding: 12px 14px;
    z-index: 999;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.sticky-bar p {
    margin: 0;
    font-weight: 600;
}

.sticky-bar .cta-button {
    padding: 9px 15px;
    font-size: 0.92rem;
}

footer {
    background: #111827;
    color: #e5e7eb;
    padding: 56px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #d1d5db;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding-top: 18px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .sticky-bar {
        flex-direction: column;
        text-align: center;
    }
}
