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

:root {
    /* Ngjyrat e markës Himalaya Botanique */
    --primary-teal: #008B8B;
    --primary-orange: #FF8C00;
    --secondary-green: #4CAF50;
    --dark-teal: #006666;
    --light-teal: #20B2AA;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Baloo Tammudu 2', cursive;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--background-light);
    color: var(--primary-teal);
    border-left-color: var(--primary-teal);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-orange), #FF7700);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-orange), #FF7700);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-showcase {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.certification {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cert-logo {
    width: 40px;
    height: 40px;
}

.cert-text {
    font-weight: 600;
    color: var(--secondary-green);
    font-size: 0.9rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
}

.section-title.orange {
    color: var(--primary-orange);
}

/* Unique Composition Section */
.unique-composition {
    padding: 80px 0;
    background: white;
}

.section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.certification-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-green);
}

.cosmos-logo img {
    width: 100%;
    max-width: 200px;
}

/* Free From Section */
.free-from {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.free-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.free-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5;
    border: 3px solid #FF5722;
}

.icon-circle img {
    width: 50px;
    height: 50px;
}

.free-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

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

.product-showcase-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image-container {
    position: relative;
    text-align: center;
}

.main-product-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.natural-ingredients {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ingredient-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.checkmark {
    background: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

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

.ingredient-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.ingredient-icon {
    margin-bottom: 1rem;
}

.ingredient-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.ingredient-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ingredient-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Ayurveda Section */
.ayurveda {
    padding: 80px 0;
    background: white;
}

.ayurveda-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.ayurveda-symbol {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
}

.ayurveda-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.ayurveda-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4CAF50;
    font-style: italic;
}

/* Where to Buy Section */
.where-to-buy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.retailers {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.retailer {
    text-align: center;
}

.retailer-logo {
    padding: 2rem 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.retailer-logo:hover {
    transform: translateY(-5px);
}

.retailer-logo.green {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.retailer-logo.blue {
    background: linear-gradient(135deg, #2196F3, #1565C0);
}

.retailer-logo.orange {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background: white;
}

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

.product-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.product-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

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

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5530 0%, #1b3a1e 100%);
    color: white;
    padding: 60px 0 40px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4CAF50;
}

.footer-certification {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-certification img {
    margin-bottom: 1rem;
}

.footer-certification p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-main {
        grid-template-columns: 1fr;
    }
    
    .ayurveda-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .retailers {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-showcase {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .natural-ingredients {
        flex-wrap: wrap;
    }
}

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

.hero-title,
.hero-subtitle,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Product Page Styles */
.breadcrumb {
    background: var(--background-light);
    padding: 120px 0 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-teal);
}

.separator {
    color: var(--text-light);
}

.current {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Product Hero */
.product-hero {
    padding: 40px 0 80px;
    background: var(--white);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-section {
    display: flex;
    gap: 1rem;
}

.main-product-image {
    flex: 1;
}

.product-main-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-thumb {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.product-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-variant {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-size {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.certification-badge img {
    width: 60px;
    height: 60px;
}

.certification-badge span {
    font-weight: 600;
    color: var(--secondary-green);
}

.product-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-icon {
    background: var(--secondary-green);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.buy-now-btn {
    background: linear-gradient(135deg, var(--primary-orange), #FF7700);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.find-store-btn {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.find-store-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Product Navigation */
.product-navigation {
    background: var(--background-light);
    padding: 2rem 0;
}

.nav-products {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-product {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.nav-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nav-product.prev {
    text-align: left;
}

.nav-product.next {
    text-align: right;
}

.nav-direction {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.nav-product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-teal);
}

/* Product Details Tabs */
.product-details {
    padding: 80px 0;
    background: var(--white);
}

.details-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--background-light);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
}

.tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.tab-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Ingredients List */
.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ingredient-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.ingredient-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.ingredient-info h4 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.ingredient-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Usage Steps */
.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-teal);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--background-light);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 1.5rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Active dropdown link */
.dropdown-link.active {
    background: var(--primary-teal);
    color: var(--white);
    border-left-color: var(--primary-orange);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-section {
        flex-direction: column-reverse;
    }
    
    .product-gallery {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-products {
        flex-direction: column;
    }
    
    .details-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .buy-now-btn,
    .find-store-btn {
        min-width: auto;
    }
}

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


/* Decorative Elements - Indian Rosettes */
.decorative-rosette {
    position: relative;
    display: inline-block;
}

.decorative-rosette::before {
    content: '❋';
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 1.5rem;
    color: var(--primary-orange);
    opacity: 0.7;
}

.decorative-rosette::after {
    content: '❋';
    position: absolute;
    top: -5px;
    right: -25px;
    font-size: 1.2rem;
    color: var(--primary-teal);
    opacity: 0.5;
}

/* Enhanced Section Titles with Decorative Elements */
.section-title-decorated {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-title-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-orange));
    border-radius: 2px;
}

.section-title-decorated::after {
    content: '❋ ❋ ❋';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-orange);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Minimalist Card Design */
.minimal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,139,139,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.minimal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-orange));
}

.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,139,139,0.15);
}

/* Indian Pattern Background */
.indian-pattern {
    position: relative;
}

.indian-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-teal) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--primary-orange) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    pointer-events: none;
}

/* Ayurvedic Leaf Elements */
.ayurvedic-leaf {
    position: relative;
}

.ayurvedic-leaf::before {
    content: '🍃';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0.6;
    transform: rotate(15deg);
}

/* Enhanced Typography for Baloo Tammudu 2 */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
    letter-spacing: -0.01em;
}

/* Improved Button Styles */
.cta-button,
.hero-cta,
.buy-now-btn {
    font-family: 'Baloo Tammudu 2', cursive;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.hero-cta::before,
.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before,
.hero-cta:hover::before,
.buy-now-btn:hover::before {
    left: 100%;
}

/* Minimalist Navigation */
.nav-link {
    font-family: 'Baloo Tammudu 2', cursive;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Enhanced Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,139,139,0.1);
    position: relative;
}

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

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

/* Soft Backgrounds */
.hero {
    background: linear-gradient(135deg, 
        rgba(0,139,139,0.02) 0%, 
        rgba(255,140,0,0.02) 100%);
}

.unique-composition {
    background: linear-gradient(135deg, 
        rgba(255,140,0,0.02) 0%, 
        rgba(76,175,80,0.02) 100%);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .decorative-rosette::before,
    .decorative-rosette::after {
        display: none;
    }
}

