/*
==================================================
PRAYAG AGRO INDUSTRIES - UNIFIED STYLE.CSS
==================================================
Enhanced e-commerce website stylesheet with modern design
and traditional agricultural theming.

Table of Contents:
1. CSS Variables & Root Settings
2. Base Styles & Typography
3. Top Bar & Navigation
4. Hero Section & Carousel
5. Categories Section
6. Product Cards & Carousels
7. Production Process Section
8. CTA Section
9. Compact Offer Section
10. Enhanced Product Sections
11. Testimonials & Features
12. Footer Styles
13. Utility Classes
14. Mobile Responsive Design

Author: Prayag Agro Development Team
Version: 2.0
==================================================
*/

/* ===============================================
   1. CSS VARIABLES & ROOT SETTINGS
   =============================================== */
   :root {
    /* Primary Brand Colors */
    --primary-color: #2E7D32;
    --secondary-color: #FFC107;
    --tertiary-color: #FF6B35;
    --accent-color: #4CAF50;
    --danger-color: #FF4444;
    
    /* Extended Color Palette */
    --wood-color: #D2B48C;
    --earth-color: #8B7355;
    --vintage-gold: #DAA520;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    
    /* Border & Background */
    --border-light: #e9ecef;
    --body-color: #f8f9fa;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    
    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    --gradient-secondary: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    --gradient-tertiary: linear-gradient(135deg, #FF6B35 0%, #FF5722 100%);
    
    /* Additional Utility Colors */
    --blue-color: #007bff;
    --yellow-color: #FFC107;
    --border-color: #dee2e6;
}

/* ===============================================
   2. BASE STYLES & TYPOGRAPHY
   =============================================== */
body {
    font-family: 'Sora', sans-serif;
    background-color: var(--body-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===============================================
   3. TOP BAR & NAVIGATION
   =============================================== */

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    font-size: 0.85rem;
}

.top-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.top-links a:hover {
    color: var(--yellow-color);
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--yellow-color);
}

/* Main Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.nav-icon {
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

/* ===============================================
   4. HERO SECTION & CAROUSEL
   =============================================== */

/* Hero Carousel Styles */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.carousel-background {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    animation-duration: 1.5s;
}

.hero-title {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Custom carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    opacity: 1;
}

/* Custom control styling */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-size: 50%;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 0.8;
}

.play-icon {
    display: inline;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
    width: 30px;
    height: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ===============================================
   5. CATEGORIES SECTION
   =============================================== */

/* Traditional Green Background for Categories */
.category-section,
.pt-5.bg-light {
    background: linear-gradient(135deg,
            #f8fdf8 0%,
            #e8f5e8 25%,
            #f0f8f0 50%,
            #e5f3e5 75%,
            #f5fbf5 100%) !important;
    position: relative;
}

/* Add texture overlay for traditional feel */
.pt-5.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(139, 195, 74, 0.06) 8px, rgba(139, 195, 74, 0.06) 16px),
        repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(76, 175, 80, 0.04) 8px, rgba(76, 175, 80, 0.04) 16px);
    background-size: 24px 24px;
    background-position: 0 0, 7px 7px, 0 0, 0 0;
    pointer-events: none;
    z-index: 1;
    opacity: 2;
}

/* Ensure content stays above overlay */
.pt-5.bg-light .container {
    position: relative;
    z-index: 2;
}

/* Traditional border pattern */
.pt-5.bg-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            #8bc34a 0px,
            #8bc34a 10px,
            #689f38 10px,
            #689f38 20px,
            #558b2f 20px,
            #558b2f 30px,
            #689f38 30px,
            #689f38 40px);
    opacity: 0.3;
}

/* Category Carousel Styles */
.category-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 30px;
    background: transparent;
    margin: 20px 0;
}

