* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d7a3e;
    --secondary: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --success: #27ae60;
    --gradient: linear-gradient(135deg, #2d7a3e 0%, #27ae60 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.95) 0%, rgba(30, 90, 46, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232d7a3e" width="1200" height="600"/><path fill="%23ffffff" fill-opacity="0.05" d="M0 300L50 283.3C100 266.7 200 233.3 300 233.3C400 233.3 500 266.7 600 283.3C700 300 800 300 900 283.3C1000 266.7 1100 233.3 1150 216.7L1200 200V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin: 15px 0;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 25px 0;
    font-weight: 500;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    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.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 122, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
   
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.products-section > .container > p {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.25);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.product-name-hi {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-category {
    display: inline-block;
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
}

.product-price {
    font-weight: 600;
    color: var(--primary);
    margin: 10px 0;
}

/* About Preview */
.about-preview {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}

.about-content strong {
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient);
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: block;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1e5a2e 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.no-products, .no-content {
    text-align: center;
    padding: 40px;
    color: var(--gray);
}

/* Product Detail */
.product-detail {
    padding: 60px 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
}

.product-name-hi-large {
    font-size: 1.5rem;
    color: var(--gray);
    margin: 10px 0;
}

.product-category-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    margin: 15px 0;
}

.product-description {
    margin: 20px 0;
    line-height: 1.8;
}

.product-meta {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Products Page */
.products-page {
    padding: 60px 20px;
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Bulk Orders */
.bulk-orders-section {
    padding: 60px 20px;
}

.bulk-orders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.contact-info-box {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Gallery */
.gallery-section {
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 15px;
}

/* Directors */
.directors-section {
    padding: 60px 20px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.director-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.director-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.director-info {
    padding: 25px;
}

.director-designation {
    color: var(--primary);
    font-weight: 600;
    margin: 10px 0;
}

.director-bio {
    color: var(--gray);
    line-height: 1.8;
}

/* About & Legal Pages */
.about-content, .legal-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-main h2, .legal-section h2 {
    color: var(--primary);
    margin: 30px 0 15px;
}

.about-list {
    margin: 20px 0;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
}

.legal-section {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-grid,
    .product-detail-grid,
    .bulk-orders-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    margin-bottom: 30px;
}

.admin-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 15px;
}

.admin-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.admin-nav a:hover {
    background: var(--primary);
}

.admin-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background: var(--light);
    font-weight: 600;
}

.table tr:hover {
    background: var(--light);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.badge-new {
    background: #3498db;
    color: var(--white);
}

.badge-contacted {
    background: var(--secondary);
    color: var(--white);
}

.badge-closed {
    background: var(--gray);
    color: var(--white);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1e5a2e 100%);
}

.login-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 20px;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.scroll-top.show {
    display: flex;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Improved responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

/* Product info improvements */
.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-name-hi {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--success));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0;
    font-weight: 500;
}

.product-price {
    font-weight: 600;
    color: var(--secondary);
    margin: 12px 0;
    font-size: 1.05rem;
}

/* Enhanced header */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved product card hover effects */
.product-info .btn {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 8px;
    padding: 12px;
}

.product-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
}

/* Enhanced footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after, .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Badge improvements */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
    z-index: 10;
}

/* Improved text center utility */
.text-center {
    text-align: center;
}

.text-center .btn {
    margin-top: 30px;
}

/* Contact info styling */
.contact-info-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-box p {
    margin: 10px 0;
    line-height: 1.8;
}

.contact-info-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Bulk form styling */
.bulk-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bulk-info {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--dark);
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Print styles */
@media print {
    .header, .footer, .scroll-top, .cta-section {
        display: none;
    }
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.slider-btn.next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 10px;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* ========================================
   ANIMATED COUNTER SECTION
   ======================================== */
.counter-section {
    background: linear-gradient(135deg, #2d7a3e 0%, #27ae60 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.counter-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.counter-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
}

.counter-number::after {
    content: '+';
    font-size: 2.5rem;
    margin-left: 5px;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ========================================
   ABOUT SECTION ENHANCED
   ======================================== */
.about-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-top: 20px;
}

.about-text {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-feature-item:hover .feature-icon {
    color: var(--white);
}

/* ========================================
   VISION & MISSION SECTION
   ======================================== */
.vision-mission-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--light), var(--white));
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(45, 122, 62, 0.2);
    border-color: var(--primary);
}

.vision-card {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(255,255,255,1));
}

.mission-card {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(255,255,255,1));
}

.values-card {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05), rgba(255,255,255,1));
}

