/* ===== VARIABLES CSS ===== */
:root {
    --honey-gold: #F5A623;
    --honey-dark: #D4890C;
    --honey-light: #FFD93D;
    --cream: #FFF8E7;
    --brown-dark: #4A3728;
    --brown-light: #8B7355;
    --green-nature: #5D8B3E;
    --green-dark: #3D5A28;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #E0E0E0;
    --gray-dark: #666666;
    --error: #E74C3C;
    --success: #27AE60;
    
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--brown-dark);
    background-color: var(--cream);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--brown-dark);
    border: 2px solid var(--honey-gold);
}

.btn-secondary:hover {
    background: var(--honey-gold);
    color: var(--white);
}

.btn-green {
    background: linear-gradient(135deg, var(--green-nature), var(--green-dark));
    color: var(--white);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--brown-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    font-size: 2.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--brown-light);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--brown-dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--honey-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--brown-dark);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--honey-gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--brown-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
    padding: 2rem 0;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--green-nature);
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--brown-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--honey-gold);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--brown-light);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, var(--honey-light) 0%, var(--honey-gold) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

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

.floating-element {
    position: absolute;
    animation: floatSmall 4s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: -10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    bottom: 20%;
    right: -5%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    top: 30%;
    right: -15%;
    font-size: 2rem;
    animation-delay: 2s;
}

@keyframes floatSmall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ===== SHOP CLOSED BANNER ===== */
.shop-closed-banner {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.shop-closed-banner.visible {
    display: block;
}

.shop-closed-banner .emoji {
    margin: 0 8px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--brown-light);
    font-size: 0.95rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 5rem 0;
    background: var(--cream);
}

/* Product Showcase (Single Product Display) */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.product-showcase-image {
    position: relative;
}

.product-showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-emoji-fallback {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--honey-light), var(--honey-gold));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.product-showcase-info h3 {
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.product-label {
    display: inline-block;
    background: var(--honey-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-showcase-description {
    color: var(--brown-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--brown-dark);
    font-size: 1rem;
}

.product-formats h4 {
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.format-cards {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.format-card {
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--honey-gold);
    flex: 1;
}

.format-weight {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.format-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--honey-dark);
}

.product-contact {
    background: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    color: var(--brown-dark);
}

.product-contact a {
    color: var(--honey-dark);
    font-weight: 600;
    text-decoration: underline;
}

.product-contact a:hover {
    color: var(--honey-gold);
}

@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .product-showcase-image img,
    .product-emoji-fallback {
        height: 300px;
    }
    
    .product-showcase-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .format-cards {
        flex-direction: column;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--honey-light), var(--honey-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green-nature);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

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

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--honey-dark);
}

.product-weight {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.add-to-cart-btn {
    background: var(--honey-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--honey-dark);
}

.add-to-cart-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
}

/* Product Availability Status */
.product-availability {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.product-availability.available {
    color: var(--green-nature);
    background: rgba(93, 139, 62, 0.1);
}

.product-availability.unavailable {
    color: var(--error);
    background: rgba(231, 76, 60, 0.1);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, var(--green-nature), var(--green-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--brown-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 0;
    color: var(--brown-dark);
}

.about-list li::before {
    content: '✓';
    background: var(--green-nature);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--brown-dark);
}

.author-location {
    font-size: 0.85rem;
    color: var(--brown-light);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--brown-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--honey-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--honey-gold);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        height: 350px;
        font-size: 8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray);
    border-top-color: var(--honey-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== PHOTOS HERO ET ABOUT ===== */
.hero-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: var(--shadow-lg);
}

.about-image-container {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--green-nature), var(--green-dark));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 992px) {
    .hero-photo {
        height: 350px;
    }
}
