/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2a1810;
    background-color: #fefcf8;
}

/* CSS Variables - Brand Colors */
:root {
    --hibiscus: #dc143c;
    --hibiscus-light: #e63e5c;
    --hibiscus-dark: #b30f2c;
    --turmeric: #daa520;
    --turmeric-light: #f4c430;
    --turmeric-dark: #b8860b;
    --botanical: #228b22;
    --botanical-light: #32cd32;
    --botanical-dark: #006400;
    --primary: #228b22;
    --background: #fefcf8;
    --foreground: #2a1810;
    --border: #e5e7eb;
    --card: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-script {
    font-family: 'Dancing Script', cursive;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--hibiscus);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hibiscus-dark);
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-cart {
    width: 100%;
    background-color: var(--hibiscus);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
}

.btn-cart:hover {
    background-color: var(--hibiscus-dark);
}

.btn-icon {
    margin-left: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.desktop-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(218, 165, 32, 0.8) 50%, rgba(220, 20, 60, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
}

.hero-inner {
    max-width: 4xl;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 5rem;
    width: auto;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3rem;
    line-height: 1;
}

.title-script {
    display: block;
    font-family: 'Dancing Script', cursive;
    color: var(--turmeric-light);
    font-size: 2rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 2xl;
    margin-left: auto;
    margin-right: auto;
}

.hero-product {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    height: 12rem;
    width: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 2xl;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.text-content {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accent-line {
    height: 4px;
    width: 5rem;
    background-color: var(--turmeric);
}

.accent-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px var(--shadow);
    width: 100%;
    height: auto;
}

.about-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    max-width: 18rem;
    background-color: var(--card);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px var(--shadow);
    padding: 1.5rem;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: #111827;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Ingredients Section */
.ingredients-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.ingredients-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ingredient-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px var(--shadow);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-10px);
}

.ingredient-image {
    margin-bottom: 1.5rem;
}

.ingredient-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.ingredient-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.hibiscus-icon {
    background-color: rgba(220, 20, 60, 0.1);
}

.turmeric-icon {
    background-color: rgba(218, 165, 32, 0.1);
}

.botanical-icon {
    background-color: rgba(34, 139, 34, 0.1);
}

.ingredient-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.ingredient-description {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.ingredient-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hibiscus-tag {
    background-color: rgba(220, 20, 60, 0.1);
    color: var(--hibiscus);
}

.turmeric-tag {
    background-color: rgba(218, 165, 32, 0.1);
    color: var(--turmeric);
}

.botanical-tag {
    background-color: rgba(34, 139, 34, 0.1);
    color: var(--botanical);
}

/* Benefits Summary */
.benefits-summary {
    text-align: center;
}

.benefits-header {
    margin-bottom: 2rem;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.hibiscus-bg {
    background-color: rgba(220, 20, 60, 0.1);
}

.turmeric-bg {
    background-color: rgba(218, 165, 32, 0.1);
}

.botanical-bg {
    background-color: rgba(34, 139, 34, 0.1);
}

.primary-bg {
    background-color: rgba(34, 139, 34, 0.1);
}

.benefit-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.products-grid {
    display: grid;
    gap: 2rem;
    max-width: 6xl;
    margin: 0 auto 3rem;
}

.product-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 25px 50px -12px var(--shadow);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-img {
    width: 100%;
    height: 16rem;
    object-fit: contain;
    border-radius: 0.75rem;
    background-color: #f9fafb;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.product-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
}

.product-badge.bestseller {
    background-color: var(--turmeric);
}

.product-badge.save {
    background-color: var(--botanical);
}

.product-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    color: #fbbf24;
}

.star {
    font-size: 1rem;
}

.products-cta {
    text-align: center;
}

.shipping-info {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card, .form-card, .map-card {
    background-color: var(--card);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px var(--shadow);
    padding: 2rem;
}

.info-title, .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.phone-icon {
    background-color: rgba(34, 139, 34, 0.1);
}

.email-icon {
    background-color: rgba(218, 165, 32, 0.1);
}

.location-icon {
    background-color: rgba(220, 20, 60, 0.1);
}

.contact-label {
    font-weight: 600;
    color: #111827;
}

.contact-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-address {
    color: #6b7280;
}

.map-card {
    padding: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 16rem;
    background-color: #e5e7eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-icon {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.map-text {
    color: #6b7280;
}

.map-address {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #111827;
}

.form-input, .form-select, .form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.error-message {
    color: var(--hibiscus);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--botanical-light);
}

.footer-tagline {
    color: #d1d5db;
    font-style: italic;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-item {
    color: #d1d5db;
}

.social-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-note {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px var(--shadow);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 20rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
}

.toast-message {
    flex: 1;
    color: #111827;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    margin-left: 0.5rem;
}

.toast-close:hover {
    color: #111827;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .title-script {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-product-img {
        height: 16rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-main {
        font-size: 5rem;
    }
    
    .title-script {
        font-size: 4rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}