/* Hide mobile bottom nav when mobile menu is open */
body.mobile-nav-open .mobile-bottom-nav {
    display: none !important;
}

/* Hero Slider Responsive Design */
@media (min-width: 769px) {
    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
    }
    
    .hero-slider {
        height: 70vh !important;
        min-height: 500px !important;
        max-height: 700px !important;
    }
    
    .slide-content {
        padding: 0 60px !important;
    }
}

@media (max-width: 768px) {
    .header {
        position: static !important;
    }
    
    .hero-slider {
        height: 56.25vw !important;
        max-height: 380px !important;
        min-height: 260px !important;
    }
    
    .slide-content {
        padding: 0 20px !important;
    }
}


/* Global slide content - OVERRIDE ALL OTHER RULES */
.slide-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 40px !important;
    z-index: 2 !important;
    text-align: left !important;
    flex-direction: column !important;
}

/* GLOBAL OVERRIDE - Force left alignment for ALL screens */
.slide-text {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    width: 100% !important;
    text-align: left !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* GLOBAL OVERRIDE - Ensure all text elements stay on left for ALL screens */
.slide-text h1,
.slide-text p,
.slide-price,
.slide-btn {
    text-align: left !important;
    margin-left: 0 !important;
    align-self: flex-start !important;
    display: block !important;
    margin-right: auto !important;
    width: auto !important;
    float: none !important;
    position: relative !important;
}


/* Mobile Responsive Styles for Slider Line Indicator */
@media (max-width: 768px) {
    .slider-line-indicator {
        padding: 10px 0;
        margin-bottom: 8px;
    }
    
    .progress-boxes {
        gap: 3px;
    }
    
    .progress-box {
        width: 22px;
        height: 2.5px;
    }
    
    .progress-box.active {
        width: 50px;
        height: 2.5px;
    }
    
    /* Adjust text for mobile */
    .slide-text h1 {
        font-size: 26px;
        font-weight: 800;
        line-height: 1.1;
    }
    
    .slide-text p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .slide-price {
        font-size: 18px;
        font-weight: 700;
    }
    
    .slide-btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 8px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 56.25vw !important;
        max-height: 300px !important;
        min-height: 220px !important;
    }
    
    .slide-content {
        padding: 0 12px !important;
    }
    
    .slider-line-indicator {
        padding: 6px 0;
        margin-bottom: 4px;
    }
    
    .progress-boxes {
        gap: 2px;
    }
    
    .progress-box {
        width: 16px;
        height: 2px;
    }
    
    .progress-box.active {
        width: 35px;
        height: 2px;
    }
    
    /* Small screen text sizing */
    .slide-text h1 {
        font-size: 16px !important;
        line-height: 1.1;
        margin-bottom: 6px;
        font-weight: 800 !important;
    }
    
    .slide-text p {
        font-size: 9px !important;
        line-height: 1.3;
        margin-bottom: 6px;
        opacity: 0.9;
    }
    
    .slide-price {
        font-size: 13px !important;
        margin-bottom: 8px;
        font-weight: 700 !important;
    }
    
    .slide-btn {
        padding: 6px 12px !important;
        font-size: 10px !important;
        border-radius: 6px;
        font-weight: 600 !important;
        max-width: 80px;
        display: inline-block;
    }
}


/* Modern Mobile Store CSS - Flipkart Inspired Theme */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Remove tap highlight on touch devices */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ================= Customer Reviews Section - Enhanced UI ================= */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e293b;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f59e0b);
    border-radius: 2px;
}

.reviews-subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reviews-slider {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reviews-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.reviews-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.reviews-nav.prev { left: -25px; }
.reviews-nav.next { right: -25px; }

.reviews-nav i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.reviews-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-behavior: smooth;
}

.review-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 28px;
    min-width: calc((100% - 40px) / 3); /* 3 per view on desktop */
    box-shadow: 
        0 10px 25px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f59e0b, #ef4444, #10b981);
    opacity: 0.8;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.12),
        0 8px 16px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #f59e0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.user-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.user-location {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-location::before {
    content: '📍';
    font-size: 12px;
}

