/* ========================================
   AnimaINDIA - Premium eCommerce Styles
   Primary Colors:
   - Dark Forest Green: #214B2C
   - Medium Green: #3B6B3F
   - Cream: #F5F1E8
   - Light Gold: #E8D9B5
   - Golden Accent: #B68D40
   ======================================== */

:root {
    --primary-dark: #214B2C;
    --primary: #3B6B3F;
    --primary-light: #4a7d4e;
    --cream: #F5F1E8;
    --light-gold: #E8D9B5;
    --golden: #B68D40;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(33, 75, 44, 0.05);
    --shadow: 0 4px 20px rgba(33, 75, 44, 0.1);
    --shadow-lg: 0 10px 40px rgba(33, 75, 44, 0.15);
    --shadow-xl: 0 20px 60px rgba(33, 75, 44, 0.2);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

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

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--primary-dark);
    font-weight: 700;
}

.loader-text-india {
    color: var(--golden);
    font-weight: 400;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gold);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--cream);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--golden);
    margin-right: 5px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: var(--cream);
    margin-left: 20px;
}

.top-bar-right a:hover {
    color: var(--light-gold);
}

.top-bar-right .divider {
    margin: 0 10px;
    opacity: 0.5;
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--primary-dark);
}

.logo-india {
    color: var(--golden);
    font-weight: 400;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    position: relative;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 0 60px 0 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 14px;
    transition: var(--transition);
    background: var(--gray-100);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(33, 75, 44, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-100);
}

.suggestion-item:hover {
    background: var(--gray-100);
}

.suggestion-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 15px;
}

.suggestion-info {
    flex: 1;
}

.suggestion-name {
    display: block;
    font-weight: 500;
    color: var(--gray-800);
}

.suggestion-price {
    display: block;
    color: var(--primary);
    font-weight: 600;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    color: var(--gray-700);
    position: relative;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.action-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.action-label {
    font-size: 11px;
    font-weight: 500;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: var(--golden);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 14px;
}

.dropdown-menu a i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 10px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Navigation */
.main-nav {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link i {
    margin-right: 8px;
    color: var(--primary);
}

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

.nav-item.highlight .nav-link {
    color: var(--golden);
}

.nav-item.highlight .nav-link i {
    color: var(--golden);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    padding: 40px 0;
}

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

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 300px;
    gap: 30px;
}

.mega-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gold);
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin-bottom: 10px;
}

.mega-column a {
    color: var(--gray-600);
    font-size: 14px;
}

.mega-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mega-column .view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.mega-column .view-all i {
    margin-left: 5px;
    transition: var(--transition);
}

.mega-column .view-all:hover i {
    transform: translateX(5px);
}

.mega-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.mega-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.mega-banner-content h5 {
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition-slow);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--primary-dark);
    color: var(--white);
}

.mobile-nav-header .logo-text {
    color: var(--white);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: var(--gray-700);
    font-weight: 500;
}

.mobile-menu a i {
    width: 30px;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(33, 75, 44, 0.9) 0%, rgba(33, 75, 44, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-gold);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--golden);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--light-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(182, 141, 64, 0.3);
}

.hero-btn i {
    margin-left: 10px;
    transition: var(--transition);
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--golden);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--primary);
    color: var(--white);
}

.badge-sale {
    background: var(--golden);
    color: var(--white);
}

.badge-out {
    background: var(--gray-500);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.action-icon:hover {
    background: var(--primary);
    color: var(--white);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--golden);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-stars {
    color: var(--golden);
    font-size: 12px;
    margin-right: 5px;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.price-old {
    font-size: 0.95rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--golden);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: var(--primary-dark);
}

.add-to-cart.added {
    background: var(--golden);
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(33, 75, 44, 0.9));
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    padding-bottom: 30px;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-count {
    font-size: 13px;
    opacity: 0.8;
}

/* Flash Sale Section */
.flash-sale {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 0;
}

.flash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.flash-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flash-title h2 {
    color: var(--white);
    margin: 0;
}

.flash-title i {
    font-size: 2.5rem;
    color: var(--golden);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 70px;
}

.countdown-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 75, 44, 0.3);
}

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

.btn-golden:hover {
    background: var(--light-gold);
    color: var(--primary-dark);
}

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

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

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

.btn-white:hover {
    background: var(--light-gold);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--gray-600);
    font-size: 14px;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--light-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter-form-large {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-form-large input {
    flex: 1;
    height: 55px;
    padding: 0 25px;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 16px;
}

.newsletter-form-large button {
    height: 55px;
    padding: 0 40px;
    background: var(--golden);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-large button:hover {
    background: var(--light-gold);
    color: var(--primary-dark);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1a3d24 100%);
    color: var(--cream);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-india {
    color: var(--golden);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--golden);
    width: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--golden);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--golden);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--golden);
    padding-left: 5px;
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 15px 20px;
    background: var(--golden);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--light-gold);
}

.payment-methods {
    margin-top: 25px;
}