.vm-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ======================================== */
@media (max-width: 768px) {
    /* Slider Mobile */
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    /* Counter Mobile */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-icon {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 0.95rem;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Vision Mission Mobile */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-card {
        padding: 40px 25px;
    }
    
    .vm-icon {
        font-size: 3.5rem;
    }
    
    .vm-card h3 {
        font-size: 1.5rem;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Features Mobile */
        .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-item {
        padding: 25px 15px;
    }
}

/* ========================================
   ADDITIONAL FARMER-THEMED ELEMENTS
   ======================================== */
.farmer-pattern {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(45, 122, 62, 0.03) 35px, rgba(45, 122, 62, 0.03) 70px);
}

.wheat-decoration {
    position: relative;
}

.wheat-decoration::before {
    content: '🌾';
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Organic shapes */
.organic-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(45, 122, 62, 0.05);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Leaf decoration */
.leaf-decoration {
    position: relative;
}

.leaf-decoration::after {
    content: '🍃';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
}

/* Tractor icon animation */
.tractor-icon {
    display: inline-block;
    animation: drive 3s linear infinite;
}

@keyframes drive {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}

/* Harvest theme colors */
.harvest-gold {
    color: #f39c12;
}

.earth-brown {
    color: #8b4513;
}

.sky-blue {
    color: #3498db;
}

.grass-green {
    color: #27ae60;
}

/* Seed to plant animation */
@keyframes grow {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.grow-animation {
    animation: grow 0.6s ease-out;
}

/* Sun rays effect */
.sun-rays {
    position: relative;
}

.sun-rays::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Improved accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-slider,
    .slider-btn,
    .slider-dots,
    .scroll-top,
    .header,
    .footer,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.03) 0%, rgba(255,255,255,1) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 122, 62, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(45, 122, 62, 0.2);
    border-color: var(--primary);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(10deg);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Enhanced Products Section */
.products-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.products-section .section-header {
    margin-bottom: 60px;
}

/* Product card enhancements */
.product-card {
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

/* Farmer testimonial style */
.testimonial-farmer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 5px solid var(--primary);
}

/* Harvest season badge */
.season-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #27ae60, #2d7a3e);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.4);
    z-index: 10;
}

/* Organic badge */
.organic-badge {
    background: linear-gradient(135deg, #27ae60, #16a085);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

/* Farm fresh indicator */
.fresh-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.fresh-indicator::before {
    content: '●';
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Mobile optimizations for new sections */
@media (max-width: 768px) {
    .why-grid {
      
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .why-card {
        padding: 4px 5px;
    }
    
    .why-icon {
        font-size: 3rem;
    }
    
    .why-card h3 {
        font-size: 1.3rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION ENHANCED
   ======================================== */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(45, 122, 62, 0.15);
    border-color: var(--primary);
}

.testimonial-rating {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid var(--light);
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION ENHANCED
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #2d7a3e 0%, #27ae60 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.cta-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0;
    padding: 15px 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-buttons {
    margin: 40px 0 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-buttons .btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px) scale(1.05);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-contact {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.cta-contact p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.cta-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.cta-contact a:hover {
    border-bottom-color: var(--white);
    padding-bottom: 3px;
}

/* Mobile responsive for testimonials and CTA */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-highlight {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .cta-icon {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-contact p {
        font-size: 1rem;
    }
}


/* ========================================
   HERO SLIDER STYLES
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 60px;
    margin-left: 80px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #2d7a3e;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        padding: 30px 20px;
        margin-left: 20px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        margin-left: 10px;
        padding: 20px 15px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-text {
        font-size: 0.95rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}


/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #2d7a3e;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2d7a3e, #27ae60);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    padding-top: 15px;
}

/* Ensure sections don't overlap */
section {
    position: relative;
    clear: both;
}


/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    color: #2d7a3e;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2d7a3e;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #f0f8f4;
    transform: translateX(5px);
}

.contact-item h3 {
    color: #2d7a3e;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-item a {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #27ae60;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: #2d7a3e;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3e;
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #27ae60;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
}


/* ========================================
   TESTIMONIALS SLIDER
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(45, 122, 62, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a3e, #27ae60);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: #2d7a3e;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-nav-btn:hover {
    background: #2d7a3e;
    color: white;
    border-color: #2d7a3e;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-btn.prev {
    left: 0;
}

.testimonial-nav-btn.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 122, 62, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot:hover {
    background: rgba(45, 122, 62, 0.6);
}

.testimonial-dot.active {
    background: #2d7a3e;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 280px;
        padding: 30px 25px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 25px 20px;
    }
    
    .testimonial-quote {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}


/* ========================================
   PRODUCT CARDS ENHANCEMENT
   ======================================== */
.product-image {
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
    z-index: 2;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

.product-price {
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.product-card .btn-small {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.product-card .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.product-card form button {
    transition: all 0.3s;
}

.product-card form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}


/* Category Badge */
.category-badge {
    display: inline-block;
   
    
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
   
    transition: all 0.3s;
}

.category-badge:hover {
   
    color: white;
    
}

.product-category {
    margin: 10px 0;
}


/* ===================================
   User Profile Dropdown Styles
   =================================== */

.language-selector,
.user-profile-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.lang-btn,
.profile-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.profile-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.flag-icon {
    font-size: 16px;
}

.profile-icon {
    font-size: 18px;
}

.profile-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn.active .dropdown-arrow,
.profile-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown,
.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.lang-dropdown {
    min-width: 180px;
    background: #ffffff;
}

.lang-dropdown.show,
.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    padding: 20px;
    background: linear-gradient(135deg, #2d7a3e 0%, #1e5a2d 100%);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #2d7a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.profile-info {
    flex: 1;
}

.profile-name-full {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-user {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.role-vendor {
    background: rgba(255, 193, 7, 0.3);
    color: #fff;
}

.role-admin {
    background: rgba(220, 53, 69, 0.3);
    color: #fff;
}

.profile-menu {
    padding: 10px 0;
    background: #ffffff;
}

.profile-menu-item,
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 500;
}

.profile-menu-item:hover,
.lang-option:hover {
    background: #f0f7f1;
    color: #2d7a3e !important;
}

.profile-menu-item span,
.lang-option span {
    color: inherit !important;
}

.profile-dropdown a {
    color: #333333 !important;
}

.profile-dropdown a:hover {
    color: #2d7a3e !important;
}

.profile-menu-item .menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.profile-divider {
    height: 1px;
    background: #e9ecef;
    margin: 10px 0;
}

.logout-item {
    color: #dc3545 !important;
}

.logout-item:hover {
    background: #fff5f5;
    color: #c82333 !important;
}

.logout-item span {
    color: inherit !important;
}

.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.cart-icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Header Icons (Cart & Wishlist) */
.header-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-icon-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header-icon {
    font-size: 18px;
    filter: grayscale(0);
}

.header-icon-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-icon-count:empty {
    display: none;
}

/* Location Selector */
.location-selector {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.location-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.location-icon {
    font-size: 14px;
}

#currentLocation {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.location-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 280px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.location-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.location-dropdown-header {
    padding: 12px;
}

.detect-location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.detect-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.detect-location-btn .icon {
    font-size: 16px;
}

.location-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0 12px;
}

.location-search {
    padding: 12px;
}

.location-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s;
}

.location-search-input:focus {
    outline: none;
    border-color: #667eea;
}

.popular-cities {
    max-height: 250px;
    overflow-y: auto;
}

.location-section-title {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 13px;
}

.location-option:hover {
    background: #f5f5f5;
}

.location-option .location-icon {
    font-size: 14px;
    opacity: 0.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-selector,
    .user-profile-dropdown,
    .cart-icon-link {
        margin-left: 8px;
    }
    
    .header-icon-link {
        width: 36px;
        height: 36px;
        margin-left: 6px;
    }
    
    .header-icon {
        font-size: 16px;
    }
    
    .header-icon-count {
        font-size: 9px;
        padding: 1px 4px;
        min-width: 16px;
    }
    
    .profile-name {
        display: none;
    }
    
    .profile-btn {
        padding: 8px 12px;
    }
    
    .profile-dropdown {
        min-width: 260px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .top-bar-left .top-item {
        display: none;
    }
    
    .top-bar-left .top-item:first-child {
        display: inline-block;
    }
    
    .profile-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        min-width: 100%;
    }
}


/* ===================================
   Mobile User Icons & Profile
   =================================== */

.mobile-icons {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(45, 122, 62, 0.1);
    border: 1px solid rgba(45, 122, 62, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-icon-btn:hover {
    background: rgba(45, 122, 62, 0.2);
    transform: scale(1.05);
}

.mobile-icon-btn .icon {
    font-size: 20px;
}

.mobile-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

/* Mobile User Profile in Menu */
.mobile-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #2d7a3e 0%, #1e5a2d 100%);
    margin: -20px -20px 0 -20px;
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #2d7a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.mobile-user-info {
    flex: 1;
}

.mobile-user-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.mobile-user-role {
    display: flex;
}

.menu-section-title {
    padding: 15px 20px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logout-link {
    color: #dc3545 !important;
}

.logout-link:hover {
    background: #fff5f5 !important;
}

/* Show mobile icons on tablet and mobile */
@media (max-width: 992px) {
    .mobile-icons {
        display: flex;
    }
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
    .mobile-menu-overlay {
        padding: 20px;
    }
    
    .mobile-user-profile {
        border-radius: 12px 12px 0 0;
    }
}

/* Hide desktop profile dropdown on mobile */
@media (max-width: 992px) {
    .language-selector,
    .user-profile-dropdown,
    .cart-icon-link {
        display: none !important;
    }
}