.category-carousel-inner {
    display: flex;
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.category-carousel:hover .category-carousel-inner {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.category-item {
    flex: 0 0 auto;
    width: 170px;
    margin-right: 15px;
    transition: all 0.3s ease;
    padding: 10px 5px;
}

.category-item:hover {
    transform: scale(1.05);
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 195, 74, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.2);
    border-color: rgba(139, 195, 74, 0.3);
}

.img-container {
    position: relative;
    overflow: hidden;
    height: 140px;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(195, 52, 39, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover .img-container::before {
    opacity: 1;
}

.category-content {
    background: white;
    padding: 12px 8px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title {
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--primary-color);
}

.category-count {
    color: #777;
    font-size: 12px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-count {
    color: #555;
}

/* Category Section Title */
.category-section-title {
    position: relative;
    margin-bottom: 2rem;
}

.category-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.category-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--dark-color);
    font-size: 18px;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.category-carousel:hover .carousel-control {
    opacity: 1;
}

.carousel-control:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(195, 52, 39, 0.4);
    border-color: var(--primary-color);
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}




/* ===============================================
   6. PRODUCT CARDS & CAROUSELS
   =============================================== */

/* Product Rating */
.product-rating {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 13px;
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.product-carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
    margin: 0 -10px;
}

.product-item {
    flex: 0 0 auto;
    padding: 0 10px;
    width: 50%;
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

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

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    left: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    border: 2px solid white;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.product-badge::before {
    content: "⭐";
    font-size: 10px;
}

/* Badge Variations */
.product-badge.best-seller {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.product-badge.sale {
    background: linear-gradient(135deg, #F68B24 0%, #FF6B35 100%);
    box-shadow: 0 2px 8px rgba(246, 139, 36, 0.3);
}

.product-badge.sale::before {
    content: "🔥";
}

.product-badge.new,
.new-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.product-badge.new::before,
.new-badge::before {
    content: "✨";
    font-size: 15px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #C33427 0%, #E54B3B 100%);
    box-shadow: 0 2px 8px rgba(195, 52, 39, 0.4);
}

.product-badge.featured::before {
    content: "👑";
}

.product-badge.organic {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.product-badge.organic::before {
    content: "🌿";
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 8px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 15px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
}

.discount-badge::before {
    content: "💸";
    font-size: 9px;
}

/* Out of Stock Badge */
.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 25px;
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.out-of-stock-badge::before {
    content: "🚫";
    font-size: 10px;
}

/* Product Quick View */
.product-quick-view {
    position: absolute;
    top: 45px;
    right: 10px;
    background-color: white;
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.product-quick-view:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-title {
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.3;
    font-size: 16px;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-color);
}

/* Product Pricing */
.product-price {
    margin-bottom: 10px;
}

.current-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.product-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0px; 
    flex-grow: 1;
}

/* Product Navigation */
.product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.product-nav:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-nav-prev,
.product-nav-prev-new {
    left: 5px;
}

.product-nav-next,
.product-nav-next-new {
    right: 5px;
}

.product-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* ===============================================
   8. CTA SECTION
   =============================================== */

.cta-section {
    background:
        linear-gradient(135deg, rgba(46, 125, 50, 0.95) 0%, rgba(76, 175, 80, 0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vintage-gold) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 4px 10px rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.cta-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.cta-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.cta-feature:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.feature-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(10deg);
    border-color: var(--secondary-color);
}

.feature-text {
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--vintage-gold) 0%, var(--secondary-color) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: white;
    color: white;
    text-decoration: none;
}

.btn-cta-secondary {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: white;
    color: white;
    text-decoration: none;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: floatRandom 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatRandom {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) rotate(3deg) scale(1.05);
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ===============================================
   9. COMPACT OFFER SECTION
   =============================================== */

.compact-offer-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.offer-banner {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--danger-color) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.discount-tag {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Banner Product Showcase */
.banner-product-showcase {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-product-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.banner-product-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.banner-product-image {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #DAA520 100%);
    border-radius: 8px;
    margin: 0 auto 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.banner-product-image::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 4px;
}

.banner-product-image i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.banner-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.banner-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.banner-product-size {
    font-size: 0.65rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.banner-product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
}

.banner-original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}

.banner-sale-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.banner-product-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--danger-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.timer-compact {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.timer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.countdown-compact {
    display: flex;
    gap: 0.5rem;
}

.time-box {
    background: white;
    color: #333;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 35px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stock-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}

.stock-bar-mini {
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    width: 60px;
}

.stock-progress-mini {
    background: var(--danger-color);
    height: 100%;
    width: 25%;
    animation: stockGlow 2s ease-in-out infinite;
}

@keyframes stockGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-compact {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn-shop {
    background: white;
    color: var(--tertiary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--tertiary-color);
    text-decoration: none;
}

.social-proof {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Premium Quality Card */
.quality-card {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    height: 100%;
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: white;
}

.quality-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-view {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white;
    text-decoration: none;
}

/* ===============================================
   10. ENHANCED PRODUCT SECTIONS
   =============================================== */

/* Enhanced Section Styling */
.enhanced-product-section {
    padding: 2rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    position: relative;
}

.enhanced-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Enhanced Section Title */
.enhanced-section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.enhanced-section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.enhanced-section-title h6 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}

.enhanced-section-title h6::before,
.enhanced-section-title h6::after {
    content: '🌾';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1rem;
}

.enhanced-section-title h6::before {
    left: -2rem;
}

.enhanced-section-title h6::after {
    right: -2rem;
}

.enhanced-section-title h2 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.enhanced-section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Product Card */
.enhanced-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enhanced-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.enhanced-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

/* Enhanced Product Image */
.enhanced-product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.enhanced-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-product-card:hover .enhanced-product-img {
    transform: scale(1.08);
}

/* Enhanced Product Badges */
.enhanced-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 25px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    border: 2px solid white;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.enhanced-product-badge.featured::before {
    content: '⭐';
    font-size: 10px;
}

.enhanced-product-badge.organic {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.enhanced-product-badge.organic::before {
    content: '🌿';
    font-size: 10px;
}

.enhanced-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-tertiary);
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.enhanced-out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Enhanced Quick View */
.enhanced-quick-view {
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-decoration: none;
    box-shadow: 0 4px 12px var(--shadow-light);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enhanced-product-card:hover .enhanced-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.enhanced-quick-view:hover {
    background: var(--primary-color);
    color: white;
    border-color: white;
    transform: scale(1.1);
}

/* Enhanced Product Info */
.enhanced-product-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.enhanced-category-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
}

.enhanced-product-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.enhanced-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.enhanced-product-title a:hover {
    color: var(--primary-color);
}

/* Enhanced Product Rating */
.enhanced-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--secondary-color);
    font-size: 14px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

/* Enhanced Product Price */
.enhanced-product-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.enhanced-current-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.enhanced-original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.enhanced-discount-percent {
    background: var(--gradient-tertiary);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Enhanced Add to Cart Button */
.enhanced-add-to-cart {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.enhanced-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.enhanced-add-to-cart:hover::before {
    left: 100%;
}

.enhanced-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
    background: var(--gradient-secondary);
}

.enhanced-add-to-cart:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Enhanced Section Divider */
.enhanced-section-divider {
    height: 2px;
    background: var(--gradient-primary);
    margin: 2rem 0;
    border-radius: 15px;
    position: relative;
}

.enhanced-section-divider::before {
    content: '🌾';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Enhanced View All Button */
.enhanced-view-all-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.enhanced-view-all-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    color: white;
    text-decoration: none;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }
.fade-in-up:nth-child(7) { animation-delay: 0.7s; }
.fade-in-up:nth-child(8) { animation-delay: 0.8s; }

/* ===============================================
   11. SECTION TITLES & GENERAL STYLES
   =============================================== */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h6 {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 3rem 0;
}

/* ===============================================
   12. BUTTONS & FORM ELEMENTS
   =============================================== */

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(195, 52, 39, 0.3);
}

.btn-danger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 500;
}

.btn-danger:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-success {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

/* Product Action Buttons */
.btn-add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-view-details {
    background-color: var(--blue-color);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-view-details:hover {
    background-color: #0069d9;
    color: white;
}

/* Add to Cart Button States */
.add-to-cart-btn:disabled {
    opacity: 0.8;
}

.add-to-cart-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.add-to-cart-btn.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-secondary:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* ===============================================
   13. FEATURES & TESTIMONIALS
   =============================================== */

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

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

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    position: relative;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.testimonial-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #f8f9fa;
    transform: rotate(45deg);
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===============================================
   14. FOOTER STYLES
   =============================================== */

/* Footer */
.footer {
    background-color: #0f1117;
    color: #e1e1e1;
}

.footer-main {
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(195, 52, 39, 0.1), transparent);
    opacity: 0.1;
    pointer-events: none;
}

.footer-title {
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #e1e1e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-contact .icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 1rem;
}

.footer-contact .content {
    display: flex;
    flex-direction: column;
}

.footer-contact .content span {
    color: white;
    margin-bottom: 0.25rem;
}

.footer-contact .content small {
    color: #a0a0a0;
    font-size: 0.85rem;
}

.footer-bottom {
    background-color: #080a10;
    padding: 1.5rem 0;
}

.payment-methods span {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-methods span:hover {
    opacity: 1;
}
/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 65px;
    right: 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.floating-cta .btn {
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.floating-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#backToTop {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}



/* ===============================================
   15. About Section
   =============================================== */

/* About Page */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 5rem;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(195, 52, 39, 0.8) 0%, rgba(246, 139, 36, 0.7) 100%);
}

.about-content {
    position: relative;
    z-index: 1;
}

.process-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    position: relative;
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team Section */
.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.team-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    background-color: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}


/* ===============================================
   15. SPECIAL PAGES & ADDITIONAL COMPONENTS
   =============================================== */

/* Newsletter Section */
.newsletter-section {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.newsletter-form .form-control {
    height: 52px;
    border-radius: 30px 0 0 30px;
    border: none;
    padding-left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
}


/* About Page Styles */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 5rem;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(195, 52, 39, 0.8) 0%, rgba(246, 139, 36, 0.7) 100%);
}

.about-content {
    position: relative;
    z-index: 1;
}

.process-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    position: relative;
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Page */
.contact-info-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Product Details Page */
.product-details-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-thumbnail.active {
    border-color: var(--primary-color);
}

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

.product-details-info {
    padding: 2rem;
    background-color: white;
}

/* ===============================================
   MOBILE RESPONSIVE STYLES
   =============================================== */

/* ===============================================
   MOBILE FIRST APPROACH - BASE STYLES
   =============================================== */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    
    /* Base Typography Adjustments */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Container Adjustments */
    .container,
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* ===============================================
       TOP BAR & NAVIGATION - MOBILE
       =============================================== */
    
    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-links {
        display: none; /* Hide top links on mobile */
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        font-size: 0.9rem;
    }
    
    /* Main Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.3rem 0.5rem;
        font-size: 1rem;
        border: none;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .nav-icon {
        font-size: 1.1rem;
        margin: 0 5px;
    }
    
    /* Mobile Cart/Search Icons */
    .navbar-nav.ms-auto {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    /* ===============================================
       HERO SECTION - MOBILE
       =============================================== */
    
    .hero-carousel-section {
        margin-top: 0;
    }
    
    .carousel-background {
       height: 20vh;
    }
    
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        background-size: 60%;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    /* ===============================================
       CATEGORIES SECTION - MOBILE
       =============================================== */
    
    .category-section,
    .pt-5.bg-light {
        padding: .8rem .1 !important;
    }
    
    /* Category Carousel Mobile */
    .category-carousel {
        padding: 15px 0 20px;
        margin: 15px 0;
    }
    
    .category-carousel-inner {
        animation: infiniteScrollMobile 25s linear infinite;
    }
    
    @keyframes infiniteScrollMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .category-item {
        width: 140px;
        margin-right: 12px;
        padding: 8px 3px;
    }
    
    .category-card {
        border-radius: 10px;
    }
    
    .img-container {
        height: 110px;
    }
    
    .category-content {
        padding: 10px 6px 12px;
    }
    
    .category-title {
        font-size: 13px;
        line-height: 1.1;
    }
    
    .category-count {
        font-size: 11px;
    }
    
    /* Category Carousel Controls - Mobile */
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    /* Category Section Title */
    .category-section-title,
    .enhanced-section-title {
        margin-bottom: 2rem;
    }
    
    .enhanced-section-title h2 {
        font-size: 2rem;
    }
    
    .enhanced-section-title h6::before,
    .enhanced-section-title h6::after {
        display: none; /* Hide decorative elements on mobile */
    }
    
    /* ===============================================
       PRODUCT CARDS - MOBILE
       =============================================== */
    
    /* Product Carousel */
    .product-carousel {
        padding: 5px 0;
    }
    
    .product-item {
        width: 100%;
        padding: 0 5px;
    }
    
    /* Standard Product Cards */
    .product-card {
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 15px;
        margin: 6px 0;
    }
    
    .product-description {
        font-size: 12px;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 15px;
    }
    
    .original-price {
        font-size: 13px;
    }
    
    /* Product Badges - Mobile */
    .product-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    
    .discount-badge {
        top: 8px;
        right: 6px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .out-of-stock-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .product-quick-view {
        top: 35px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    /* Product Navigation */
    .product-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .product-nav-prev,
    .product-nav-prev-new {
        left: 3px;
    }
    
    .product-nav-next,
    .product-nav-next-new {
        right: 3px;
    }
    
    /* ===============================================
       ENHANCED PRODUCT CARDS - MOBILE
       =============================================== */
    
    .enhanced-product-section {
        padding: 1rem 0;
    }
    
    .enhanced-product-card {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .enhanced-product-info {
        padding: .5rem;
    }
    
    .enhanced-product-title {
        font-size: .75rem;
        margin-bottom: 0.6rem;
    }

    .enhanced-category-badge{
        background: var(--gradient-secondary);
        color: white;
        padding: 2px 6px;
        font-size: 8px;
        font-weight: 600;
        border-radius: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        align-self: flex-start;
        margin-bottom: 1rem;
        box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
    }

    .enhanced-product-price {
        margin-bottom: .2rem;
        display: flex;
        align-items: center;
        gap: 0.2rem;
        flex-wrap: wrap;
    }

    
    .enhanced-current-price {
        font-size: 1rem;
    }
    
    .enhanced-original-price {
        font-size: 0.9rem;
    }
    
    .enhanced-add-to-cart {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .enhanced-product-badge {
        top: 12px;
        left: 12px;
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .enhanced-discount-badge {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .enhanced-quick-view {
        top: 50px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    .enhanced-add-to-cart {
        padding: 10px 16px;
        font-size: 10px;
    }
    
    
    
    /* ===============================================
       CTA SECTION - MOBILE
       =============================================== */
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-container {
        padding: 0 15px;
    }
    
    .cta-icon-main {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1rem 0 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .trust-item {
        padding: 0.6rem 1.2rem;
        justify-content: center;
    }
    
    /* ===============================================
       COMPACT OFFER SECTION - MOBILE
       =============================================== */
    
    .compact-offer-section {
        padding: 1.5rem 0;
    }
    
    .offer-banner {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .offer-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .offer-subtitle {
        font-size: 0.85rem;
    }
    
    .discount-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Banner Product Showcase - Mobile */
    .banner-product-showcase {
        flex-direction: column;
        gap: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .banner-product-card {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: auto;
        max-width: 100%;
        padding: 0.6rem;
    }
    
    .banner-product-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 0.4rem;
    }
    
    .banner-product-name {
        font-size: 1rem;
    }
    
    .banner-product-size {
        font-size: 0.75rem;
    }
    
    .banner-product-price {
        font-size: 0.85rem;
    }
    
    .timer-compact {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    
    .timer-row {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .timer-label {
        font-size: 0.8rem;
    }
    
    .countdown-compact {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .time-box {
        padding: 0.25rem 0.4rem;
        font-size: 0.8rem;
        min-width: 30px;
    }
    
    .stock-compact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .stock-bar-mini {
        width: 100px;
        margin: 0 auto;
    }
    
    .cta-compact {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
    
    .btn-shop {
        width: 100%;
        max-width: 200px;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .social-proof {
        font-size: 0.75rem;
        justify-content: center;
    }
    
    /* Quality Card - Mobile */
    .quality-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .quality-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .quality-title {
        font-size: 1.1rem;
    }
    
    .quality-text {
        font-size: 0.85rem;
    }
    
    .btn-view {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    /* ===============================================
       SECTION TITLES - MOBILE
       =============================================== */
    
    .section-title {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title h6 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .enhanced-section-title {
        margin-bottom: 2.5rem;
    }
    
    .enhanced-section-title h6 {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }
    
    .enhanced-section-title h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .enhanced-section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* ===============================================
       BUTTONS - MOBILE
       =============================================== */
    
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .btn-lg {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .btn-sm {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .btn-add-to-cart {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .btn-view-details {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
    }
    
    .enhanced-view-all-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    /* ===============================================
       FEATURES & TESTIMONIALS - MOBILE
       =============================================== */
    
    .feature-card {
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-position {
        font-size: 0.8rem;
    }
    
    /* ===============================================
       FOOTER - MOBILE
       =============================================== */
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-main {
        padding-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-contact {
        margin-bottom: 2rem;
    }
    
    .footer-contact li {
        margin-bottom: 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-contact .icon-box {
        margin: 0 0 0.5rem 0;
    }
    
    .footer-contact .content {
        align-items: center;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 1rem;
    }
    
    .payment-methods {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    
    /* ===============================================
       UTILITY CLASSES - MOBILE
       =============================================== */
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .d-none-mobile {
        display: none !important;
    }
    
    .d-block-mobile {
        display: block !important;
    }
    
    .w-100-mobile {
        width: 100% !important;
    }
    
    .mb-3-mobile {
        margin-bottom: 1rem !important;
    }
    
    .p-2-mobile {
        padding: 0.5rem !important;
    }
    
    .gap-2-mobile {
        gap: 0.5rem !important;
    }
    
    /* ===============================================
       SPACING ADJUSTMENTS - MOBILE
       =============================================== */
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ===============================================
   SMALL DEVICES (landscape phones, 576px and up)
   =============================================== */
@media (min-width: 576px) and (max-width: 767.98px) {
    
    /* Adjust category items for small devices */
    .category-item {
        width: 160px;
    }
    
    .img-container {
        height: 130px;
    }
    
    /* Product items - 2 per row */
    .product-item {
        width: 50%;
    }
    
    /* Hero adjustments */
    .carousel-background {
        height: 55vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
    
    /* CTA section adjustments */
    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: auto;
        min-width: 200px;
    }
    
    /* Banner product showcase */
    .banner-product-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-product-card {
        flex: 1;
        min-width: 200px;
        max-width: 45%;
    }
}

/* ===============================================
   MEDIUM DEVICES (tablets, 768px and up)
   =============================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    
    /* Category items - adjust for tablets */
    .category-item {
        width: 170px;
    }
    
    /* Product items - 3 per row on tablets */
    .product-item {
        width: 33.333%;
    }
    
    /* Hero section for tablets */
    .carousel-background {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    
    /* Footer adjustments for tablets */
    .footer-title {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-contact li {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-contact .icon-box {
        margin: 0 1rem 0 0;
    }
    
    .footer-contact .content {
        align-items: flex-start;
    }
}

/* ===============================================
   LARGE DEVICES (desktops, 992px and up)
   =============================================== */
@media (min-width: 992px) {
    
    /* Reset mobile-specific styles for larger screens */
    .category-carousel-inner {
        animation: infiniteScroll 30s linear infinite;
    }
    
    .product-item {
        width: 25%; /* 4 products per row on desktop */
    }
    
    /* Show stepper line on desktop */
    .stepper-line {
        display: block;
    }
    
    /* Desktop-specific enhancements */
    .hero-content {
        padding: 4rem 2rem;
    }
    
    .enhanced-section-title h2 {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

/* ===============================================
   LANDSCAPE ORIENTATION FIXES
   =============================================== */
@media (max-height: 500px) and (orientation: landscape) {
    
    .carousel-background {
        height: 80vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===============================================
   HIGH DPI / RETINA DISPLAY OPTIMIZATIONS
   =============================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
    /* Ensure crisp borders and shadows on retina displays */
    .product-card,
    .enhanced-product-card,
    .category-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Optimize button rendering */
    .btn {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Optimize image rendering */
    .product-img,
    .enhanced-product-img,
    .category-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===============================================
   TOUCH DEVICE OPTIMIZATIONS
   =============================================== */
@media (hover: none) and (pointer: coarse) {
    
    /* Increase touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .category-card,
    .product-card,
    .enhanced-product-card {
        cursor: pointer;
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover,
    .enhanced-product-card:hover,
    .category-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    /* Adjust carousel controls for touch */
    .carousel-control {
        opacity: 1;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .product-nav {
        opacity: 1;
    }
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS - MOBILE
   =============================================== */

/* Focus states for keyboard navigation */
@media (max-width: 767.98px) {
    
    .btn:focus,
    .nav-link:focus,
    .form-control:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Skip to main content link */
    .skip-to-main {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-color);
        color: white;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 1000;
        transition: top 0.3s;
    }
    
    .skip-to-main:focus {
        top: 6px;
    }
    
    /* Ensure adequate color contrast */
    .text-muted {
        color: #5a5a5a !important;
    }
    
    /* Screen reader only text */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* ===============================================
   PERFORMANCE OPTIMIZATIONS - MOBILE
   =============================================== */
@media (max-width: 767.98px) {
    
    /* Reduce animations on mobile for better performance */
    .category-carousel-inner {
        animation-duration: 35s;
    }
    
    /* Optimize scroll performance */
    .carousel-background,
    .hero-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .category-carousel-inner {
            animation: none;
        }
        
        .floating-icon,
        .floating-seed {
            animation: none;
        }
        
        .pulse,
        .cta-icon-main {
            animation: none;
        }
    }
}

/* ===============================================
   PRINT STYLES
   =============================================== */
@media print {
    
    /* Hide non-essential elements */
    .navbar,
    .footer,
    .floating-icons,
    .carousel-control,
    .product-nav,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    /* Optimize colors for print */
    * {
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Ensure readable font sizes */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
    
    /* Add page breaks */
    .product-card,
    .enhanced-product-card {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
    
    /* Show URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}


/* ===============================================
   ADVANCED MOBILE OPTIMIZATIONS
   =============================================== */

/* Optimize for iPhone notch */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(env(safe-area-inset-top) + 15px);
    }
    
    .top-bar {
        padding-top: env(safe-area-inset-top);
    }
}

/* Optimize for Samsung devices with curved screens */
@media (max-width: 767.98px) {
    .container,
    .container-fluid {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
}

/* ===============================================
   SPECIFIC MOBILE DEVICE OPTIMIZATIONS
   =============================================== */

/* iPhone SE and small devices */
@media (max-width: 375px) {
    .category-item {
        width: 130px;
        margin-right: 10px;
    }
    
    .img-container {
        height: 100px;
    }
    
    .category-title {
        font-size: 12px;
    }
    
    .category-count {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .enhanced-section-title h2 {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Large phones (iPhone Plus, etc.) */
@media (min-width: 414px) and (max-width: 767.98px) {
    .category-item {
        width: 150px;
    }
    
    .product-item {
        width: 50%;
    }
    
    .banner-product-card {
        max-width: 48%;
    }
}

/* ===============================================
   FINAL MOBILE-SPECIFIC UTILITIES
   =============================================== */
@media (max-width: 767.98px) {
    
    /* Mobile-only utility classes */
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-show {
        display: block !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-no-padding {
        padding: 0 !important;
    }
    
    .mobile-small-text {
        font-size: 0.875rem !important;
    }
    
    .mobile-large-text {
        font-size: 1.25rem !important;
    }
    
    /* Mobile spacing helpers */
    .mobile-mb-1 { margin-bottom: 0.25rem !important; }
    .mobile-mb-2 { margin-bottom: 0.5rem !important; }
    .mobile-mb-3 { margin-bottom: 1rem !important; }
    .mobile-mb-4 { margin-bottom: 1.5rem !important; }
    .mobile-mb-5 { margin-bottom: 3rem !important; }
    
    .mobile-mt-1 { margin-top: 0.25rem !important; }
    .mobile-mt-2 { margin-top: 0.5rem !important; }
    .mobile-mt-3 { margin-top: 1rem !important; }
    .mobile-mt-4 { margin-top: 1.5rem !important; }
    .mobile-mt-5 { margin-top: 3rem !important; }
    
    .mobile-p-1 { padding: 0.25rem !important; }
    .mobile-p-2 { padding: 0.5rem !important; }
    .mobile-p-3 { padding: 1rem !important; }
    .mobile-p-4 { padding: 1.5rem !important; }
    
    /* Mobile flexbox helpers */
    .mobile-flex-column {
        flex-direction: column !important;
    }
    
    .mobile-flex-center {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-text-left {
        text-align: left !important;
    }
    
    /* Mobile grid helpers */
    .mobile-col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Mobile overflow handling */
    .mobile-overflow-hidden {
        overflow: hidden !important;
    }
    
    .mobile-overflow-scroll {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile image optimizations */
    .mobile-img-responsive {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .mobile-img-cover {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Promotional Banner */

.promotional-banner {
    background: linear-gradient(135deg, #016e0a 0%, #228b22 50%, #FFC107 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promotional-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    color: white;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.text-slider {
    position: relative;
    height: 18px;
    overflow: hidden;
    display: inline-block;
    min-width: 400px;
}

.text-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease-in-out;
    white-space: nowrap;
}

.text-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.text-slide.prev {
    transform: translateY(-25px);
    opacity: 0;
}

.code-highlight {
    background: rgba(255, 235, 59, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    color: #ffeb3b;
    font-weight: bold;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

.banner-icon {
    color: #ffeb3b;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}






@media (max-width: 768px) {
    .banner-content {
        font-size: 11px;
    }
    .text-slider {
        min-width: 280px;
        height: 16px;
    }
    .close-banner {
        display: none;
    }
    .text-slide {
        white-space: nowrap;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .promotional-banner {
        padding: 6px 0;
    }
    .text-slider {
        min-width: 250px;
        height: 16px;
    }
    .banner-content {
        font-size: 10px;
    }
    .text-slide {
        white-space: normal;
        line-height: 1.1;
    }
}

/* ===============================================
   FINAL RESPONSIVE BREAKPOINT SUMMARY
   =============================================== */

/*
BREAKPOINT SUMMARY:
- Extra Small (xs): < 576px - Mobile phones (portrait)
- Small (sm): 576px - 767.98px - Mobile phones (landscape) and small tablets
- Medium (md): 768px - 991.98px - Tablets
- Large (lg): 992px - 1199.98px - Small laptops
- Extra Large (xl): ≥ 1200px - Large laptops and desktops

MOBILE-FIRST APPROACH:
1. Base styles are optimized for mobile
2. Progressive enhancement for larger screens
3. Touch-friendly interface elements
4. Optimized performance for mobile devices
5. Accessibility considerations included
6. Print styles for documentation
*/