.payment-methods h5 {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 30px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.copyright {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom-links .divider {
    margin: 0 15px;
    color: rgba(255,255,255,0.3);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px 0;
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-600);
    font-size: 11px;
    gap: 3px;
}

.mobile-bottom-nav a i {
    font-size: 1.3rem;
}

.mobile-bottom-nav a.active {
    color: var(--primary);
}

.cart-nav-item {
    position: relative;
}

.cart-icon-wrap {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--golden);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 997;
    box-shadow: var(--shadow);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(400px);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.toast-success {
    border-left-color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-warning {
    border-left-color: var(--golden);
}

.toast i {
    font-size: 1.2rem;
}

.toast-success i {
    color: #28a745;
}

.toast-error i {
    color: #dc3545;
}

.toast button {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.breadcrumb-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li::after {
    content: '/';
    opacity: 0.5;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--golden);
}

.breadcrumb .active {
    color: var(--light-gold);
}

/* Shop Page */
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--gray-700);
}

.filter-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.price-range input {
    width: 100px;
    padding: 8px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.shop-count {
    color: var(--gray-600);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sort select {
    padding: 8px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

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

.product-info-detail {
    padding: 20px 0;
}

.product-title-large {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.product-meta-item i {
    color: var(--golden);
}

.product-price-large {
    margin-bottom: 25px;
}

.price-sale {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-regular {
    font-size: 1.3rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 15px;
}

.discount-percent {
    background: var(--golden);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.product-short-desc {
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-variants {
    margin-bottom: 25px;
}

.variant-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.variant-option:hover,
.variant-option.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-selector button {
    width: 45px;
    height: 50px;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray-700);
}

.quantity-selector input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.btn-add-cart {
    flex: 1;
    height: 54px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
}

.btn-wishlist {
    width: 54px;
    height: 54px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-wishlist:hover,
.btn-wishlist.active {
    border-color: #dc3545;
    color: #dc3545;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-text {
    font-size: 13px;
    font-weight: 500;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.nav-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 30px;
}

.nav-tabs button {
    background: none;
    border: none;
    padding: 15px 0;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-tabs button.active,
.nav-tabs button:hover {
    color: var(--primary);
}

.nav-tabs button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none;
}

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

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table td {
    padding: 15px;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--gray-700);
}

/* Cart Page */
.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-variant {
    font-size: 13px;
    color: var(--gray-500);
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary);
}

.cart-item-quantity .quantity-selector {
    transform: scale(0.9);
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-remove {
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-600);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    padding-top: 15px;
    border-top: 2px solid var(--gray-100);
    margin-top: 15px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
}

.coupon-form button {
    padding: 12px 20px;
    background: var(--gray-800);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-checkout:hover {
    background: var(--primary-dark);
}

/* Checkout Page */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
}

.section-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading i {
    color: var(--golden);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.address-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.address-card:hover,
.address-card.selected {
    border-color: var(--primary);
    background: rgba(33, 75, 44, 0.05);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--primary);
}

.payment-method input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
}

.auth-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    padding: 50px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.auth-title {
    text-align: center;
    margin-bottom: 10px;
}

.auth-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.social-login {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary);
}

.social-btn.google {
    color: #DB4437;
}

/* Account Dashboard */
.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dashboard-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: fit-content;
}

.user-profile-card {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 25px;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.user-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-email {
    color: var(--gray-500);
    font-size: 14px;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--radius);
    color: var(--gray-700);
    transition: var(--transition);
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
    background: var(--primary);
    color: var(--white);
}

.dashboard-menu i {
    width: 20px;
}

.dashboard-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Order Tracking */
.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

.tracking-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 30px;
}

.tracking-item:last-child {
    padding-bottom: 0;
}

.tracking-icon {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.tracking-item.completed .tracking-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tracking-item.current .tracking-icon {
    background: var(--golden);
    border-color: var(--golden);
    color: var(--white);
    animation: pulse 2s infinite;
}

.tracking-content h5 {
    margin-bottom: 5px;
}

.tracking-content p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-banner {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-search {
        margin: 0 20px;
    }
    .mega-menu {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-container,
    .cart-container,
    .checkout-container,
    .product-detail,
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    .filter-sidebar,
    .cart-summary,
    .dashboard-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    .header-inner {
        padding: 10px 0;
    }
    .header-search {
        display: none;
    }
    .action-btn .action-label {
        display: none;
    }
    .action-btn {
        width: 45px;
        height: 45px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .main-nav {
        display: none;
    }
    .mobile-bottom-nav {
        display: flex;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-section,
    .hero-slide {
        height: 400px;
    }
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-image {
        height: 180px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .flash-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .countdown {
        justify-content: center;
    }
    .product-actions {
        opacity: 1;
        transform: none;
        flex-direction: row;
        top: auto;
        bottom: 10px;
        right: 10px;
    }
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        padding: 50px 0 30px;
    }
    .footer-bottom-links {
        text-align: center;
        margin-top: 15px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 90px;
        right: 15px;
    }
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 15px;
    }
    .auth-box {
        padding: 30px 20px;
    }
    .main-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-item {
        padding: 10px;
        min-width: 60px;
    }
    .countdown-value {
        font-size: 1.3rem;
    }
    .product-benefits {
        grid-template-columns: 1fr;
    }
}