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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.highlight {
    color: #DC2626;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: white;
    color: #DC2626;
    border: 2px solid #DC2626;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    border-color: #DC2626;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left span {
    color: #475569;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left span:hover {
    color: #1E293B;
}

.top-bar-left i {
    color: #DC2626;
    font-size: 15px;
    transition: all 0.3s ease;
}

.top-bar-left span:hover i {
    transform: scale(1.1);
}

.top-bar-center {
    color: #374151;
    font-weight: 500;
}

.top-bar-right a {
    color: #64748B;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-right a:hover {
    color: #DC2626;
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.signup-link {
    color: #DC2626;
    font-weight: 600;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    backdrop-filter: blur(30px);
}

/* Mobile menu toggle - hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
}

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

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: 0;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: logoFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo:hover .logo-icon::before {
    transform: translateX(100%);
}

.logo-icon i {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1F2937;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: #DC2626;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.logo:hover .logo-icon i {
    transform: scale(1.1);
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.location i {
    color: #DC2626;
    font-size: 14px;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.icon-btn {
    position: relative;
    color: #374151;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.icon-btn:hover {
    color: #DC2626;
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-color: #DC2626;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.icon-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-btn:hover::before {
    opacity: 1;
}

.cart-btn {
    background: #FEF2F2;
    border-radius: 50%;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #DC2626;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.nav-menu::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));
    pointer-events: none;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 16px;
    white-space: nowrap;
    border-radius: 12px;
    background: transparent;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #DC2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.12));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    opacity: 0;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
    opacity: 1;
}

.search-bar {
    display: flex;
    max-width: 350px;
    width: 100%;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.search-bar:focus-within {
    border-color: #DC2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
    transform: translateY(-1px);
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    min-width: 0;
}

.search-bar input::placeholder {
    color: #9CA3AF;
}

.search-bar button {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 50%, #FEF2F2 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(220, 38, 38, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23DC2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-brand {
    margin-bottom: 20px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-brand-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
    position: relative;
    animation: brandGlow 3s ease-in-out infinite alternate;
}

@keyframes brandGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.6));
    }
}

.hero-brand-subtitle {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #6B7280, #9CA3AF, #6B7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 10px;
    animation: slideInUp 0.8s ease 0.2s both;
    font-weight: 500;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInUp 0.8s ease 0.4s both;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(220, 38, 38, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6));
    }
}

.hero-description {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease 0.6s both;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease 0.8s both;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-shop-btn, .hero-view-all-btn, .featured-view-all-btn {
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-signals {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slideInUp 0.8s ease 1s both;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #374151;
}

.rating i {
    color: #F59E0B;
}

.customers {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6B7280;
}

.customer-avatars {
    display: flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.customer-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-avatars img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-icon {
    position: absolute;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    font-size: 20px;
}

.secure-payment {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.fast-delivery {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Featured Categories */
.featured-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    position: relative;
    overflow: hidden;
}

