@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #004a99;
    --accent: #d4af37;
    --bg: #f8fafc;
    --text: #1e293b;
    --glass: rgba(255, 255, 255, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Gradients */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 74, 153, 0.1) 0%, rgba(255,255,255,0) 70%);
    filter: blur(40px);
    border-radius: 50%;
}

.blob-1 { top: -10%; left: -10%; }
.blob-2 { bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(255,255,255,0) 70%); }

/* Glassmorphism Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 4rem 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Info Cards */
.intro-text {
    padding: 2rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 74, 153, 0.1);
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Purchase Area (Clean Layout) */
.purchase-area {
    padding: 6rem 5%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.purchase-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    align-items: center;
}

.purchase-visual img {
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
}

.price-box {
    margin-bottom: 2rem;
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.save-tag {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.actions-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.btn-primary-rect {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.2);
}

.affiliate-box-new {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.affiliate-dropdown-teaser {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn-affiliate {
    background: #000;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 800;
    border-radius: 5px;
    cursor: pointer;
}

.country-select {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Cleanup Adjustments */
.spotlight, .price-container, .discount-label, .btn-secondary {
    display: none;
}

footer {
    padding: 4rem 5%;
    background: #f1f5f9;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero { padding: 2rem 5%; text-align: center; }
    .spotlight { border-radius: 30px; }
    .price-main { font-size: 2.2rem; }
    .ingredients-detail, .purchase-area { padding: 3rem 5%; }
    .intro-text, .system-grid { padding: 1.5rem 5%; }
}

/* Ingredients Section Styles */
.ingredients-detail {
    padding: 6rem 5%;
    background: white;
}

.badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 74, 153, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: inline-block;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.ingredient-card {
    text-align: left;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    background: #fbfbfb;
    border-radius: 0 20px 20px 0;
}

.ingredient-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.ingredient-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.optimized-note {
    padding: 2rem;
    background: linear-gradient(90deg, #f1f5f9 0%, white 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
