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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 14px;
    color: #bbf7d0;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    background: white;
    color: #16a34a;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-shop-name {
    display: block;
    font-size: 56px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.hero-subtitle {
    display: block;
    color: #bbf7d0;
    font-size: 32px;
}

.hero-description {
    font-size: 20px;
    color: #dcfce7;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: white;
    color: #15803d;
}

.btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(22, 101, 52, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(22, 101, 52, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #bbf7d0;
}

.hero-right {
    display: none;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-offset {
    padding-top: 32px;
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 16px 16px;
    color: white;
}

.image-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.image-overlay p {
    font-size: 12px;
    color: #bbf7d0;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-decoration-top {
    top: -128px;
    right: -128px;
    width: 256px;
    height: 256px;
    background: white;
}

.hero-decoration-bottom {
    bottom: -192px;
    left: -192px;
    width: 384px;
    height: 384px;
    background: #166534;
    opacity: 0.2;
}

/* Products Section */
.products {
    padding: 64px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #d1fae5;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    transform: translateY(-4px);
}

.product-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #16a34a;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* Contact Section */
.contact {
    padding: 64px 0;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.contact-card svg {
    margin: 0 auto 12px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #bbf7d0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 32px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: #16a34a;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-social a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #16a34a;
}

.footer-copyright {
    font-size: 12px;
    color: #6b7280;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #16a34a;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #15803d;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(22, 163, 74, 0.6);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }

    .hero {
        padding: 120px 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-left {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-stats {
        margin: 0;
    }

    .hero-right {
        display: block;
    }

    .image-card img {
        height: 224px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.hero-left > * {
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.5s;
}