.featured-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23DC2626" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23DC2626" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23DC2626" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23DC2626" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23DC2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.featured-categories .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.header-content {
    flex: 1;
    min-width: 450px;
    max-width: 700px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.category-filters {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.filter-btn {
    padding: 14px 28px;
    border: 2px solid #E5E7EB;
    background: white;
    color: #6B7280;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn:hover {
    border-color: #DC2626;
    color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.filter-btn.active {
    background: #DC2626;
    color: white;
    border-color: #DC2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #F3F4F6;
    backdrop-filter: blur(10px);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2);
    border-color: #FEE2E2;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    border-radius: 12px 12px 0 0;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .overlay-content {
    transform: translateY(0);
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.overlay-content i {
    font-size: 24px;
    opacity: 0.8;
}

.category-content {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #B91C1C, #991B1B);
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h3 {
    color: #DC2626;
}

.category-description {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.category-stats {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-count {
    background: #FEF2F2;
    color: #DC2626;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #F59E0B;
    font-size: 12px;
    font-weight: 600;
}

.rating i {
    font-size: 10px;
}

.category-arrow {
    color: #DC2626;
    font-size: 18px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.categories-cta {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.cta-content p {
    color: #6B7280;
    font-size: 1rem;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    white-space: nowrap;
}

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

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23DC2626" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23DC2626" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23DC2626" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23DC2626" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23DC2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ice-pattern)"/></svg>');
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease;
    border: 1px solid #FEE2E2;
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #B91C1C, #991B1B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
    border-color: #DC2626;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px 8px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B7280;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    background: #DC2626;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

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

.rating i {
    color: #F59E0B;
}

.weight {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #DC2626;
}

.original-price {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.add-btn {
    width: 100%;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-btn:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Discount Banners */
.discount-banners {
    padding: 80px 0;
    background: white;
}

.discount-banners .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.banner-left, .banner-right {
    display: flex;
    background: #FEF2F2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #FEE2E2;
}

.banner-left:hover, .banner-right:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.banner-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content .discount-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
    background: #F59E0B;
    color: white;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.banner-content p {
    color: #6B7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.banner-left:hover .banner-image img,
.banner-right:hover .banner-image img {
    transform: scale(1.1);
}

/* Summer Discount */
.summer-discount {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 25%, #FF1744 50%, #D50000 75%, #B71C1C 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.1);
}

.summer-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="3" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.summer-discount::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.summer-discount .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.discount-header h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.discount-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.discount-offer {
    margin-bottom: 40px;
}

.offer-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    padding: 25px 35px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

.offer-text {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.offer-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    padding: 25px 20px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    min-width: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.countdown-item:hover::before {
    transform: translateX(100%);
}

.countdown-item .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.countdown-item .label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.summer-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    color: #D50000;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.summer-shop-btn:hover::before {
    left: 100%;
}

.summer-shop-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
}

.summer-shop-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.summer-shop-btn i {
    font-size: 18px;
}

.discount-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    animation: fadeInRight 1s ease-out 0.8s both;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.discount-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 35px 90px rgba(0,0,0,0.5);
}

.discount-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.1);
}

.discount-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.overlay-content i {
    font-size: 20px;
    color: #FFD700;
}

/* Deals of the Day */
.deals-of-day {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.deals-of-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23DC2626" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.deals-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.deals-header .header-content {
    margin-bottom: 30px;
}

.deals-header .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.deals-header .section-subtitle {
    color: #6B7280;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.deals-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #DC2626;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.deals-timer i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.deals-grid {
    position: relative;
    z-index: 1;
}

.deal-card {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.deal-card:hover {
    border-color: #DC2626;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.deal-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.deal-card .discount-badge {
    background: #DC2626;
    color: white;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

/* Cart Section */
.cart-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.cart-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #DC2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    color: #B91C1C;
    transform: translateX(-5px);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

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

.item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.item-weight {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

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

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #DC2626;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 25px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quantity-btn:hover {
    background: #DC2626;
    color: white;
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.remove-item {
    width: 40px;
    height: 40px;
    border: none;
    background: #fee2e2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #DC2626;
    color: white;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
    text-align: center;
}

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

.summary-item span:first-child {
    color: #666;
}

.summary-item span:last-child {
    font-weight: 600;
    color: #333;
}

.summary-divider {
    height: 1px;
    background: #e9ecef;
    margin: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.payment-methods {
    text-align: center;
}

.payment-methods p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: #666;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-content i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.empty-cart-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Shop Filters */
.shop-filters {
    padding: 60px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    position: relative;
    overflow: hidden;
}

.shop-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="filter-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23DC2626" opacity="0.05"/><circle cx="80" cy="80" r="2" fill="%23DC2626" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23DC2626" opacity="0.05"/><circle cx="10" cy="60" r="1" fill="%23DC2626" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="%23DC2626" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23filter-pattern)"/></svg>');
    pointer-events: none;
}

.filters-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.filters-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.filters-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.filters-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.filter-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #B91C1C, #991B1B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-group:hover::before {
    opacity: 1;
}

.filter-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.filter-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-group:hover .filter-icon {
    transform: scale(1.1) rotate(5deg);
}

.filter-content {
    flex: 1;
}

.filter-content label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23DC2626"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.filter-select:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.filter-select:hover {
    border-color: #B91C1C;
}

.filter-actions {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.clear-filters,
.apply-filters {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clear-filters {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.clear-filters:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.apply-filters {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: 2px solid #DC2626;
}

.apply-filters:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.active-filters {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.active-filter-tag {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInUp 0.3s ease;
}

.active-filter-tag .remove-filter {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.active-filter-tag .remove-filter:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Filter Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes filterPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.filter-group:focus-within {
    animation: filterPulse 0.3s ease;
}

/* Cart Responsive */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cart-header h1 {
        font-size: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .item-image img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .item-quantity {
        justify-content: center;
    }
    
    .remove-item {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 40px 0;
    }
    
    .cart-items,
    .cart-summary {
        padding: 20px;
    }
    
    .cart-header h1 {
        font-size: 1.8rem;
    }
}

/* Shop Filters Responsive */
@media (max-width: 1024px) {
    .filters-row {
        gap: 20px;
    }
    
    .filter-group {
        min-width: 250px;
        padding: 18px 20px;
    }
    
    .filter-actions {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .shop-filters {
        padding: 40px 0;
    }
    
    .filters-header h2 {
        font-size: 2rem;
    }
    
    .filters-header p {
        font-size: 1rem;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .clear-filters,
    .apply-filters {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filters-header h2 {
        font-size: 1.8rem;
    }
    
    .filter-group {
        padding: 15px 18px;
    }
    
    .filter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .filter-content label {
        font-size: 0.8rem;
    }
    
    .filter-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .clear-filters,
    .apply-filters {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Authentication Styles */
.auth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="auth-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23DC2626" opacity="0.05"/><circle cx="80" cy="80" r="2" fill="%23DC2626" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23DC2626" opacity="0.05"/><circle cx="10" cy="60" r="1" fill="%23DC2626" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="%23DC2626" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23auth-pattern)"/></svg>');
    pointer-events: none;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.auth-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.auth-tab {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.auth-tab.active {
    background: white;
    color: #DC2626;
    box-shadow: 0 -2px 10px rgba(220, 38, 38, 0.1);
}

.auth-tab:hover:not(.active) {
    background: #f1f3f4;
    color: #333;
}

.auth-tab i {
    font-size: 1.2rem;
}

.auth-form {
    display: none;
    padding: 40px;
    animation: slideInUp 0.5s ease;
}

.auth-form.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

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

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

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-icon input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-icon input:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-icon input:focus + i,
.input-icon:focus-within i {
    color: #DC2626;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #DC2626;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #DC2626;
    border-color: #DC2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.forgot-password {
    color: #DC2626;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #B91C1C;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #B91C1C, #991B1B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.social-auth {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
}

.social-auth p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    flex: 1;
    max-width: 150px;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #4285f4;
    color: #4285f4;
}

.facebook-btn:hover {
    border-color: #1877f2;
    color: #1877f2;
}

/* Auth Responsive */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }
    
    .auth-container {
        margin: 0 20px;
    }
    
    .auth-form {
        padding: 30px 25px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .auth-form {
        padding: 25px 20px;
    }
    
    .auth-tab {
        padding: 15px;
        font-size: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .input-icon input {
        padding: 12px 12px 12px 40px;
        font-size: 0.9rem;
    }
    
    .auth-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

/* User Menu Styles */
.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    overflow: hidden;
}

.user-menu-content {
    padding: 0;
}

.user-info {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.user-info i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.user-info span {
    font-weight: 600;
    font-size: 1rem;
}

.user-menu-items {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
}

.menu-item:hover {
    background: #f8f9fa;
    color: #DC2626;
    transform: translateX(5px);
}

.menu-item i {
    width: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.menu-item:hover i {
    color: #DC2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #DC2626;
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.footer-section ul li a:hover {
    color: #DC2626;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #DC2626;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #D1D5DB;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .header .container {
        max-width: 1200px;
        gap: 10px;
        padding: 0 20px;
    }
    
    .header-top, .header-bottom {
        gap: 15px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .search-bar {
        max-width: 300px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .header .container {
        gap: 8px;
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .header-left {
        order: 1;
    }
    
    .header-center {
        order: 2;
        margin: 0;
        width: 100%;
    }
    
    .header-right {
        order: 3;
    }
    
    .nav-menu {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 8px 12px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon i {
        font-size: 1.6rem;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        gap: 12px;
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-left {
        order: 1;
        flex-shrink: 0;
    }
    
    .header-center {
        order: 2;
        display: none; /* Hide desktop navigation on mobile */
    }
    
    .header-right {
        order: 3;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none; /* Hide desktop navigation */
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: #333;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 1.4rem;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    /* Ensure mobile menu is properly positioned */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 1001;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Other responsive styles for tablet */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .category-image {
        height: 190px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-brand-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-brand-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-description {
        text-align: center;
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-image img {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .category-card {
        margin: 0;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-image img {
        object-position: center;
    }
    
    .featured-categories .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 20px;
        gap: 25px;
    }
    
    .header-content {
        min-width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 32px;
        text-align: left;
        line-height: 1.1;
    }
    
    .section-subtitle {
        text-align: left;
        font-size: 18px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
    
    .category-filters {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        padding: 0;
        width: 100%;
    }
    
    .filter-btn {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 25px;
        white-space: nowrap;
    }
    
    .categories-cta {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .product-card {
        margin: 0 8px;
    }
    
    .discount-banners .container {
        grid-template-columns: 1fr;
    }
    
    .banner-left, .banner-right {
        flex-direction: column;
    }
    
    .summer-discount .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .discount-header h2 {
        font-size: 42px;
    }
    
    .discount-subtitle {
        font-size: 18px;
    }
    
    .countdown {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .countdown-item .number {
        font-size: 24px;
    }
    
    .offer-badge {
        padding: 15px 25px;
    }
    
    .offer-text {
        font-size: 28px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header .container {
        gap: 8px;
        padding: 0 12px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        padding: 6px 0;
    }
    
    .header-left {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
    
    .header-bottom {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 6px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        width: 100%;
        padding: 0 2px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 6px 10px;
        background: #FEF2F2;
        border-radius: 6px;
        font-weight: 500;
    }
    
    .search-bar {
        max-width: 100%;
        width: 100%;
        margin: 0 4px;
    }
    
    .search-bar input {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .search-bar button {
        padding: 8px 10px;
    }
    
    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon i {
        font-size: 1.6rem;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
        .logo-sub {
        font-size: 0.8rem;
    }
    
    .header-bottom {
        gap: 8px;
    }
    
    .nav-menu {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 11px;
        padding: 5px 8px;
    }
    

    
    .search-bar input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-bar button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        padding: 8px;
    }
    
    .icon-btn:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 1.2rem;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .location {
        font-size: 10px;
    }
    
    /* Enhanced mobile footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .footer-section ul li a {
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .footer-section ul li a:hover {
        background: rgba(220, 38, 38, 0.1);
        color: #DC2626;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 50%;
        background: rgba(220, 38, 38, 0.1);
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: #DC2626;
        color: white;
        transform: scale(1.1);
    }
    
    .footer-bottom {
        padding: 20px 16px;
        text-align: center;
        font-size: 12px;
    }
    
    /* Enhanced touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .icon-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-bar input {
        min-height: 44px;
    }
    
    .search-bar button {
        min-width: 44px;
        min-height: 44px;
    }
    
    .filter-btn {
        min-height: 36px;
        min-width: 60px;
    }
    
    .add-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .wishlist-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Other responsive styles */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
    }
    
    .top-bar-left span {
        font-size: 12px;
    }
    
    .top-bar-right {
        justify-content: center;
        gap: 12px;
    }
    
    .top-bar-right a {
        font-size: 18px;
        padding: 8px;
        border-radius: 50%;
        background: rgba(220, 38, 38, 0.1);
        transition: all 0.3s ease;
    }
    
    .top-bar-right a:hover {
        background: #DC2626;
        color: white;
        transform: scale(1.1);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 12px;
    }
    
    .hero-brand-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-brand-subtitle {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 24px;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-description {
        text-align: center;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .customer-avatars img {
        width: 24px;
        height: 24px;
        margin-left: -6px;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 15px;
    }
    
    .hero-image img {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .category-card {
        margin: 0 6px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 14px;
    }
    
    .category-filters {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 12px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 15px;
        min-width: 60px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .product-card {
        margin: 0 6px;
    }
    
    .discount-banners .container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .banner-left, .banner-right {
        margin: 0 6px;
    }
    
    .summer-discount .container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 12px;
    }
    
    .discount-header h2 {
        font-size: 28px;
    }
    
    .discount-subtitle {
        font-size: 16px;
    }
    
    .countdown {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 10px 8px;
        min-width: 60px;
    }
    
    .countdown-item .number {
        font-size: 20px;
    }
    
    .countdown-item .label {
        font-size: 10px;
    }
    
    .offer-badge {
        padding: 12px 20px;
    }
    
    .offer-text {
        font-size: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        padding: 0 12px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .category-content {
        padding: 20px;
        gap: 15px;
    }
    
    .category-info h3 {
        font-size: 18px;
    }
    
    .categories-cta {
        padding: 30px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .deals-header .section-title {
        font-size: 36px;
    }
    
    .deals-header .section-subtitle {
        font-size: 16px;
    }
    
    .deals-timer {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .discount-banners .container {
        grid-template-columns: 1fr;
    }
    
    .banner-left, .banner-right {
        flex-direction: column;
    }
    
    .summer-discount .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 8px;
    }
    
    .countdown-item .number {
        font-size: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        flex: 1;
        min-width: 70px;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #F3F4F6;
    border-top: 4px solid #DC2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.our-values {
    padding: 80px 0;
    background: #F9FAFB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #FEF2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #DC2626;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: #DC2626;
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

.value-card p {
    color: #6B7280;
    line-height: 1.6;
}

.our-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: #F9FAFB;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #DC2626;
}

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

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;
}

.team-member .position {
    color: #DC2626;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    color: #6B7280;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.8s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #DC2626;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6B7280;
    margin: 0;
}

.contact-item a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #DC2626;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Auth Form Visibility Fix */
.auth-form { display: none; }
.auth-form.active { display: block; }

/* User icon styles for signed in state */
.icon-btn .fa-user-check {
    color: #DC2626;
    animation: pulse 2s infinite;
}

.icon-btn:hover .fa-user-check {
    color: #B91C1C;
    animation: none;
}

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

/* Enhanced user icon with notification dot */
.icon-btn.user-logged-in {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-color: #DC2626;
}

.icon-btn.user-logged-in::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #FEF2F2;
}

/* Profile Page Styles */
.profile-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.profile-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-section h3 i {
    color: #DC2626;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.location-actions .simple-auth-btn {
    flex: 1;
    min-width: 150px;
    font-size: 13px;
    padding: 10px 15px;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-actions .simple-auth-btn {
    min-width: 150px;
    font-size: 14px;
    padding: 12px 20px;
}

#profileInstructions {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
}

#profileInstructions:focus {
    outline: none;
    border-color: #DC2626;
}

/* Responsive profile styles */
@media (max-width: 768px) {
    .profile-section {
        padding: 15px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .simple-auth-btn {
        min-width: auto;
    }
    
    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-actions .simple-auth-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* User Menu Styles */
.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    z-index: 1000;
    margin-top: 10px;
    animation: slideDown 0.3s ease-out;
}

.user-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.user-menu-content {
    padding: 0;
}

.user-info {
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info i {
    font-size: 24px;
    color: #DC2626;
}

.user-info span {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.user-menu-items {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.menu-item:hover {
    background: #f3f4f6;
    color: #DC2626;
}

.menu-item i {
    width: 16px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.menu-item:hover i {
    color: #DC2626;
}

.menu-item:last-child {
    border-top: 1px solid #f3f4f6;
    margin-top: 5px;
    padding-top: 15px;
}

/* Animation for user menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive user menu */
@media (max-width: 768px) {
    .user-menu {
        min-width: 200px;
        right: -50px;
    }
    
    .user-menu::before {
        right: 70px;
    }
} 

/* Simple Authentication Styles */
.simple-auth-section {
    min-height: 100vh;
    background: #FEF2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.simple-auth-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.simple-auth-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.simple-auth-tab {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.simple-auth-tab.active {
    background: white;
    color: #DC2626;
    font-weight: 600;
}

.simple-auth-tab:hover:not(.active) {
    background: #f1f3f4;
    color: #333;
}

.simple-auth-tab i {
    font-size: 16px;
}

.simple-auth-form {
    display: none;
    padding: 32px;
}

.simple-auth-form.active {
    display: block;
}

.simple-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.simple-form-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.simple-form-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.simple-form-group {
    margin-bottom: 16px;
}

.simple-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.simple-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.simple-form-group input:focus {
    outline: none;
    border-color: #DC2626;
}

.simple-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.simple-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
}

.simple-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.simple-forgot {
    color: #DC2626;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.simple-forgot:hover {
    text-decoration: underline;
}

.simple-auth-btn {
    width: 100%;
    padding: 12px;
    background: #DC2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.simple-auth-btn:hover {
    background: #B91C1C;
}

.simple-social-auth {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.simple-social-auth p {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.simple-social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.simple-social-btn {
    flex: 1;
    max-width: 140px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.simple-social-btn:hover {
    border-color: #DC2626;
    color: #DC2626;
}

.simple-social-btn i {
    font-size: 14px;
}

/* Simple Auth Responsive */
@media (max-width: 480px) {
    .simple-auth-section {
        padding: 16px;
    }
    
    .simple-auth-form {
        padding: 24px 20px;
    }
    
    .simple-form-header h2 {
        font-size: 20px;
    }
    
    .simple-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .simple-form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .simple-social-buttons {
        flex-direction: column;
    }
    
    .simple-social-btn {
        max-width: none;
    }
}

/* Pagination Styles */
.index-pagination,
.pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.index-pagination .btn,
.pagination .btn {
    margin: 0 8px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.index-pagination .btn:hover,
.pagination .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.index-pagination .btn:disabled,
.pagination .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#pageIndicator,
#pageIndicatorIndex {
    display: inline-block;
    padding: 12px 20px;
    background: #FEF2F2;
    color: #DC2626;
    font-weight: 700;
    border-radius: 8px;
    margin: 0 15px;
    min-width: 60px;
    text-align: center;
}

/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: #FEF2F2;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #1F2937;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .index-pagination,
    .pagination {
        margin-top: 30px;
        padding: 15px;
    }
    
    .index-pagination .btn,
    .pagination .btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 80px;
    }
    
    #pageIndicator,
    #pageIndicatorIndex {
        padding: 10px 16px;
        margin: 0 10px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .index-pagination,
    .pagination {
        margin-top: 20px;
        padding: 10px;
    }
    
    .index-pagination .btn,
    .pagination .btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 70px;
        margin: 0 4px;
    }
    
    #pageIndicator,
    #pageIndicatorIndex {
        padding: 8px 12px;
        margin: 0 8px;
        min-width: 40px;
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2937;
}

.contact-details > p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #FEF2F2;
    border-color: #FECACA;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #B91C1C;
    transform: scale(1.1);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 1.1rem;
    color: #DC2626;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-text p a {
    color: #DC2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text p a:hover {
    color: #B91C1C;
}

.contact-text span {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.4;
}

.contact-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.map-content {
    text-align: center;
    margin-bottom: 40px;
}

.map-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1F2937;
}

.map-content > p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    margin-bottom: 40px;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-info-item i {
    font-size: 1.5rem;
    color: #DC2626;
    width: 40px;
    text-align: center;
}

.map-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 5px;
}

.map-info-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.4;
}



/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details h2,
    .map-content h2,
    .form-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 1rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

}

@media (max-width: 480px) {
    .contact-details h2,
    .map-content h2,
    .form-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-details > p,
    .map-content > p,
    .form-content > p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-text span {
        font-size: 0.8rem;
    }
    
    .map-info-item {
        padding: 15px;
        gap: 12px;
    }
    
    .map-info-item i {
        font-size: 1.25rem;
    }
    
    .map-info-item h4 {
        font-size: 1rem;
    }
    
    .map-info-item p {
        font-size: 0.8rem;
    }
    

}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header Mobile Optimization */
    .header-content {
        flex-direction: row;
        gap: 15px;
        padding: 8px 0;
        align-items: center;
    }
    
    .header-left {
        order: 1;
        flex: 1;
    }
    
    .header-center {
        order: 2;
        display: none; /* Hide regular nav on mobile */
    }
    
    .header-right {
        order: 3;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        background: #f0f0f0;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 4px;
    }
    
    /* Hide regular nav menu */
    .nav-menu {
        display: none;
    }
    
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Top Bar Mobile */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
    }
    
    .top-bar-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .top-bar-left span {
        font-size: 11px;
    }
    
    .top-bar-right {
        justify-content: center;
        gap: 15px;
    }
    
    .top-bar-right a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Search Bar Mobile */
    .search-bar {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .search-bar input {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .search-bar button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Hero Section Mobile */
    .hero .container {
        padding: 40px 15px;
        text-align: center;
    }
    
    .hero-brand-title {
        font-size: 18px;
    }
    
    .hero-brand-subtitle {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .customer-avatars img {
        width: 28px;
        height: 28px;
        border: 2px solid white;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .category-card {
        margin: 0;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .product-card {
        margin: 0;
    }
    
    /* Discount Banners Mobile */
    .discount-banners .container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .banner-left, .banner-right {
        margin: 0;
    }
    
    /* Summer Discount Mobile */
    .summer-discount .container {
        padding: 30px 15px;
        text-align: center;
    }
    
    .discount-header h2 {
        font-size: 20px;
    }
    
    .discount-subtitle {
        font-size: 13px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-item .number {
        font-size: 18px;
    }
    
    .countdown-item .label {
        font-size: 9px;
    }
    
    .offer-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .offer-text {
        font-size: 13px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 15px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
        padding: 6px 0;
        display: block;
        transition: color 0.3s ease;
        color: #666;
        text-decoration: none;
    }
    
    .footer-section ul li a:hover {
        color: #DC2626;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .social-links a:hover {
        transform: scale(1.1);
    }
    
    .footer-bottom {
        padding: 15px 0;
        text-align: center;
        font-size: 12px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .add-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Deals Mobile */
    .deals-header .section-title {
        font-size: 20px;
    }
    
    .deals-header .section-subtitle {
        font-size: 13px;
    }
    
    .deals-timer {
        font-size: 11px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    /* Category Content Mobile */
    .category-content {
        padding: 15px;
    }
    
    .category-info h3 {
        font-size: 15px;
    }
    
    .categories-cta {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    /* Header Mobile Styles */
    .header .container {
        padding: 0 10px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 12px;
        padding: 10px 0;
        align-items: center;
    }
    
    .header-left {
        flex: 1;
    }
    
    .header-center {
        display: none; /* Hide regular nav on mobile */
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        width: 28px;
        height: 28px;
        background: #f0f0f0;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 3px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    /* Hide regular nav menu */
    .nav-menu {
        display: none;
    }
    
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon i {
        font-size: 14px;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    /* Top Bar Mobile */
    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        padding: 6px 12px;
    }
    
    .top-bar-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .top-bar-left span {
        font-size: 10px;
    }
    
    .top-bar-right {
        justify-content: center;
        gap: 12px;
    }
    
    .top-bar-right a {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    /* Hero Section Mobile */
    .hero .container {
        padding: 30px 12px;
        text-align: center;
    }
    
    .hero-brand-title {
        font-size: 16px;
    }
    
    .hero-brand-subtitle {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .customer-avatars img {
        width: 24px;
        height: 24px;
        border: 2px solid white;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }
    
    .category-card {
        margin: 0;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        padding: 0 12px;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 4px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }
    
    .product-card {
        margin: 0;
    }
    
    /* Discount Banners Mobile */
    .discount-banners .container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }
    
    .banner-left, .banner-right {
        margin: 0;
    }
    
    /* Summer Discount Mobile */
    .summer-discount .container {
        padding: 25px 12px;
        text-align: center;
    }
    
    .discount-header h2 {
        font-size: 18px;
    }
    
    .discount-subtitle {
        font-size: 12px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 8px;
    }
    
    .countdown-item .number {
        font-size: 16px;
    }
    
    .countdown-item .label {
        font-size: 8px;
    }
    
    .offer-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .offer-text {
        font-size: 11px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 12px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 12px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-section ul li a {
        font-size: 12px;
        padding: 4px 0;
        display: block;
        transition: color 0.3s ease;
        color: #666;
        text-decoration: none;
    }
    
    .footer-section ul li a:hover {
        color: #DC2626;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .social-links a:hover {
        transform: scale(1.1);
    }
    
    .footer-bottom {
        padding: 12px 0;
        text-align: center;
        font-size: 11px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .add-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .wishlist-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    /* Search Bar Mobile */
    .search-bar {
        width: 100%;
        max-width: 260px;
    }
    
    .search-bar input {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .search-bar button {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    /* Deals Mobile */
    .deals-header .section-title {
        font-size: 18px;
    }
    
    .deals-header .section-subtitle {
        font-size: 11px;
    }
    
    .deals-timer {
        font-size: 10px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
    }
    
    /* Category Content Mobile */
    .category-content {
        padding: 12px;
    }
    
    .category-info h3 {
        font-size: 13px;
    }
    
    .categories-cta {
        padding: 16px 12px;
    }
    
    /* Auth Forms Mobile */
    .simple-auth-section {
        padding: 20px 12px;
    }
    
    .simple-auth-form {
        padding: 20px 15px;
    }
    
    .simple-form-header h2 {
        font-size: 18px;
    }
    
    .simple-form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .simple-form-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .simple-social-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .simple-social-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 12px;
    }
    
    /* Admin Dashboard Mobile */
    .admin-dashboard {
        padding: 20px 12px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .admin-form {
        padding: 20px 15px;
    }
    
    .admin-form h3 {
        font-size: 18px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-info h3 {
        font-size: 14px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .edit-btn, .delete-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 20px 15px;
    }
    
    .modal h3 {
        font-size: 18px;
    }
    
    .modal-form {
        padding: 15px;
    }
    
    .modal-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        gap: 15px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu a {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .header-content {
        flex-direction: row;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .nav-menu a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero .container {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .logo-icon {
        border-width: 2px;
    }
    
    .icon-btn {
        border-width: 2px;
    }
    
    .btn {
        border-width: 2px;
    }
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header .logo {
    flex-direction: row;
    gap: 10px;
}

.mobile-menu-header .logo-icon {
    width: 35px;
    height: 35px;
}

.mobile-menu-header .logo-icon i {
    font-size: 16px;
}

.mobile-menu-header .logo-main {
    font-size: 14px;
}

.mobile-menu-header .logo-sub {
    font-size: 10px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-close:hover {
    color: #DC2626;
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: #FEF2F2;
    color: #DC2626;
    padding-left: 25px;
}

.mobile-menu-nav a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.mobile-menu-footer .icon-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a:hover {
        background: #FEF2F2;
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .icon-btn:hover {
        transform: none;
    }
    
    .category-card:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .icon-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .filter-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .add-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Forgot Password Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

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

.modal-body .simple-auth-btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}