.review-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-rating i {
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.review-text {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 40px;
    color: rgba(59, 130, 246, 0.2);
    font-family: serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: -5px;
    font-size: 40px;
    color: rgba(59, 130, 246, 0.2);
    font-family: serif;
    line-height: 1;
}

.review-date {
    display: inline-block;
    margin-top: 12px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Mobile Responsive - Center Alignment like Best Seller */
@media (max-width: 1024px) {
    .review-card {
        min-width: calc((100% - 20px) / 2); /* 2 per view on tablet */
    }
    
    .reviews-nav.prev { left: -15px; }
    .reviews-nav.next { right: -15px; }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-container {
        padding: 0 16px;
    }
    
    .reviews-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .reviews-subtitle {
        font-size: 14px;
    }
    
    .reviews-header {
        margin-bottom: 30px;
    }
    
    .reviews-slider {
        margin: 0;
        padding: 0;
    }
    
    /* Mobile center alignment like best seller */
    .reviews-track {
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-track::-webkit-scrollbar {
        display: none;
    }
    
    .review-card {
        flex: 0 0 85%; /* 85% width for better centering */
        scroll-snap-align: center;
        min-width: 85%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .reviews-nav {
        width: 44px;
        height: 44px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    
    .reviews-nav.prev { left: 8px; }
    .reviews-nav.next { right: 8px; }
    
    .reviews-nav i {
        font-size: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .user-name {
        font-size: 16px;
    }
    
    .user-location {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-rating {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 30px 0;
    }
    
    .reviews-container {
        padding: 0 12px;
    }
    
    .reviews-track {
        gap: 16px;
        padding: 0 12px;
    }
    
    .review-card {
        flex: 0 0 90%; /* 90% width for very small screens */
        min-width: 90%;
        max-width: 300px;
        padding: 18px;
    }
    
    .reviews-nav {
        width: 40px;
        height: 40px;
    }
    
    .reviews-nav.prev { left: 4px; }
    .reviews-nav.next { right: 4px; }
    /* all  main code css */
    .reviews-nav i {
        font-size: 14px;
    }
    
    .reviews-title {
        font-size: 20px;
    }
    
    .reviews-subtitle {
        font-size: 13px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .user-name {
        font-size: 15px;
    }
    
    .user-location {
        font-size: 12px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .review-rating {
        font-size: 13px;
    }
    
    .review-date {
        font-size: 11px;
    }
}

/* Review cards animation on load */
@keyframes reviewFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: reviewFadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

/* Allow text selection for input fields and content areas */
input,
textarea,
[contenteditable="true"],
.selectable {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Specifically target buttons and interactive elements */
button,
a,
.header-btn,
.mobile-menu-toggle,
.mobile-nav-link,
.mobile-nav-close,
.quantity-btn,
.remove-btn,
.checkout-btn,
.continue-shopping,
.move-to-cart-btn,
.remove-wishlist-btn,
.wishlist-action-btn,
.quick-action-btn,
.submit-btn,
.mobile-nav-item,
.social-icon {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none !important;
}

body {
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    background-color: #f8fafc;
    line-height: 1.6;
    color: #0d141c;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-bottom: 1px solid #e7edf4;
    padding: 12px 40px;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    /* gap: 32px; */
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #0d141c;
}

.logo-icon {
    width: 16px;
    height: 16px;
}

.logo h2 {
    color: #0d141c;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: #0d141c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0d80f2;
}

.header-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.search-container {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    height: 40px;
    max-width: 256px;
}

.search-wrapper {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: stretch;
    border-radius: 12px;
    height: 100%;
}

.search-icon {
    color: #49739c;
    display: flex;
    border: none;
    background-color: #e7edf4;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    border-radius: 12px 0 0 12px;
}

.search-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    resize: none;
    overflow: hidden;
    border-radius: 12px;
    color: #0d141c;
    border: none;
    background-color: #e7edf4;
    height: 100%;
    padding: 0 16px 0 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    border-radius: 0 12px 12px 0;
    outline: none;
}

.search-input::placeholder {
    color: #49739c;
}

.header-buttons {
    display: flex;
    gap: 8px;
}

.header-btn {
    display: flex;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 12px;
    height: 40px;
    background-color: #e7edf4;
    color: #0d141c;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.015em;
    min-width: 0;
    padding: 0 10px;
    border: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.header-btn:hover {
    background-color: #d1d9e0;
}

.profile-pic {
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    background-size: cover;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCw0Awx0vl5f1EBL36afagiXxFCjcj8D_oJQ1bWci4B5DeYB1bgThgnw7oKL1GeZLVL8y7zhRMr0phza6BROA9C3AzLxazOhYGFzkdT9n5zTObxenFi_pQTtkgvH7un3ZqiWOg75o-TgyMU_t-1jkxNhR9INe3UtILNRZbhagPRhEBfxVH61b0Fw4bErprfNMO7_6AwpTYoeh9DpclItpNliSJ5eUj1Oh1DeOxVqzqRK_rgSL6h6dNntyPZqRd3nnHo-JpvVgNyNs8");
}

/* Main Container */
.main-container {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    background-color: #f8fafc;
}

.layout-container {
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
}

.content-wrapper {
    padding: 0 160px;
    display: flex;
    flex: 1;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 20px;
}

.content-container {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    flex: 1;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    top: 0;
    /* Ensure slider appears below header */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    width: 100%;
    max-width: 600px;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

/* Removed - now defined above in slide-content section */

.slide-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.025em;
}

.slide-text p {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 16px 0;
    opacity: 0.95;
}

.slide-price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
    margin: 0 0 24px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-btn {
    background-color: #0d80f2;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 128, 242, 0.3);
}

.slide-btn:hover {
    background-color: #0c72d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 128, 242, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Mobile responsive for hero slider navigation buttons */
@media (max-width: 768px) {
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .prev-btn,
    .next-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
}

/* Multiple Rectangle Progress Indicator */
.slider-line-indicator {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8fafc;
    position: relative;
}

.progress-boxes {
    display: flex;
    gap: 8px;
    align-items: center;
}

.progress-box {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.progress-box.active {
    width: 120px; /* 3x size */
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
}

.progress-line {
    width: 0%;
    height: 100%;
    background: #000;
    border-radius: 2px;
    transition: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* Progress animation states */
.progress-line.filling {
    animation: fillProgressBox 5s linear forwards;
}

.progress-line.reset {
    width: 0%;
    transition: width 0.1s ease;
}

@keyframes fillProgressBox {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Offers Section Styles */

/* Shop by Categories - Flipkart Style: Simple Image + Heading Only */
.shop-categories-section {
    background: #f8fafc;
    padding: 40px 0;
    position: relative;
}

.shop-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-categories-header {
    margin-bottom: 40px;
}

.shop-categories-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 20px;
}

.shop-categories-text {
    text-align: left;
    flex: 1;
}

.shop-categories-title {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-shadow: none;
}

.shop-categories-subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    text-shadow: none;
}

.view-all-categories-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
    flex-shrink: 0;
    min-height: 36px;
}

.view-all-categories-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.view-all-categories-btn i {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-all-categories-btn:hover i {
    transform: translateX(4px);
}

.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Simple Category Cards - Flipkart Style */
.category-card-simple {
    background: white;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.category-image-simple {
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 6px;
    overflow: hidden;
}

.category-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card-simple:hover .category-image-simple img {
    transform: scale(1.1);
}

.category-card-simple h3 {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Styles for Simple Categories */
@media (max-width: 1200px) {
    .shop-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .shop-categories-section {
        padding: 30px 0;
    }
    
    .shop-categories-container {
        padding: 0 16px;
    }
    
    .shop-categories-header {
        text-align: left;
        margin-bottom: 20px;
    }
    
    .shop-categories-title {
        font-size: 22px;
    }
    
    .shop-categories-subtitle {
        font-size: 14px;
    }
    
    .view-all-categories-btn {
        padding: 6px 10px;
        font-size: 10px;
        min-height: 24px;
        gap: 3px;
    }
    
    .view-all-categories-btn i {
        font-size: 8px;
    }
    
    .shop-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-card-simple {
        padding: 12px;
    }
    
    .category-image-simple {
        height: 80px;
        margin-bottom: 8px;
    }
    
    .category-card-simple h3 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .category-card-simple {
        padding: 8px;
    }
    
    .category-image-simple {
        height: 60px;
        margin-bottom: 6px;
    }
    
    .category-card-simple h3 {
        font-size: 11px;
        line-height: 1.2;
    }
}
        height: 32px;
        margin-bottom: 6px;
    }
    
    .category-icon-minimal svg {
        width: 16px;
        height: 16px;
    }
    
    .category-card-minimal h3 {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .category-card-minimal p {
        font-size: 9px;
    }
}

/* Popular Brands Section */
.popular-brands-section {
    background: #f8fafc;
    padding: 50px 0;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.popular-brands-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(#d3e7f7, #d3e7f7) !important;
    border-radius: 20px !important;
    padding: 40px 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.popular-brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.popular-brands-title {
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.popular-brands-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.popular-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.brand-card-minimal {
    background: white;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-card-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.brand-icon-minimal {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.brand-icon-minimal img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.brand-card-minimal:hover .brand-icon-minimal img {
    filter: none;
}

.brand-card-minimal h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.brand-card-minimal p {
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.popular-brands-footer {
    text-align: center;
    margin-top: 40px;
}

.view-all-brands-btn {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.025em;
}

.view-all-brands-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.view-all-brands-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.view-all-brands-btn:hover i {
    transform: translateX(2px);
}

/* Responsive Design for Popular Brands */
@media (max-width: 768px) {
    .popular-brands-section {
        padding: 40px 0;
    }
    
    .popular-brands-container {
        padding: 30px 16px !important;
        border-radius: 16px !important;
        background: linear-gradient(#d3e7f7, #d3e7f7) !important;
    }
    
    .popular-brands-title {
        font-size: 20px;
    }
    
    .popular-brands-subtitle {
        font-size: 13px;
    }
    
    .popular-brands-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .popular-brands-grid::-webkit-scrollbar {
        display: none;
    }
    
    .brand-card-minimal {
        flex: 0 0 140px;
        scroll-snap-align: start;
        padding: 16px 12px;
    }
    
    .brand-icon-minimal {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .brand-icon-minimal img {
        width: 28px;
        height: 28px;
    }
    
    .brand-card-minimal h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .brand-card-minimal p {
        font-size: 10px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .popular-brands-grid {
        gap: 10px;
    }
    
    .brand-card-minimal {
        flex: 0 0 120px;
        padding: 12px 8px;
    }
    
    .brand-icon-minimal {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .brand-icon-minimal img {
        width: 24px;
        height: 24px;
    }
    
    .brand-card-minimal h3 {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .brand-card-minimal p {
        font-size: 9px;
    }
}

/* Animation for brand cards on scroll */
.brand-card-minimal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.brand-card-minimal:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-card-minimal:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-card-minimal:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-card-minimal:nth-child(4) {
    animation-delay: 0.4s;
}

.brand-card-minimal:nth-child(5) {
    animation-delay: 0.5s;
}

.brand-card-minimal:nth-child(6) {
    animation-delay: 0.6s;
}

.brand-card-minimal:nth-child(7) {
    animation-delay: 0.7s;
}

.brand-card-minimal:nth-child(8) {
    animation-delay: 0.8s;
}

.offer-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.offer-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Section */
.hero-section {
    padding: 16px 0;
}

.hero-content {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    gap: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px 40px 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%), url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.033em;
    margin: 0;
}

.hero-subtitle {
    color: white;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
}

.hero-btn {
    display: flex;
    min-width: 84px;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    height: 48px;
    padding: 0 20px;
    background-color: #0d80f2;
    color: #f8fafc;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.015em;
    border: none;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #0c72d4;
}

/* Search Section */
.search-section {
    padding: 16px;
}

.main-search-container {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    height: 48px;
    width: 100%;
}

.main-search-wrapper {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: stretch;
    border-radius: 12px;
    height: 100%;
}

.main-search-icon {
    color: #49739c;
    display: flex;
    border: none;
    background-color: #e7edf4;
    align-items: center;
    justify-content: center;
    padding-left: 16px;
    border-radius: 12px 0 0 12px;
}

.main-search-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    resize: none;
    overflow: hidden;
    border-radius: 12px;
    color: #0d141c;
    border: none;
    background-color: #e7edf4;
    height: 100%;
    padding: 0 16px 0 8px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    border-radius: 0 12px 12px 0;
    outline: none;
}

.main-search-input::placeholder {
    color: #49739c;
}

/* Section Titles */
.section-title {
    color: #0d141c;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.015em;
    padding: 16px;
    padding-bottom: 12px;
    padding-top: 20px;
    margin: 0;
}

/* Featured Products */
.featured-products {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-products::-webkit-scrollbar {
    display: none;
}

.products-wrapper {
    display: flex;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
    min-width: max-content;
}

.product-card {
    display: flex;
    height: 100%;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    min-width: 160px;
    background: white;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: #0d141c;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.product-info p {
    color: #49739c;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
}

.product-price {
    color: #0d80f2;
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
}

.add-to-cart-btn {
    background-color: #0d80f2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #0c72d4;
}

/* Grid Sections */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
    gap: 12px;
    padding: 16px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
}

.offer-image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16/9;
    background-size: cover;
    border-radius: 12px;
}

.offer-info h3 {
    color: #0d141c;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.offer-info p {
    color: #49739c;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-2px);
}

.brand-image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    background-size: cover;
    border-radius: 12px;
}

/* Categories Section */
.categories-section {
    margin: 20px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 16px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.category-card h3 {
    color: #0d141c;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.category-card p {
    color: #49739c;
    font-size: 14px;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #0d80f2, #0c72d4);
    margin: 40px 16px;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
}

.newsletter-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.newsletter-section p {
    font-size: 16px;
    margin: 0 0 24px 0;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    background: white;
    color: #0d80f2;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background: #f0f0f0;
}

/* Footer - Beautiful, Simple & Classic Design */
.footer {
    background: linear-gradient(135deg, #0d141c, #132032);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d80f2, #40a9ff);
    border-radius: 3px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #adbdcd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #40a9ff;
}

.footer-section a i {
    color: #0d80f2;
    font-size: 14px;
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-container {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9)) brightness(0.8) contrast(2.0) saturate(1.0);
    background: rgba(255, 255, 255, 0.95);
    padding: 13px 15px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item i {
    color: #0d80f2;
    font-size: 16px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-item a {
    color: #40a9ff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile Footer Contact - Show labels next to icons on small screens */
@media (max-width: 768px) {
    .contact-item {
        display: block; /* Change from flex to block */
        margin-bottom: 20px;
    }
    
    .contact-icon {
        display: inline-flex;
        align-items: center; /* Vertically center icon and text */
        margin-bottom: 8px;
        gap: 10px;
        width: auto;
        height: auto;
        margin-top: 0;
        vertical-align: middle; /* Extra alignment for inline-flex */
    }
    
    .contact-icon i {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
    }
    
    .contact-icon::after {
        content: attr(data-label);
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
        letter-spacing: 0.3px;
        line-height: 1;
        display: flex;
        align-items: center;
    }
    
    .contact-item div {
        margin-left: 26px; /* Align with icon */
        padding-top: 0;
    }
    
    .contact-item strong {
        display: none; /* Hide the "Address:", "Phone:", "Hours:" labels */
    }
    
    .contact-item br:first-of-type {
        display: none; /* Hide the first line break after strong tag */
    }
}

/* Map Link Styles - Enhanced Visibility */
.map-container {
    margin-bottom: 32px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0d80f2, #1e40af);
    color: #ffffff !important;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(13, 128, 242, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.map-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.map-link:hover::before {
    left: 100%;
}

.map-link:hover {
    background: linear-gradient(135deg, #0c72d4, #1d4ed8);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(13, 128, 242, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
}

.map-link i {
    font-size: 20px;
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.map-link span {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    letter-spacing: 0.8px;
}

/* Social Links Styles */
.social-links h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp - Green */
.social-icon.whatsapp {
    background: #25D366;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icon.whatsapp i {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Facebook - Blue */
.social-icon.facebook {
    background: #1877F2;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.facebook:hover {
    background: #166FE5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icon.facebook i {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Instagram - Gradient */
.social-icon.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #D6336C, #B12A7A, #7B2CBF);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icon.instagram i {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* YouTube - Red */
.social-icon.youtube {
    background: #FF0000;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon.youtube:hover {
    background: #E60000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icon.youtube i {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Ensure all social icons have proper visibility */
.social-icon i {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Generic social icon hover (fallback) */
.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

/* Footer Bottom Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.footer-left p,
.footer-right p {
    margin: 0;
    color: #adbdcd;
    font-size: 14px;
    line-height: 1.6;
}

.footer-right a {
    color: #40a9ff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.footer-right a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-right a:hover {
    color: #ffffff;
}

.footer-right a:hover::after {
    width: 100%;
}

/* Desktop Footer - Make wrapper behave like normal grid items */
.footer-sections-wrapper {
    display: contents; /* This makes the wrapper transparent, children behave as direct children of footer-content */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Create wrapper for Our Services and Popular Brands to be side by side */
    .footer-sections-wrapper {
        display: grid; /* Override the contents display */
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Override the default single column layout for sections 2 and 3 */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        grid-column: auto;
    }
    
    /* Responsive Footer Logo for Mobile */
    .footer-logo-container {
        height: 45px !important;
        padding: 8px 12px !important;
        border-radius: 12px !important;
        margin-left: 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-item {
        margin-bottom: 18px;
    }

    .social-icons {
        justify-content: center;
    }

    .map-link {
        width: 100%;
        justify-content: center;
    }

    .footer-title {
        font-size: 18px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 18px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item i {
        align-self: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 0 80px;
    }
    
    .hero-content {
        padding: 16px 20px 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    /* .logo-section {
        gap: 16px;
    }
     */
    .nav-links {
        gap: 20px;
    }
    
    .header-right {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .search-container {
        min-width: 120px;
        max-width: 200px;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
    
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        padding: 16px 20px 32px;
        min-height: 360px;
    }
    
    .products-wrapper {
        padding: 8px;
    }
    
    .product-card {
        min-width: 140px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-section {
        padding: 24px;
        margin: 20px 16px;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .header-right {
        justify-content: center;
    }
    
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-content {
        min-height: 280px;
        padding: 16px 16px 24px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 12px;
    }
    
    .product-card {
        min-width: 120px;
        padding: 12px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-section {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Additional responsive utilities */
.mobile-hidden {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Top Deals Today Section */
.top-deals-section {
    background: #f8fafc;
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.top-deals-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFE9D3 !important;
    border-radius: 20px !important;
    padding: 40px 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.top-deals-header {
    margin-bottom: 40px;
}

.top-deals-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 20px;
}

.top-deals-text {
    text-align: left;
    flex: 1;
}

.top-deals-title {
    color: #1e293b;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-shadow: none;
}

.top-deals-subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    text-shadow: none;
}

.top-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Responsive grid adjustments for Top Deals */
@media (max-width: 1200px) {
    .top-deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.top-deals-footer {
    display: none; /* Hide the footer since button is now in header */
}

.view-all-top-deals-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
    flex-shrink: 0;
    min-height: 36px;
}

.view-all-top-deals-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.view-all-top-deals-btn i {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-all-top-deals-btn:hover i {
    transform: translateX(4px);
}

/* Hot Deals Section */
.hot-deals-section {
    background: #f8fafc;
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.hot-deals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hot-deals-header {
    margin-bottom: 50px;
}

.hot-deals-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 20px;
}

.hot-deals-text {
    text-align: left;
    flex: 1;
}

.hot-deals-title {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hot-deals-subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.view-all-hot-deals-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.view-all-hot-deals-btn i {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-all-hot-deals-btn:hover i {
    transform: translateX(4px);
}

.hot-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Deal Card Styles */
.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.deal-badge.bestseller {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.deal-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wishlist-btn i {
    font-size: 18px;
    color: #64748b;
    transition: all 0.3s ease;
}

.wishlist-btn:hover i {
    color: #dc2626;
}

.wishlist-btn.active i {
    color: #dc2626;
}

.wishlist-btn.active {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.deal-info {
    padding: 24px;
}

.deal-info h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.deal-info p {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 16px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 14px;
    color: #fbbf24;
}

.stars .far {
    color: #d1d5db;
}

.rating-text {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    color: #1e293b;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.original-price {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.8;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #0d80f2, #1e40af);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 12px rgba(13, 128, 242, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #0c72d4, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 128, 242, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(13, 128, 242, 0.3);
}

.add-to-cart-btn i {
    font-size: 16px;
}

.hot-deals-footer {
    display: none; /* Hide the footer since button is now in header */
}

/* View All Best Sellers Button in Header */
.view-all-best-sellers-btn {
    background: #1e293b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
    flex-shrink: 0;
    min-height: 36px;
}

.view-all-best-sellers-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.view-all-best-sellers-btn i {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-all-best-sellers-btn:hover i {
    transform: translateX(4px);
}

/* Responsive styles for view-all-best-sellers-btn to match top deals button */
@media (max-width: 768px) {
    .view-all-best-sellers-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-height: 28px;
        gap: 4px;
    }
    
    .view-all-best-sellers-btn i {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .view-all-best-sellers-btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
        min-height: 24px !important;
        gap: 3px !important;
    }
    
    .view-all-best-sellers-btn i {
        font-size: 8px !important;
    }
}

/* Enhanced Cart and Wishlist Notification Styles with Swipe Support */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #10b981;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 300px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    cursor: pointer;
    user-select: none;
    touch-action: pan-y;
}

.notification.show {
    transform: translateX(0);
}

.notification.dismissing {
    pointer-events: none;
}

.notification.success {
    border-left-color: #10b981;
}

.notification.error {
    border-left-color: #dc2626;
}

.notification.warning {
    border-left-color: #f59e0b;
}

.notification.info {
    border-left-color: #3b82f6;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 12px 16px;
}

.notification-content i {
    font-size: 16px;
    flex-shrink: 0;
}

.notification.success .notification-content i {
    color: #10b981;
}

.notification.error .notification-content i {
    color: #dc2626;
}

.notification.warning .notification-content i {
    color: #f59e0b;
}

.notification.info .notification-content i {
    color: #3b82f6;
}

.notification-content span {
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 4px;
}

.notification-close:hover {
    background: #f1f5f9;
    color: #475569;
}

.notification-close i {
    font-size: 14px;
}

/* Swipe indication styles */
.notification:before {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    border-radius: 2px;
    opacity: 0.5;
    pointer-events: none;
}

/* Cart and Wishlist Counter Badges */
.header-btn {
    position: relative;
}

.cart-counter,
.wishlist-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 15;
    min-width: 22px;
    line-height: 1;
}

.cart-counter.show,
.wishlist-counter.show {
    opacity: 1;
    transform: scale(1);
}

/* Animation for deal cards on scroll */
.deal-card {
    opacity: 0;
    transform: translateY(30px);
    animation: dealFadeInUp 0.6s ease forwards;
}

.deal-card:nth-child(1) {
    animation-delay: 0.1s;
}

.deal-card:nth-child(2) {
    animation-delay: 0.2s;
}

.deal-card:nth-child(3) {
    animation-delay: 0.3s;
}

.deal-card:nth-child(4) {
    animation-delay: 0.4s;
}

.deal-card:nth-child(5) {
    animation-delay: 0.5s;
}

.deal-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes dealFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Hot Deals */
@media (max-width: 1200px) {
    .hot-deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hot-deals-section {
        padding: 40px 0;
    }
    
    .hot-deals-title {
        font-size: 18px;
    }
    
    .hot-deals-subtitle {
        font-size: 12px;
    }
    
    .hot-deals-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 40px;
    }
    
    .hot-deals-grid::-webkit-scrollbar {
        display: none;
    }
    
    .deal-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .deal-info {
        padding: 18px;
    }
    
    .deal-info h3 {
        font-size: 16px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 13px;
    }
    
    .add-to-cart-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .view-all-deals-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        max-width: none;
        top: 10px;
        border-radius: 8px;
        min-height: 48px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .notification-content i {
        font-size: 14px;
    }
    
    .notification-content span {
        font-size: 13px;
    }
    
    .notification-close {
        width: 28px;
        height: 28px;
        margin-right: 2px;
    }
    
    .notification-close i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hot-deals-grid {
        gap: 12px;
        padding: 0 12px;
    }
    
    .deal-card {
        flex: 0 0 250px;
    }
    
    .deal-info {
        padding: 14px;
    }
    
    .deal-info h3 {
        font-size: 15px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .original-price {
        font-size: 12px;
    }
    
    .add-to-cart-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .view-all-deals-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ===== SIMPLE HAMBURGER MENU WITH PASTEL MOBILE MENU =====

/* Simple Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: flex-start;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    transition: all 0.2s ease;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.mobile-menu-toggle span {
    display: block;
    width: 23px;
    height: 2.5px;
    background: #333;
    border-radius: 0;
    transition: all 0.2s ease;
    position: relative;
    align-self: flex-start;
}

.mobile-menu-toggle span:nth-child(1) {
    width: 23px;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 18px;
}

.mobile-menu-toggle span:nth-child(3) {
    width: 13px;
}

/* Active/Open State - Properly positioned X */
.mobile-menu-toggle.active span {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.mobile-menu-toggle.active {
    position: relative;
}

.mobile-menu-toggle.active::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 3px;
    width: 20px;
    height: 2.5px;
    background: #333;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 3px;
    width: 20px;
    height: 2.5px;
    background: #333;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Smaller screens adjustments */
@media (max-width: 480px) {
    .mobile-nav-menu {
        width: 280px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link i {
        font-size: 16px;
    }
}
/* Enhanced Mobile Navigation Menu with Beautiful Pastel Background */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 360px;
    height: 100vh;
    background: 
        linear-gradient(135deg, #FFE9D3 0%, #d3e7f7 50%, #FFE9D3 100%);
    box-shadow: 
        8px 0 40px rgba(0, 0, 0, 0.15),
        inset -2px 0 0 rgba(255, 255, 255, 0.5);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    backdrop-filter: blur(15px);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background: 
        linear-gradient(135deg, rgba(255, 233, 211, 0.95) 0%, rgba(211, 231, 247, 0.95) 50%, rgba(255, 233, 211, 0.95) 100%);
    backdrop-filter: blur(20px);
    color: #1e293b;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: headerShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.mobile-nav-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #ec4899, #8b5cf6, #3b82f6, #10b981);
    border-radius: 2px;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes menuBackgroundShift {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 100% 100%, 0% 100%, 50% 50%;
    }
    20% {
        background-position: 0% 0%, 30% 20%, 70% 80%, 20% 70%, 80% 30%;
    }
    40% {
        background-position: 0% 0%, 60% 40%, 40% 60%, 40% 40%, 60% 60%;
    }
    60% {
        background-position: 0% 0%, 90% 60%, 10% 40%, 60% 10%, 40% 90%;
    }
    80% {
        background-position: 0% 0%, 20% 80%, 80% 20%, 80% 80%, 20% 20%;
    }
}

@keyframes headerShimmer {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
    position: relative;
    /* Removed overflow hidden to prevent animation */
}

/* Removed logo animation - no before pseudo element for logo */
/* Logo will not have shine animation anymore */

.mobile-nav-logo .logo-icon svg {
    width: 24px;
    height: 24px;
    color: #1e293b;
    z-index: 2;
    position: relative;
    filter: none;
}

.mobile-nav-logo h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #475569, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.mobile-nav-close {
    background: linear-gradient(135deg, #FFE9D3, #d3e7f7);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.mobile-nav-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-close:hover::before {
    left: 100%;
}

.mobile-nav-close:hover {
    background: linear-gradient(135deg, #d3e7f7, #FFE9D3);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.mobile-nav-close i {
    font-size: 20px;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.mobile-nav-links {
    padding: 30px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    margin: 4px 16px;
    text-decoration: none;
    color: rgba(30, 41, 59, 0.85);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 16px;
    border-left: 5px solid transparent;
    backdrop-filter: blur(10px);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #1e293b;
    border-left-color: #fbbf24;
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    color: #1e293b;
    border-left-color: #ec4899;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.mobile-nav-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    background: linear-gradient(135deg, #fbbf24, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mobile-nav-link.active i {
    transform: scale(1.1);
    animation: iconPulse 2s ease-in-out infinite;
}

.mobile-nav-link span {
    flex: 1;
    letter-spacing: 0.025em;
}

.mobile-nav-counter {
    background: linear-gradient(135deg, #ef4444, #f59e0b, #ec4899);
    color: white;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    display: none; /* Hide counters by default */
}

.mobile-nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: 
        linear-gradient(135deg, rgba(255, 233, 211, 0.9) 0%, rgba(211, 231, 247, 0.9) 50%, rgba(255, 233, 211, 0.9) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-contact-info p {
    margin: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(30, 41, 59, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.mobile-contact-info p:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.mobile-contact-info i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(135deg, #fbbf24, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add new animations */
@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Hide desktop nav when mobile nav is active */
body.mobile-nav-open .nav-links {
    display: none !important;
}

/* Hide hamburger button when mobile menu is open */
body.mobile-nav-open .mobile-menu-toggle {
    display: none !important;
}

/* Mobile Menu Overlay with Pastel Background */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255, 233, 211, 0.4), rgba(211, 231, 247, 0.4), rgba(255, 233, 211, 0.4));
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Cart and Wishlist Counter Visibility Control */
.mobile-nav-link[href*="cart"] .mobile-nav-counter,
.mobile-nav-link[href*="wishlist"] .mobile-nav-counter {
    display: none !important; /* Force hide cart/wishlist counters */
}

/* Only show counter for other nav items if needed */
.mobile-nav-link:not([href*="cart"]):not([href*="wishlist"]) .mobile-nav-counter {
    display: none; /* Hide all counters by default */
}

/* If you want to show specific counters, you can add classes like .show-counter */
.mobile-nav-counter.show-counter {
    display: inline-flex !important;
}

/* Loading Screen Styles - Pastel Theme */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fce7f3 0%, #e0f2fe 25%, #f0fdf4 50%, #fef3c7 75%, #fed7e2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: logoFadeIn 2s ease-in-out;
}

.preloader-logo .logo-icon {
    width: 180px;
    height: 150px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.loading-spinner {
    margin: 30px 0;
    position: relative;
}

/* Classic Professional Phone Shopping Animation */
.phone-shopping-animation {
    position: relative;
    width: 280px;
    height: 80px;
    margin: 0 auto;
}

/* Elegant Phone Icon */
.phone-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 75px;
    background: #475569;
    border: 2px solid #64748b;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: phoneSlide 2s ease-in-out infinite;
}

.phone-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    right: 6px;
    bottom: 15px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 4px;
}

.phone-icon::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #94a3b8;
    border-radius: 1px;
}

/* Professional Shopping Cart */
.cart-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: 2px solid #64748b;
    background: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cartPulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cart-icon::before {
    content: '';
    width: 20px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.cart-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
    bottom: 8px;
    right: 12px;
    box-shadow: -8px 0 0 #e2e8f0;
}

/* Elegant Data Connection Line */
.data-stream {
    position: absolute;
    top: 50%;
    left: 55px;
    right: 65px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #64748b 20%, #94a3b8 50%, #64748b 80%, transparent 100%);
    animation: dataTransfer 2s linear infinite;
    border-radius: 1px;
}

.data-stream::before,
.data-stream::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: dataPoints 2s linear infinite;
    opacity: 0;
}

.data-stream::before {
    left: 20%;
    animation-delay: 0s;
}

.data-stream::after {
    left: 50%;
    animation-delay: -0.5s;
}

/* Professional Progress Dots */
.progress-rings {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.progress-ring {
    width: 8px;
    height: 8px;
    background: #475569;
    border-radius: 50%;
    animation: progressDots 1.8s ease-in-out infinite;
}

.progress-ring:nth-child(1) {
    animation-delay: 0s;
}

.progress-ring:nth-child(2) {
    animation-delay: 0.3s;
}

.progress-ring:nth-child(3) {
    animation-delay: 0.6s;
}

.loading-text {
    margin: 50px 0 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    animation: textFade 2s ease-in-out infinite;
}

.loading-subtitle {
    margin: 12px 0 0 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: #94a3b8;
    animation: subtitleFade 3s ease-in-out infinite;
}

/* Classic Professional Animations */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneSlide {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes cartPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes dataTransfer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes dataPoints {
    0%, 80%, 100% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    40% {
        opacity: 1;
        transform: translateX(20px) scale(1.2);
    }
}

@keyframes progressDots {
    0%, 80%, 100% {
        background: #475569;
        transform: scale(1);
    }
    40% {
        background: #94a3b8;
        transform: scale(1.3);
    }
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Custom Logo Styles for Better Visibility */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo .logo-icon {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 70px;
}

/* Adjust header height for larger logo */
.header {
    min-height: 80px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    /* gap: 20px; */
}

@media (max-width: 768px) {
    .logo .logo-icon {
        width: 80px !important;
        height: 60px !important;
        min-width: 80px;
        min-height: 60px;
    }
    .header {
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    .logo .logo-icon {
        width: 70px !important;
        height: 50px !important;
        min-width: 70px;
        min-height: 50px;
    }
    .header {
        min-height: 65px;
    }
}

/* Removed duplicate dark mobile menu CSS - only pastel menu will be used */

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Smaller screens adjustments */
@media (max-width: 480px) {
    .mobile-nav-menu {
        width: 280px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link i {
        font-size: 16px;
    }
}

/* ===== RESPONSIVE HEADER STYLES =====

/* Mobile search container */
.mobile-search-container {
    display: none;
    width: 100%;
    padding: 12px 20px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.mobile-search-container .search-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.mobile-search-container .search-icon {
    padding: 12px 16px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 16px 12px 0;
    font-size: 16px;
    color: #1e293b;
}

.mobile-search-input::placeholder {
    color: #94a3b8;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 8px 0 12px 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 60px;
    position: relative;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #000000;
    background: #f5f5f5;
}

.mobile-nav-icon {
    margin-bottom: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon svg {
    width: 24px;
    height: 24px;
}

/* Home icon - black when active */
.mobile-nav-item.active .mobile-nav-icon svg path {
    fill: #000000;
    stroke: #000000;
}

/* Other icons - gray by default, black when active/hovered */
.mobile-nav-item:not(.active) .mobile-nav-icon svg path,
.mobile-nav-item:not(.active) .mobile-nav-icon svg rect {
    fill: #707070;
    stroke: #707070;
}

.mobile-nav-item:hover .mobile-nav-icon svg path,
.mobile-nav-item:hover .mobile-nav-icon svg rect,
.mobile-nav-item.active .mobile-nav-icon svg path,
.mobile-nav-item.active .mobile-nav-icon svg rect {
    fill: #000000;
    stroke: #000000;
}

/* Mobile cart counter */
.mobile-cart-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 15;
    min-width: 22px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.mobile-cart-counter.show {
    display: flex;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header layout changes - keep single row */
    .header {
        flex-direction: row;
        padding: 12px 16px;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo-section {
        flex: none;
        /* gap: 16px; */
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .logo h2 {
        font-size: 16px;
        margin: 0;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }
    
    /* Header right section */
    .header-right {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: none;
    }
    
    /* Hide desktop search */
    .search-container {
        display: none;
    }
    
    /* Show mobile search */
    .mobile-search-container {
        display: block;
    }
    
    /* Header buttons adjustments */
    .header-buttons {
        display: flex;
        /* gap: 3px; */
    }
    
    .header-btn {
        padding: 4px;
        min-width: auto;
        width: 32px;
        height: 32px;
    }
    
    .header-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .profile-pic {
        width: 24px;
        height: 24px;
    }
    
    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Add bottom padding to body to account for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust main container */
    .main-container {
        padding-bottom: 0;
    }
    
    /* Adjust notification position and size on mobile */
    .notification {
        top: 15px;
        right: 10px;
        left: 10px;
        max-width: none;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-100px);
        min-height: 44px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .notification-content i {
        font-size: 12px;
    }
    
    .notification-content span {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .notification-close {
        width: 24px;
        height: 24px;
        margin-right: 0;
    }
    
    .notification-close i {
        font-size: 10px;
    }
    
    /* Hide swipe indicator on very small screens */
    .notification:before {
        display: none;
    }
    
    
    /* Cards and sections spacing */
    .offers-section,
    .shop-categories-section,
    .top-deals-section,
    .hot-deals-section {
        padding: 40px 16px;
    }
    
    /* Top Deals responsive adjustments */
    .top-deals-container {
        padding: 30px 16px !important;
        border-radius: 16px !important;
        background-color: #FFE9D3 !important;
    }
    
    .top-deals-header {
        margin-bottom: 30px;
    }
    
    .top-deals-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 8px;
        flex-wrap: nowrap;
    }
    
    .top-deals-text {
        min-width: auto;
        flex: 1;
    }
    
    .top-deals-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .top-deals-subtitle {
        font-size: 14px;
    }
    
    .view-all-top-deals-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-height: 28px;
        gap: 4px;
    }
    
    .view-all-top-deals-btn i {
        font-size: 10px;
    }
    
    .view-all-top-deals-btn {
        padding: 10px 20px;
        font-size: 12px;
        gap: 6px;
    }
    
    .top-deals-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .top-deals-grid::-webkit-scrollbar {
        display: none;
    }
    
    .top-deals-grid > * {
        flex: 0 0 140px;
        scroll-snap-align: start;
    }
    
    .view-all-top-deals-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .popular-brands-section {
        padding: 40px 16px;
    }
    
    /* Grid adjustments */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .shop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .popular-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hot-deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .header {
        padding: 10px 12px 0;
    }
    
    .mobile-search-container {
        padding: 10px 12px;
    }
    
    .logo h2 {
        font-size: 16px;
    }
    
    .header-btn {
        width: 30px;
        height: 30px;
        padding: 4px;
    }
    
    .header-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .profile-pic {
        width: 28px;
        height: 28px;
    }
    
    .mobile-nav-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .mobile-nav-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-nav-item span {
        font-size: 11px;
    }
    
    /* Keep 2 columns on small screens for better layout */
    .shop-categories-grid,
    .popular-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Adjust category card fonts for 2-column layout */
    .category-card-minimal h3 {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .category-card-minimal p {
        font-size: 8px;
    }
    
    .category-icon-minimal {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .category-icon-minimal svg {
        width: 14px;
        height: 14px;
    }
    
    /* Adjust brand card fonts for 2-column layout */
    .brand-card-minimal h3 {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .brand-card-minimal p {
        font-size: 8px;
    }
    
    .brand-icon-minimal {
        width: 35px;
        height: 35px;
        margin-bottom: 6px;
    }
    
    .brand-icon-minimal img {
        width: 20px;
        height: 20px;
    }
    
    /* Top deals section - mobile adjustments */
    .top-deals-section {
        padding: 40px 12px;
    }
    
    .top-deals-container {
        padding: 0 8px;
    }
    
    .top-deals-grid {
        gap: 10px;
        padding: 0 12px;
    }
    
    .top-deals-grid > * {
        flex: 0 0 120px;
    }
    
    /* Hot deals grid - 2 columns */
    .hot-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Deal card adjustments for 2-column layout */
    .deal-card {
        border-radius: 12px;
    }
    
    .deal-badge {
        padding: 3px 6px;
        font-size: 5px;
        border-radius: 12px;
        top: 8px;
        left: 8px;
        letter-spacing: 0.3px;
    }
    
    .deal-info {
        padding: 10px;
    }
    
    .deal-info h3 {
        font-size: 12px;
        margin-bottom: 3px;
        line-height: 1.2;
    }
    
    .deal-info p {
        font-size: 9px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .deal-rating {
        margin-bottom: 8px;
        gap: 4px;
    }
    
    .stars i {
        font-size: 6px;
    }
    
    .rating-text {
        font-size: 8px;
    }
    
    .deal-price {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .current-price {
        font-size: 12px !important;
    }
    
    .original-price {
        font-size: 9px;
    }
    
    .add-to-cart-btn {
        padding: 6px 8px;
        font-size: 9px;
        border-radius: 8px;
        gap: 4px;
    }
    
    .add-to-cart-btn i {
        font-size: 10px;
    }
    
    .wishlist-btn {
        width: 26px;
        height: 26px;
        top: 8px;
        right: 8px;
    }
    
    .wishlist-btn i {
        font-size: 12px;
    }
    
    /* Section titles for small screens */
    .top-deals-title {
        font-size: 16px !important;
        margin-bottom: 3px;
    }
    
    .top-deals-subtitle {
        font-size: 11px !important;
    }
    
    .hot-deals-title {
        font-size: 18px;
    }
    
    .hot-deals-subtitle {
        font-size: 11px;
    }
    
    /* Keep view all button aligned to the right */
    .top-deals-title-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }
    
    .view-all-top-deals-btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
        min-height: 24px !important;
        gap: 3px !important;
        flex-shrink: 0 !important;
    }
    
    .view-all-top-deals-btn i {
        font-size: 8px !important;
    }
    
    .shop-categories-title,
    .popular-brands-title {
        font-size: 16px;
    }
    
    .shop-categories-subtitle,
    .popular-brands-subtitle {
        font-size: 11px;
    }
    
    /* Offers grid - 2 columns */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .offer-card-modern {
        padding: 12px;
    }
    
    .offer-content h3 {
        font-size: 13px;
    }
    
    .offer-value {
        font-size: 15px;
    }
    
    .offer-desc {
        font-size: 9px;
    }
    
    .offer-btn {
        padding: 8px 12px;
        font-size: 10px;
    }
}

/* Floating Contact Buttons */
/* ======================== */
.floating-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

.floating-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Call Button - Bottom Left */
.call-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    margin-right: auto;
}

.call-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    animation: pulse-call 1.5s infinite;
}

.call-btn i {
    font-size: 26px;
    animation: ring 2s ease-in-out infinite;
}

/* WhatsApp Button - Bottom Right */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    margin-left: auto;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    animation: pulse-whatsapp 1.5s infinite;
}

.whatsapp-btn i {
    font-size: 26px;
}

/* Button Text (Hidden by default, shown on hover for larger screens) */
.btn-text {
    position: absolute;
    left: -120px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.whatsapp-btn .btn-text {
    left: auto;
    right: -120px;
}

.floating-btn:hover .btn-text {
    opacity: 1;
    visibility: visible;
}

.call-btn:hover .btn-text {
    left: -100px;
}

.whatsapp-btn:hover .btn-text {
    right: -100px;
}

/* Animations */
@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3), 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3), 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3), 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .floating-contact-buttons {
        padding: 16px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .btn-text {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 80px; /* Above mobile bottom nav */
        padding: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    }
    
    .floating-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 22px;
    }
    
    /* Hide text labels on mobile for cleaner look */
    .btn-text {
        display: none;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .floating-contact-buttons {
        bottom: 85px;
        padding: 10px;
    }
    
    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 20px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .floating-contact-buttons {
        padding: 8px;
    }
    
    .floating-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 18px;
    }
}

/* Ensure buttons don't interfere with page scrolling */
.floating-btn {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .floating-btn {
        border: 2px solid white;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-btn {
        transition: none;
        animation: none;
    }
    
    .floating-btn:hover {
        transform: none;
        animation: none;
    }
    
    .call-btn i {
        animation: none;
    }
    
    @keyframes pulse-call,
    @keyframes pulse-whatsapp,
    @keyframes ring {
        animation: none;
    }
}

/* Auth Modal Styles */
/* ================= */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    padding: 0;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0);
}

.auth-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.auth-modal-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3a3a3a;
}

.auth-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #8a8a8a;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background-color: #f5f5f5;
    color: #3a3a3a;
}

.auth-modal-content {
    padding: 24px;
}

/* Forms */
.auth-form {
    width: 100%;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fcfcfc;
}

.input-wrapper input:focus {
    border-color: #BDC9E7; /* Pastel blue */
    box-shadow: 0 0 0 3px rgba(189, 201, 231, 0.3); /* Pastel blue shadow */
    outline: none;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9bafd8; /* Pastel blue for icons */
    font-size: 1rem;
}

/* Password field with eye button */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 46px; /* Make space for the eye button */
}

.eye-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9bafd8; /* Pastel blue */
    font-size: 1rem;
    padding: 0;
    z-index: 2; /* Ensure it's above the lock icon */
}

.eye-button:hover {
    color: #6c7ba8; /* Darker pastel blue on hover */
}

/* Form options (remember me, forgot password) */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me, .terms-agreement {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.remember-me input, .terms-agreement input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-color: #fcfcfc;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.remember-me:hover input ~ .checkmark,
.terms-agreement:hover input ~ .checkmark {
    background-color: #f5f5f5;
}

.remember-me input:checked ~ .checkmark,
.terms-agreement input:checked ~ .checkmark {
    background-color: #BDC9E7; /* Pastel blue */
    border-color: #BDC9E7; /* Pastel blue */
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.remember-me input:checked ~ .checkmark:after,
.terms-agreement input:checked ~ .checkmark:after {
    display: block;
}

.remember-me .checkmark:after,
.terms-agreement .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #9bafd8; /* Pastel blue */
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #6c7ba8; /* Darker pastel blue */
    text-decoration: underline;
}

/* Auth buttons */
.auth-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 5px;
}

.auth-btn.primary {
    background-color: #BDC9E7; /* Pastel blue */
    color: #3a3a3a;
    box-shadow: 0 2px 5px rgba(189, 201, 231, 0.4); /* Pastel blue shadow */
}

.auth-btn.primary:hover {
    background-color: #A6B4D8; /* Slightly darker pastel blue */
    box-shadow: 0 4px 8px rgba(189, 201, 231, 0.6);
    transform: translateY(-1px);
}

.auth-btn.primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(189, 201, 231, 0.3);
}

.auth-btn.secondary {
    background-color: #f5f5f5;
    color: #5a5a5a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.auth-btn.secondary:hover {
    background-color: #e9e9e9;
    color: #3a3a3a;
}

/* Auth divider */
.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 0;
}

.auth-divider span {
    display: inline-block;
    background-color: #ffffff;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: #8a8a8a;
    font-size: 0.9rem;
}

/* Password requirements */
.password-requirements {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requirement {
    font-size: 0.8rem;
    color: #8a8a8a;
    display: flex;
    align-items: center;
}

.requirement.valid {
    color: #9edfb9; /* Pastel green */
}

.requirement.invalid {
    color: #f2bab8; /* Pastel red */
}

.requirement.valid:before,
.requirement.invalid:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.requirement.valid:before {
    background-color: #9edfb9; /* Pastel green */
}

.requirement.invalid:before {
    background-color: #f2bab8; /* Pastel red */
}

/* Forgot password form styling */
.forgot-password-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f4fc; /* Very light pastel blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #9bafd8; /* Pastel blue */
    font-size: 1.8rem;
}

#forgotPasswordForm h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #3a3a3a;
    font-weight: 700;
}

#forgotPasswordForm p {
    text-align: center;
    margin-bottom: 20px;
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form links */
.auth-form a {
    color: #9bafd8; /* Pastel blue */
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-form a:hover {
    color: #6c7ba8; /* Darker pastel blue */
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 480px) {
    .auth-modal {
        max-width: 90%;
        max-height: 80vh;
    }
    
    .auth-modal-header {
        padding: 16px 20px;
    }
    
    .auth-modal-title {
        font-size: 1.2rem;
    }
    
    .auth-modal-content {
        padding: 20px;
    }
    
    .input-wrapper input {
        padding: 10px 14px 10px 36px;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .auth-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .terms-agreement {
        font-size: 11px;
    }
    
    .forgot-password {
        align-self: flex-end;
    }
}