:root {
    --primary: #FF6B35;
    --secondary: #FFD23F;
    --dark: #2C1810;
    --cream: #FFF8E7;
    --green: #4A7C59;
    --accent: #E63946;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* Decorative background elements */
.bg-decoration {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Header/Navigation */
header {
    position: relative;
    padding: 1.5rem 5%;
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 100;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 3px 3px 0 var(--secondary);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    margin-top: -5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Lilita One', cursive;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text h1 .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--secondary);
    opacity: 0.5;
    z-index: -1;
    transform: skew(-5deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--green);
    border: 3px solid var(--green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--green);
    color: white;
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

.product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase::before {
    content: '🥔';
    position: absolute;
    font-size: 15rem;
    opacity: 0.15;
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-placeholder {
    text-align: center;
    color: white;
    z-index: 1;
}

.product-placeholder h3 {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.product-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    position: relative;
    padding: 5rem 5%;
    background: white;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark);
    line-height: 1.6;
}

/* Products Section - OPTIMIZED */
.products {
    position: relative;
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
    z-index: 1;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-icon {
    font-size: 8rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-variant {
    color: var(--green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: var(--primary);
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* Reseller Section */
.reseller {
    position: relative;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--green) 0%, #3a5f47 100%);
    z-index: 1;
    overflow: hidden;
}

.reseller::before {
    content: '💼';
    position: absolute;
    font-size: 25rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    pointer-events: none;
}

.reseller-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reseller-content h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.reseller-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 3rem;
    font-weight: 600;
}

.reseller-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: white;
    line-height: 1.6;
}

.reseller-cta {
    background: white;
    color: var(--green);
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.reseller-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    background: var(--secondary);
}

/* Location Section */
.location {
    position: relative;
    padding: 5rem 5%;
    background: white;
    z-index: 1;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.location-info h3 {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-text h4 {
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.location-text p {
    color: var(--dark);
    line-height: 1.6;
}

.location-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.location-text a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content h3 {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-content p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* SEO Content Section */
.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    position: relative;
    z-index: 1;
}

.seo-content h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    font-size: 1.8rem;
    color: var(--green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .product-showcase {
        height: 400px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .reseller-content h2 {
        font-size: 2.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .product-showcase {
        height: 300px;
    }
    
    .product-placeholder h3 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-icon {
        font-size: 6rem;
    }
    
    .reseller-content h2 {
        font-size: 2rem;
    }
    
    .reseller-subtitle {
        font-size: 1.1rem;
    }
    
    .reseller-benefits {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}
