 
 
        :root {
            --primary-color: #ff6b01;
            --primary-dark: #e05a00;
            --secondary-color: #28a745;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #fff;
        }
        
        /* Top Delivery Banner - FIXED: 100% width */
        .delivery-banner {
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            text-align: center;
            padding: 10px 0;
            font-weight: bold;
            font-size: 0.9rem;
            width: 100%;
            position: relative;
            z-index: 1000;
        }
        
        /* Location Header Bar */
        .location-bar {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        
        .location-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .location-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .location-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .location-text {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .change-location {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .change-location:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        /* Main Header */
        .main-header {
            background: var(--white);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 999;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        /* Logo */
        .logo-container a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-image {
            height: 40px;
            width: auto;
            border-radius: 8px;
        }
        
        /* Search Bar */
        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
        }
        
        .search-box {
            display: flex;
            background: var(--light-bg);
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .search-box:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 1, 0.1);
        }
        
        .search-input {
            flex: 1;
            border: none;
            padding: 12px 20px;
            background: transparent;
            font-size: 0.95rem;
            outline: none;
        }
        
        .search-btn {
            background: var(--primary-color);
            border: none;
            padding: 0 25px;
            cursor: pointer;
            color: var(--white);
            transition: background 0.3s;
        }
        
        .search-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Header Actions - MODIFIED: Show only media and payment icons on mobile */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }
        
        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            position: relative;
            transition: color 0.3s;
            padding: 5px 8px;
        }
        
        .action-item:hover {
            color: var(--primary-color);
        }
        
        .action-icon {
            font-size: 1.2rem;
            margin-bottom: 2px;
        }
        
        .action-text {
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Main Navigation - Horizontal Scroll */
        .main-nav-container {
            background: var(--white);
            border-bottom: 1px solid #eee;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .main-nav {
            display: flex;
            justify-content: center;
            min-width: max-content;
            padding: 0 15px;
        }
        
        .nav-items {
            display: flex;
            list-style: none;
            gap: 0;
        }
        
        .nav-item {
            padding: 15px 20px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .nav-item:hover, .nav-item.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
            background: #fff9f5;
        }
        
        /* Category Navigation - Horizontal */
        .category-nav-container {
            background: var(--white);
            padding: 15px 0;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .category-nav {
            display: flex;
            min-width: max-content;
            padding: 0 15px;
            gap: 0;
        }
        
        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            padding: 10px 15px;
            min-width: 90px;
            transition: all 0.3s;
            border-radius: 8px;
        }
        
        .category-item:hover {
            background: var(--light-bg);
            color: var(--primary-color);
        }
        
        .category-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .category-name {
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
        }
        
        /* Mobile Responsive - MODIFIED for mobile layout */
        @media (max-width: 768px) {
            /* Main Header - Reduce padding */
            .main-header {
                padding: 8px 0;
            }
            
            .header-container {
                padding: 0 8px;
                gap: 8px;
            }
            
            /* Delivery Banner - 100% width on mobile */
            .delivery-banner {
                width: 100vw;
                position: relative;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
                padding: 8px 0;
                font-size: 0.8rem;
            }
            
            .location-container {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
            
            /* Logo - Smaller on mobile */
            .logo-container {
                flex: 0 0 auto;
                min-width: 35px;
            }
            
            .logo-image {
                height: 32px;
            }
            
            /* Search Bar - Centered between logo and icons on mobile */
            .search-container {
                order: 0;
                flex: 1;
                margin: 0 6px;
                max-width: none;
                min-width: 0;
            }
            
            .search-box {
                width: 100%;
                border-radius: 20px;
            }
            
            .search-input {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            
            .search-btn {
                padding: 0 15px;
                font-size: 0.9rem;
            }
            
            /* Header Actions - MODIFIED: Show only media and language switcher */
            .header-actions {
                flex: 0 0 auto;
                gap: 6px;
                justify-content: flex-end;
            }
            
            /* Hide cart, login, signup, messages from header actions on mobile */
            .header-actions .action-item[href*="cart"],
            .header-actions .action-item[href*="login"],
            .header-actions .action-item[href*="signup"],
            .header-actions .action-item[href*="messages"],
            .header-actions .user-dropdown,
            .header-actions .auth-buttons {
                display: none !important;
            }
            
            /* Keep only media and language switcher on mobile header */
            .header-actions .action-item[href*="media"],
            .header-actions .language-dropdown {
                display: flex !important;
            }
            
            /* Language switcher mobile styles */
            .header-actions .language-dropdown {
                position: relative;
                display: inline-flex !important;
                align-items: center;
            }
            
            .header-actions .language-dropdown button {
                display: flex !important;
                align-items: center;
                justify-content: center;
                min-width: 32px !important;
                height: 32px !important;
                padding: 5px 8px !important;
                font-size: 0.9rem !important;
                font-weight: 600 !important;
                background: none !important;
                border: none !important;
                cursor: pointer !important;
            }
            
            /* Hide action text on mobile (only show icons) */
            .header-actions .action-item[href*="media"] .action-text,
            .header-actions .language-dropdown .action-text {
                display: none;
            }
            
            /* Adjust media button */
            .header-actions .action-item[href*="media"] {
                padding: 5px 6px;
            }
            
            /* Adjust language switcher button */
            .header-actions .language-dropdown button {
                min-width: 32px !important;
                padding: 5px 6px !important;
                font-size: 0.9rem !important;
            }
            
            .action-text {
                display: none; /* Hide text on mobile */
            }
            
            .action-item {
                flex-direction: row;
                gap: 0;
                padding: 5px 6px;
            }
            
            .action-icon {
                font-size: 1.1rem;
                margin-bottom: 0;
            }
            
            .main-nav {
                justify-content: flex-start;
            }
            
            .category-nav {
                justify-content: flex-start;
            }
            
            .nav-item {
                padding: 12px 15px;
                font-size: 0.85rem;
            }
            
            .category-item {
                min-width: 80px;
                padding: 8px 10px;
            }
            
            .category-icon {
                font-size: 1.3rem;
            }
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid #eee;
            z-index: 1000;
            padding: 0.5rem 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            justify-content: space-around;
            align-items: center;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.75rem;
            padding: 0.3rem 0.5rem;
            transition: all 0.3s;
            flex: 1;
            position: relative;
            max-width: 80px;
        }
        
        .mobile-nav-item.active {
            color: var(--primary-color);
        }
        
        .mobile-nav-item svg {
            margin-bottom: 0.2rem;
            width: 22px;
            height: 22px;
        }
        
        .mobile-nav-item span {
            font-size: 0.7rem;
            text-align: center;
            line-height: 1.2;
        }
        
        .mobile-badge {
            position: absolute;
            top: -1px;
            right: -0.5px;
            background: #d743c1ff;
            color: #f5ececff;
            font-size: 12px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .main-content {
            padding-bottom: 80px;
            padding-top: 1rem;
        }
        
        @media (min-width: 769px) {
            .mobile-bottom-nav {
                display: none !important;
            }
            
            /* Show all header actions on desktop */
            .header-actions .action-item,
            .header-actions .user-dropdown,
            .header-actions .auth-buttons {
                display: flex !important;
            }
        }
        
        @media (max-width: 480px) {
            .delivery-banner {
                font-size: 0.75rem;
                padding: 6px 0;
            }
            
            .logo-image {
                height: 30px;
            }
            
            .search-input {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            
            .search-btn {
                padding: 0 15px;
            }
            
            .header-actions {
                gap: 8px;
            }
            
            .action-icon {
                font-size: 1.1rem;
            }
            
            .nav-item {
                padding: 10px 12px;
                font-size: 0.8rem;
            }
            
            .category-item {
                min-width: 70px;
                padding: 6px 8px;
            }
            
            .category-icon {
                font-size: 1.2rem;
            }
            
            .category-name {
                font-size: 0.7rem;
            }
            
            .mobile-nav-item {
                font-size: 0.65rem;
                padding: 0.3rem 0.2rem;
            }
            
            .mobile-nav-item svg {
                width: 20px;
                height: 20px;
            }
            
            .main-content {
                padding-bottom: 70px;
            }
        }
         
        
        /* Animation for badge updates */
        .pulse-animation {
            animation: pulse 0.5s ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* City Modal Forced Display Style */
        .force-city-modal {
            z-index: 999999 !important;
        }
     
 
/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    max-width: 600px;
    margin-left: 10%;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    z-index: 2;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease;
}

.slide-content .btn {
    animation: fadeInUp 1.4s ease;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-prev, .carousel-next {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Petal Animation */
.petal-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}
 
 

/* Product Card Enhancements */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.quick-add-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-add-btn:hover {
    transform: scale(1.1);
}

.quick-add-btn.added {
    background: #4CAF50;
}

/* Features Section Enhancements */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}/* Fixed Order Button */
.fixed-order-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.order-now-btn {
    padding: 1rem 1.5rem;
    border-radius: 50px !important;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #FFA500; /* Orange color */
    color: white;
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite !important; /* Fixed syntax error */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
}

/* Make sure animation is not blocked by adding higher specificity */
.fixed-order-btn .order-now-btn {
    animation: pulse 2s infinite !important;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
    }
    
    .slide-content {
        margin: 0 5%;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
  
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
 

/* Additional styles for products, cart, and checkout pages */

/* Products Page */
.products-page {
    padding: 2rem 0;
}

.page-description {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.filter-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
}
 

/* Cart Page */
.cart-page {
    padding: 2rem 0;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: var(--white);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details h4 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-total {
    font-weight: bold;
    color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    text-decoration: underline;
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.summary-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.btn-checkout {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
}

/* Checkout Page */
.checkout-page {
    padding: 2rem 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: grid;
    gap: 0.5rem;
}

.payment-option {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    margin-right: 0.5rem;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0;
}

.payment-icon {
    font-size: 1.2rem;
}

.payment-notice {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.btn-place-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.order-summary {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.order-totals {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-line.grand-total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .filter-section {
        flex-direction: column;
    }
}
/* Add to main.css */

/* Verify Page */
.verify-page {
    padding: 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.verify-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.verify-container h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.verify-container p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.verify-form {
    margin-bottom: 2rem;
}

.btn-verify {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.resend-otp {
    margin-top: 1rem;
}

.resend-otp a {
    color: var(--primary-color);
    text-decoration: none;
}

.resend-otp a:hover {
    text-decoration: underline;
}

/* Success Page */
.success-page {
    padding: 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.success-container h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.success-container p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.order-details {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.order-details h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.order-details p {
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .verify-container,
    .success-container {
        padding: 1.5rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}





 /* ===========================
   HEADER STYLES
   =========================== */

/* Desktop Header *//* ===========================
   HEADER STYLES - FIXED VERSION
   =========================== */

/* ===========================
   HEADER STYLES - FIXED VERSION
   =========================== */

 






/* ===========================
   EXISTING STYLES (KEEP THESE UNCHANGED)
   =========================== */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/phool-delivery/public/assets/img/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

/* Cart */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details h4 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background-color: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: var(--white);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

/* Authentication Styles */
.auth-section {
    padding: 2rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
}

.auth-form {
    margin-bottom: 1.5rem;
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.auth-footer {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    position: relative;
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--text-color);
}

.btn-social:hover {
    background: #f9f9f9;
}

.btn-google {
    border-color: #db4437;
}

.btn-facebook {
    border-color: #4267B2;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-error {
    background-color: #fee;
    border-color: #dc3545;
    color: #dc3545;
}

.alert-success {
    background-color: #efe;
    border-color: var(--secondary-color);
    color: var(--secondary-dark);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-btn:hover {
    background: #f5f5f5;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 1000;
    display: none;
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.login-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.signup-btn {
    background: var(--primary-color);
    color: var(--white);
}

.login-btn:hover {
    background: #fff5e6;
}

.signup-btn:hover {
    background: var(--primary-dark);
}

/* Social Authentication Styles */
.social-auth {
    margin: 1.5rem 6.3rem;
    text-align: center;
    width: 100%;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: none; /* Remove max-width restriction */
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #ccc;
}

.btn-social:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Google-specific styles */
.btn-google {
    border-color: #dadce0;
    background: white;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    color: #1a73e8;
}

/* Google logo styling */
.google-logo {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    display: inline-block;
    flex-shrink: 0; /* Prevent logo from shrinking */
}
 

/* Responsive styles */
@media (max-width: 480px) {
    .btn-social {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .google-logo {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    .btn-google-with-bg {
        background-position: 0.8rem center;
        padding-left: 2.2rem;
    }
}

/* Social auth divider */
.social-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.social-divider::before,
.social-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.social-divider::before {
    margin-right: 1rem;
}

.social-divider::after {
    margin-left: 1rem;
}

/* Account Management Styles */
.account-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.account-header {
    text-align: center;
    margin-bottom: 2rem;
}

.account-header h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.account-header p {
    color: #718096;
}

/* Form Styles */
.profile-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}
/* Multi-step form styles */
.multi-step-form {
    position: relative;
}

.form-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-indicator:not(:last-child):after {
    content: '';
    position: absolute;
    top: 15px;
    left: 60%;
    right: -40%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-indicator p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    transition: all 0.3s ease;
}

.step-indicator.active span {
    background-color: var(--primary-color);
}

.step-indicator.active p {
    color: var(--primary-color);
    font-weight: 500;
}

.step-indicator.completed span {
    background-color: var(--primary-color);
}

.step-indicator.completed:after {
    background-color: var(--primary-color);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.btn-next, .btn-prev {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-next:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-prev {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.btn-prev:hover {
    background-color: #e9ecef;
}

/* Password field styles */
.password-group {
    position: relative;
}

.password-input-container {
    position: relative;
}

.password-input-container .form-input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.eye-icon {
    display: block;
}

.password-strength {
    margin-top: 0.5rem;
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-requirements {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    font-size: 0.8rem;
}

.password-requirements p {
    margin: 0 0 0.3rem 0;
    font-weight: 500;
    color: #555;
}

.password-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #888;
}

.password-requirements li {
    margin-bottom: 0.2rem;
}

.password-requirements li.valid {
    color: #2ecc71;
}

.password-requirements li.valid:before {
    content: "✓ ";
    font-weight: bold;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.form-checkbox input {
    margin-right: 0.5rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-indicator {
        flex: 0 0 33.33%;
        margin-bottom: 1rem;
    }
    
    .step-indicator:not(:last-child):after {
        display: none;
    }
    
    .step-indicator p {
        font-size: 0.7rem;
    }
    
    .password-requirements {
        font-size: 0.75rem;
    }
}
/* Verification Badges */
.verification-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.verification-badge.verified {
    background: #c6f6d5;
    color: #22543d;
}

.verification-badge.not-verified {
    background: #fed7d7;
    color: #742a2a;
}

/* Address Grid */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.address-card.default-address {
    border-color: #4299e1;
    background: #f0f9ff;
}

.address-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.default-badge {
    background: #4299e1;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.address-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.address-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Add New Address Card */
.add-new-address {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed #cbd5e0;
    background: #f7fafc;
}

.add-new-address:hover {
    border-color: #4299e1;
    background: #f0f9ff;
}

.add-address-placeholder {
    text-align: center;
    color: #718096;
}

.add-address-placeholder svg {
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
}

.close {
    color: #718096;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #2d3748;
}

#addressForm {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Social Accounts */
.social-accounts-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.social-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-account-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.provider-badge {
    background: #4299e1;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.connected-date {
    margin-left: auto;
    color: #718096;
    font-size: 0.875rem;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.order-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.order-status.pending {
    background: #fefcbf;
    color: #744210;
}

.order-status.processing {
    background: #bee3f8;
    color: #2c5282;
}

.order-status.shipped {
    background: #c6f6d5;
    color: #22543d;
}

.order-status.delivered {
    background: #c6f6d5;
    color: #22543d;
}

.order-status.cancelled {
    background: #fed7d7;
    color: #742a2a;
}

.order-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #718096;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .social-account-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .connected-date {
        margin-left: 0;
    }
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

 


/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
}

.language-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f0f0f0;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: bold;
}

.language-btn.active {
    background: #2d5016;
    color: white;
    border-color: #2d5016;
}

.language-btn:hover {
    background: #e0e0e0;
}

.language-btn.active:hover {
    background: #1f3a0f;
}

/* Language Modal */
.language-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option.selected {
    border-color: #2d5016;
    background: #f8fff8;
}

.language-option:hover {
    border-color: #4a7c20;
}

.language-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}






 /* ===========================
SEARCH RESULTS 
   =========================== */
    .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }
        
        .search-result-item {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s;
        }
        
        .search-result-item:hover {
            background: #f5f5f5;
        }
        
        .search-result-item:last-child {
            border-bottom: none;
        }
        
        .search-result-image {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .search-result-info {
            flex: 1;
        }
        
        .search-result-name {
            font-weight: 600;
            color: #2d5016;
            margin-bottom: 4px;
        }
        
        .search-result-price {
            color: #e74c3c;
            font-weight: bold;
        }
        
        .no-results {
            padding: 15px;
            text-align: center;
            color: #666;
        }
        
        .search-loading {
            padding: 15px;
            text-align: center;
            color: #666;
        }
        
        .search-container {
            position: relative;
        }
        
        .mobile-search-container {
            position: relative;
        }
        
        .language-switcher {
            display: flex;
            gap: 5px;
            margin-right: 15px;
        }
        
        .language-btn {
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #f0f0f0;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: bold;
        }
        
        .language-btn.active {
            background: #2d5016;
            color: white;
            border-color: #2d5016;
        }
        
        .language-btn:hover {
            background: #e0e0e0;
        }
        
        .language-btn.active:hover {
            background: #2d5016;
        }
        
        .language-loading {
            opacity: 0.6;
            pointer-events: none;
        }
        
        .language-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #2d5016;
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 9999;
            display: none;
            max-width: 300px;
        }



 /* ===========================
details product paghe  
   =========================== */





/* Product Detail Page Styles */
.product-detail-page {
  --primary-color: #4CAF50;
  --primary-hover: #45a049;
  --secondary-color: #6c757d;
  --secondary-hover: #5a6268;
  --accent-color: #ff6b6b;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --bg-light: #f8f9fa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

.product-detail-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Breadcrumb */
.product-detail-page .breadcrumb {
  padding: var(--spacing-md) 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.product-detail-page .breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.product-detail-page .breadcrumb a:hover {
  color: var(--primary-color);
}

.product-detail-page .breadcrumb span {
  color: var(--text-color);
  font-weight: 500;
}

/* Product Detail Container */
.product-detail-page .product-detail-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 992px) {
  .product-detail-page .product-detail-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Product Gallery */
.product-detail-page .product-gallery {
  position: relative;
}

.product-detail-page .main-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.product-detail-page .main-image img,
.product-detail-page .product-gallery img,
.product-detail-page .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.product-detail-page .thumbnail-gallery {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.product-detail-page .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: calc(var(--border-radius) - 2px);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  border: 2px solid transparent;
  aspect-ratio: 1 / 1;
}

.product-detail-page .thumbnail:hover,
.product-detail-page .thumbnail.active {
  opacity: 1;
  border-color: var(--primary-color);
}

.product-detail-page .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-detail-page .product-info {
  padding: var(--spacing-sm);
}

.product-detail-page .product-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
  line-height: 1.3;
}

.product-detail-page .product-category {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.product-detail-page .product-category span {
  color: var(--primary-color);
  font-weight: 500;
}

.product-detail-page .product-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.product-detail-page .stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.product-detail-page .review-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Price Section */
.product-detail-page .product-price-section {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

.product-detail-page .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.product-detail-page .product-bulk-price,
.product-detail-page .product-event-price {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

/* Stock Status */
.product-detail-page .product-stock {
  margin-bottom: var(--spacing-md);
}

.product-detail-page .in-stock,
.product-detail-page .out-of-stock {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.product-detail-page .in-stock {
  color: var(--primary-color);
}

.product-detail-page .out-of-stock {
  color: #dc3545;
}

.product-detail-page .in-stock::before,
.product-detail-page .out-of-stock::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: var(--spacing-xs);
}

.product-detail-page .in-stock::before {
  background-color: var(--primary-color);
}

.product-detail-page .out-of-stock::before {
  background-color: #dc3545;
}

/* Description */
.product-detail-page .product-description {
  margin-bottom: var(--spacing-md);
}

.product-detail-page .product-description h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

.product-detail-page .product-description p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Add to Cart Section */
.product-detail-page .add-to-cart-section {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.product-detail-page .quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.product-detail-page .quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.product-detail-page .quantity-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-page .quantity-btn:hover {
  background: #e9ecef;
}

.product-detail-page .quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-size: 1rem;
}

.product-detail-page .quantity-input::-webkit-outer-spin-button,
.product-detail-page .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-detail-page .unit-display {
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-detail-page .cart-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.product-detail-page .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  font-size: 1rem;
}

.product-detail-page .btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.product-detail-page .btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.product-detail-page .btn-secondary {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
}

.product-detail-page .btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--secondary-color);
}

.product-detail-page .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-detail-page .btn.added {
  background-color: #28a745;
}

.product-detail-page .heart-icon {
  color: var(--accent-color);
}

.product-detail-page .wishlist-btn.active .heart-icon {
  animation: pulse 0.5s;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Product Meta */
.product-detail-page .product-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

.product-detail-page .meta-item {
  font-size: 0.9rem;
}

.product-detail-page .meta-item strong {
  color: var(--text-color);
  margin-right: var(--spacing-xs);
}

/* Social Sharing */
.product-detail-page .social-sharing {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.product-detail-page .social-sharing span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-detail-page .social-share {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.product-detail-page .social-share.facebook {
  background-color: #3b5998;
}

.product-detail-page .social-share.twitter {
  background-color: #1da1f2;
}

.product-detail-page .social-share.whatsapp {
  background-color: #25d366;
}

.product-detail-page .social-share:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Product Tabs */
.product-detail-page .product-tabs {
  margin-bottom: var(--spacing-xl);
}

.product-detail-page .tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.product-detail-page .tabs-nav li {
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  font-weight: 500;
  color: var(--text-light);
}

.product-detail-page .tabs-nav li:hover {
  color: var(--primary-color);
}

.product-detail-page .tabs-nav li.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.product-detail-page .tab-pane {
  display: none;
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.product-detail-page .tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-detail-page .tab-pane h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

.product-detail-page .tab-pane h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
}

.product-detail-page .tab-pane p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.product-detail-page .tab-pane ul {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.product-detail-page .tab-pane li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

/* Reviews */
.product-detail-page .reviews-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
}

@media (min-width: 768px) {
  .product-detail-page .reviews-summary {
    grid-template-columns: 200px 1fr;
  }
}

.product-detail-page .average-rating {
  text-align: center;
}

.product-detail-page .rating-stars {
  font-size: 1.5rem;
  color: #ffc107;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-xs);
}

.product-detail-page .rating-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.product-detail-page .rating-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-detail-page .rating-bars {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.product-detail-page .rating-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.product-detail-page .star-count {
  width: 60px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-detail-page .bar-container {
  flex-grow: 1;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.product-detail-page .bar {
  height: 100%;
  background-color: #ffc107;
  border-radius: 4px;
  transition: width 1s ease;
}

.product-detail-page .percentage {
  width: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: right;
}

.product-detail-page .reviews-list {
  margin-bottom: var(--spacing-md);
}

.product-detail-page .review {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.product-detail-page .review:last-child {
  border-bottom: none;
}

.product-detail-page .review-header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  align-items: center;
}

.product-detail-page .reviewer {
  font-weight: 500;
  color: var(--text-color);
}

.product-detail-page .review-date {
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-detail-page .review-rating {
  color: #ffc107;
}

.product-detail-page .review-content p {
  margin-bottom: 0;
}

.product-detail-page .write-review-btn {
  margin-top: var(--spacing-sm);
}

.product-detail-page .btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.product-detail-page .btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Related Products */
.product-detail-page .related-products {
  margin-bottom: var(--spacing-xl);
}

.product-detail-page .related-products h2 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
  text-align: center;
}

.product-detail-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.product-detail-page .product-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  background-color: white;
}

.product-detail-page .product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-detail-page .product-card .product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-detail-page .product-card .product-info {
  padding: var(--spacing-sm);
}

.product-detail-page .product-card .product-title {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.product-detail-page .product-card .product-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.product-detail-page .product-card .product-price {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
}

.product-detail-page .product-card .product-actions {
  display: flex;
  gap: var(--spacing-xs);
}

.product-detail-page .product-card .btn-view {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.product-detail-page .product-card .btn-view:hover {
  background-color: var(--secondary-hover);
}

.product-detail-page .product-card .btn-add-cart {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.product-detail-page .product-card .btn-add-cart:hover {
  background-color: var(--primary-hover);
}

.product-detail-page .product-card .btn-add-cart.added {
  background-color: #28a745;
}

.product-detail-page .no-related-products {
  text-align: center;
  padding: var(--spacing-lg);
  color: var(--text-light);
  grid-column: 1 / -1;
}

/* Component Styles */
.product-vendor { margin-bottom:15px; }
.vendor-info { display:flex; align-items:center; margin-top:5px; }
.vendor-profile-image { width:30px; height:30px; border-radius:50%; margin-right:10px; object-fit:cover; }
.vendor-details { display:flex; gap:20px; align-items:flex-start; }
.vendor-image img { width:100px; height:100px; border-radius:50%; object-fit:cover; }
.vendor-stats { display:flex; gap:20px; margin-top:15px; }
.stat { text-align:center; }
.stat-value { display:block; font-size:18px; font-weight:bold; }
.stat-label { font-size:14px; color:#666; }

.write-review-section { margin:30px 0; padding:20px; border:1px solid #e0e0e0; border-radius:8px; background-color:#f9f9f9; }
.star-rating { display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:5px; }
.star-rating input { display:none; }
.star-rating label { font-size:24px; color:#ddd; cursor:pointer; transition:color 0.2s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color:#ffc107; }
.star-rating input:checked + label { color:#ffc107; }
.review-form .form-group { margin-bottom:15px; }
.review-form label { display:block; margin-bottom:5px; font-weight:bold; }
.review-form .form-control { width:100%; padding:8px 12px; border:1px solid #ddd; border-radius:4px; font-size:14px; }
.login-prompt { text-align:center; padding:20px; }
.login-prompt .btn { margin:0 5px; }
.no-reviews { text-align:center; padding:40px 20px; color:#666; }

/* Modal */
.modal { display: none; position: fixed; z-index: 1100; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); }
.modal-content { background-color: #fefefe; margin: 10% auto; padding: 20px; border-radius: 10px; width: 90%; max-width: 400px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); position: relative; }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; right: 15px; top: 10px; cursor: pointer; }
.close:hover, .close:focus { color: #000; text-decoration: none; }
.contact-info h3 { color: #2d5016; margin-bottom: 15px; text-align: center; }
.contact-person { margin-bottom: 20px; text-align: center; }
.contact-person h4 { color: #2d5016; margin-bottom: 5px; }
.contact-person p { color: #666; font-size: 0.9rem; }
.contact-numbers { margin-bottom: 20px; }
.phone-number { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; padding: 10px; background: #f9f9f9; border-radius: 5px; }
.phone-number span { font-weight: bold; color: #2d5016; }
.call-btn { background: #27ae60; color: white; padding: 5px 10px; border-radius: 3px; text-decoration: none; font-size: 0.8rem; transition: background 0.3s ease; }
.call-btn:hover { background: #219653; }
.contact-hours { text-align: center; font-size: 0.9rem; color: #666; }

/* Fixed Buttons */
.fixed-order-btn { position: fixed; bottom: 78px !important; right: 15px !important; z-index: 1000 !important; }
.fixed-contact-btn { position: fixed; bottom: 140px !important; right: 15px !important; z-index: 1000 !important; }

.order-now-btn, .contact-now-btn { 
  color: white; 
  padding: 12px 18px !important; 
  border-radius: 50px !important; 
  font-size: 0.9rem !important; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); 
  transition: all 0.3s ease; 
  border: none; 
  cursor: pointer; 
  font-weight: 600; 
  animation: blinkPulse 2s infinite;
}

.order-now-btn { 
  background: #e74c3c !important; 
}
.order-now-btn:hover { 
  background: #c0392b !important; 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5); 
}

.contact-now-btn { 
  background: #3498db !important; 
  animation-delay: 1s;
}
.contact-now-btn:hover { 
  background: #2980b9; 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.5); 
}

@keyframes blinkPulse {
  0% { transform: scale(1); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }
  100% { transform: scale(1); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-detail-page .product-title {
    font-size: 1.5rem;
  }
  
  .product-detail-page .cart-actions {
    flex-direction: column;
  }
  
  .product-detail-page .cart-actions .btn {
    width: 100%;
  }
  
  .product-detail-page .tabs-nav {
    flex-direction: column;
    border-bottom: none;
  }
  
  .product-detail-page .tabs-nav li {
    border-bottom: 1px solid var(--border-color);
    border-left: 3px solid transparent;
  }
  
  .product-detail-page .tabs-nav li.active {
    border-bottom-color: var(--border-color);
    border-left-color: var(--primary-color);
  }
  
  .product-detail-page .social-sharing {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .product-detail-page .quantity-selector {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .fixed-order-btn { bottom: 80px; right: 30px; }
  .order-now-btn { padding: 15px 25px; font-size: 1.1rem; }
  .fixed-contact-btn { bottom: 160px; right: 30px; }
  .contact-now-btn { padding: 15px 25px; font-size: 1.1rem; }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .product-detail-page {
    --border-color: #000;
    --text-light: #000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .product-detail-page {
    --transition: none;
  }
  
  .product-detail-page .product-card,
  .product-detail-page .btn,
  .product-detail-page .social-share,
  .product-detail-page .thumbnail {
    transition: none;
  }
  
  .product-detail-page .tab-pane.active {
    animation: none;
  }
  
  .product-detail-page .bar {
    transition: none;
  }
  
  .order-now-btn, 
  .contact-now-btn {
    animation: none;
  }
}














