/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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


/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    font-size: 13px;
    position: relative;
    z-index: 101;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Left Section - Contact */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: color 0.2s;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: #667eea;
}

.top-bar-link svg {
    flex-shrink: 0;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Center Section - Marquee */
.top-bar-center {
    flex: 1;
    overflow: hidden;
    margin: 0 20px;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-text {
    display: inline-block;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

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

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Right Section - Social */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
    transition: all 0.2s;
}

.top-bar-social:hover {
    opacity: 1;
    color: #667eea;
    transform: translateY(-1px);
}

/* ===== TOP BAR RESPONSIVE ===== */
@media (max-width: 1024px) {
    .top-bar-container {
        padding: 8px 20px;
    }
    
    .top-bar-center {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
    }
    
    .top-bar-container {
        padding: 6px 15px;
        gap: 10px;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    .top-bar-link span {
        display: none;
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .top-bar-center {
        margin: 0 10px;
    }
    
    .top-bar-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 6px 12px;
    }
    
    .top-bar-left {
        gap: 8px;
    }
    
    /* Show only phone and whatsapp icons */
    .top-bar-link {
        padding: 4px;
    }
    
    .top-bar-center {
        margin: 0 8px;
        font-size: 11px;
    }
    
    .top-bar-right {
        gap: 8px;
    }
    
    .top-bar-social svg {
        width: 12px;
        height: 12px;
    }
}

/* ===== UTILITIES ===== */

/* ===== UTILITIES ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    border-color: #667eea;
    color: #667eea;
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

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

/* ===== HEADER ===== */
.header {
    padding: 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Logo Image - Rotating Animation */
.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    animation: logoSpin 8s linear infinite;
    transition: transform 0.3s ease;
}

/* Pause rotation on hover */
.logo:hover .logo-img {
    animation-play-state: paused;
    transform: scale(1.05);
}

/* Logo rotation keyframes */
@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 35px;  /* nice spacing between links */
    flex: 1;
    justify-content: center;
}

.main-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.main-nav .nav-link:hover {
    color: #667eea;
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #667eea;  /* Match the seller portal button color */
    padding: 10px 20px;
    border: 1px solid #667eea;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.nav-dropdown .nav-link:hover {
    background: #667eea;
    color: #fff;
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #f8f9ff;
    color: #667eea;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: #f5f5f7;
    border-radius: 100px;
    overflow: hidden;
}

.header-search input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.header-search button {
    padding: 12px 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
}

.header-search button:hover {
    color: #667eea;
}

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

.cart-btn {
    position: relative;
    padding: 8px;
    color: #333;
    transition: color 0.2s;
    background: transparent;  /* ADD THIS */
    border: none;             /* ADD THIS */
    cursor: pointer;   
}

.cart-btn:hover {
    color: #667eea;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #667eea;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-login-btn {
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    padding: 10px 20px;
    border: 1px solid #667eea;
    border-radius: 100px;
    transition: all 0.2s;
}

.header-login-btn:hover {
    background: #667eea;
    color: #fff;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
}

.account-btn:hover {
    color: #667eea;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

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

.dropdown-header {
    padding: 15px 20px;
    background: #f8f9ff;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f8f9ff;
    color: #667eea;
}

.dropdown-logout {
    border-top: 1px solid #eee;
    color: #e74c3c;
}

.dropdown-logout:hover {
    background: #fff5f5;
    color: #c0392b;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: calc(100vh - 200px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1626224583764-f87db24ac4ea?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.carousel-slide.active .slide-bg {
    transform: scale(1.08);
}

/* Slide Overlays */
.slide-overlay {
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

.slide-overlay-blue {
    
}

.slide-overlay-green {
    background: linear-gradient(135deg, rgba(11, 79, 63, 0.85) 0%, rgba(217, 164, 65, 0.85) 100%);
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

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

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.slide-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0B4F3F, #D9A441);
    transition: width 0.1s linear;
}

.hero-carousel.paused .carousel-progress-bar {
    animation-play-state: paused;
}

/* ===== CAROUSEL RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-carousel {
        height: 75vh;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .carousel-arrow {
        width: 48px;
        height: 48px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .slide-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 65vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dots {
        bottom: 25px;
        gap: 10px;
    }
}

/* ===== SECTION HEADER ===== */


/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.category-card .category-image {
    position: absolute;
    inset: 0;
    height: 100%;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(11, 79, 63, 0.9) 0%, rgba(46, 196, 168, 0.6) 50%, transparent 100%);
}

.category-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.category-cta {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s;
}

.category-card:hover .category-cta {
    transform: translateX(0);
    opacity: 1;
}

/* ===== FEATURED SECTION ===== */
.featured {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    background: #f8f9ff;
}

.featured-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== FEATURED SELLERS SECTION ===== */
.featured-sellers {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    background: #fff;
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.seller-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8f9ff;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.seller-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.avatar-letter {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.seller-info {
    flex: 1;
}

.seller-store-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.seller-owner {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.seller-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.seller-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
}

.seller-stat svg {
    color: #667eea;
}

.seller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
}

/* Featured Sellers Responsive */
@media (max-width: 1024px) {
    .sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-sellers {
        padding: 60px 20px 80px;
    }
    
    .sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .seller-card {
        padding: 25px 20px;
    }
    
    .seller-avatar {
        width: 65px;
        height: 65px;
    }
    
    .avatar-letter {
        font-size: 26px;
    }
    
    .seller-store-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sellers-grid {
        grid-template-columns: 1fr;
    }
    
    .seller-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }
    
    .seller-avatar {
        width: 55px;
        height: 55px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .avatar-letter {
        font-size: 22px;
    }
    
    .seller-info {
        text-align: left;
    }
    
    .seller-stats {
        justify-content: flex-start;
    }
    
    .seller-badge {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

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

.product-card-link {
    display: block;
}

.product-card .product-image {
    position: relative;
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-image img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.product-card .product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-info > a:hover .product-name {
    color: #667eea;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-card .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.btn-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f0f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.btn-cart:hover {
    background: #667eea;
    color: #fff;
}

.product-seller {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-seller:hover {
    color: #667eea;
}

.store-icon {
    font-size: 14px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    border-top: 1px solid #eee;
}

.badge-item {
    text-align: center;
    padding: 20px;
}

.badge-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.badge-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.badge-item p {
    font-size: 13px;
    color: #888;
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.filters {
    padding: 20px;
    border: 1px solid #eee;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    margin-right: 8px;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.price-input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.filters .btn {
    width: 100%;
    margin-bottom: 10px;
}

.products-section {
    flex: 1;
}

.products-header {
    margin-bottom: 30px;
}

.products-header-top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.products-title-section {
    flex: 1;
}

.products-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.products-header p {
    color: #666;
}

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

.products-sort label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.products-sort select {
    padding: 10px 35px 10px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.products-sort select:hover {
    border-color: #667eea;
}

.products-sort select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Products header responsive */
@media (max-width: 768px) {
    .products-header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .products-title-section {
        order: -1;
    }
    
    .products-sort {
        justify-content: space-between;
    }
    
    .products-sort select {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .products-sort label {
        display: none;
    }
    
    .products-sort select {
        width: 100%;
    }
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products p {
    margin-bottom: 20px;
    color: #666;
}

/* ===== PAGINATION ===== */
.pagination {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-page:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.pagination-page.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .pagination-controls {
        gap: 4px;
    }
    
    .pagination-btn,
    .pagination-page {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0 8px;
        font-size: 13px;
    }
    
    .pagination-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .pagination-info {
        font-size: 13px;
        text-align: center;
    }
    
    .pagination-btn,
    .pagination-page {
        width: 32px;
        height: 32px;
        min-width: 32px;
        padding: 0 6px;
        font-size: 12px;
        border-radius: 6px;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

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

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    cursor: pointer;
    padding: 5px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #333;
}

.product-info-detail .breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.product-info-detail .breadcrumb a:hover {
    text-decoration: underline;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info-detail .brand {
    color: #666;
    margin-bottom: 10px;
}

.product-info-detail .seller-info {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-info-detail .seller-link {
    color: #667eea;
    font-weight: 500;
    transition: color 0.2s;
}

.product-info-detail .seller-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.product-info-detail .price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stock-status {
    margin-bottom: 20px;
}

.in-stock {
    color: #2e7d32;
}

.out-of-stock {
    color: #c62828;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-size: 16px;
}

.add-to-cart-detail {
    width: 100%;
    margin-bottom: 30px;
}

.product-description,
.product-specifications {
    margin-bottom: 30px;
}

.product-description h3,
.product-specifications h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.product-specifications td:first-child {
    font-weight: 500;
    width: 120px;
}

.related-products {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.related-products h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-page h1 {
    margin-bottom: 30px;
    font-size: 28px;
}

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

.cart-section,
.checkout-form-section {
    padding: 25px;
    border: 1px solid #eee;
}

.cart-section h2,
.checkout-form-section h2 {
    margin-bottom: 20px;
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
    font-size: 14px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.cart-item-remove {
    color: #c62828;
    cursor: pointer;
    font-size: 14px;
}

.cart-item-remove:hover {
    text-decoration: underline;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

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

.payment-methods {
    margin-bottom: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.payment-option input:checked + span {
    font-weight: 500;
}

.order-summary {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.order-summary h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

#place-order-btn {
    width: 100%;
}

/* ===== ORDER CONFIRMATION ===== */
.order-confirmation {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
}

.confirmation-box {
    text-align: center;
    padding: 40px;
    border: 1px solid #eee;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 40px;
    line-height: 80px;
    margin: 0 auto 20px;
}

.confirmation-box h1 {
    margin-bottom: 10px;
}

.confirmation-box > p {
    color: #666;
    margin-bottom: 30px;
}

.order-details {
    text-align: left;
    padding: 20px;
    background: #f9f9f9;
    margin-bottom: 30px;
}

.order-details h3 {
    margin-bottom: 5px;
}

.order-details > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.order-items,
.shipping-info {
    margin-bottom: 20px;
}

.order-items h4,
.shipping-info h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.order-total {
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 18px;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border: 1px solid #eee;
}

.auth-box h1 {
    text-align: center;
    margin-bottom: 30px;
}

.auth-box .btn {
    width: 100%;
    margin-top: 10px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-link a {
    color: #333;
    text-decoration: underline;
}

.alert {
    padding: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

/* ===== FOOTER ===== */
.footer {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: #666;
    font-size: 14px;
}

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

.footer-section ul li a {
    color: #666;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-detail {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .products-page {
        grid-template-columns: 1fr;
    }
    
    .filters {
        position: static;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== STORE PAGE - REDESIGNED ===== */
.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Store Hero Section */
.store-hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.store-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.store-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.store-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.store-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.store-avatar-large span {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.store-hero-info {
    flex: 1;
    color: #fff;
}

.store-featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 12px;
}

.store-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.store-owner {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.store-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.store-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    opacity: 0.95;
}

.store-hero-stat svg {
    opacity: 0.8;
}

.store-hero-stat strong {
    font-weight: 600;
}

/* Category Tabs Navigation */
.store-categories-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 50;
}

.category-tabs {
    display: flex;
    gap: 5px;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.category-tab:hover {
    color: #333;
    background: #f8f9ff;
}

.category-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #f8f9ff;
}

.tab-icon {
    font-size: 18px;
}

.tab-count {
    background: #eee;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
}

.category-tab.active .tab-count {
    background: #667eea;
    color: #fff;
}

/* Store Products Section */
.store-products {
    padding: 40px 0 60px;
    background: #f8f9ff;
    min-height: 400px;
}

.store-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.store-results-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.store-results-info p {
    color: #666;
    font-size: 14px;
}

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

.store-sort label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.store-sort select {
    padding: 10px 35px 10px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.store-sort select:hover {
    border-color: #667eea;
}

.store-sort select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Store Empty State */
.store-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
}

.store-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.store-empty h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.store-empty p {
    color: #666;
    margin-bottom: 25px;
}

/* Store Info Section */
.store-info-section {
    padding: 60px 0;
    background: #fff;
}

.store-info-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9ff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
}

.store-info-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.store-info-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.store-info-body {
    padding: 25px;
}

.store-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.store-info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-size: 14px;
}

.info-value {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.info-value a {
    color: #667eea;
}

.info-value a:hover {
    text-decoration: underline;
}

.store-info-actions {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
}

.store-info-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Store Page Responsive */
@media (max-width: 768px) {
    .store-hero {
        padding: 40px 0;
    }
    
    .store-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .store-avatar-large {
        width: 100px;
        height: 100px;
    }
    
    .store-avatar-large span {
        font-size: 40px;
    }
    
    .store-hero h1 {
        font-size: 28px;
    }
    
    .store-owner {
        font-size: 16px;
    }
    
    .store-hero-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .store-hero-stat {
        font-size: 13px;
    }
    
    .store-categories-nav {
        top: 60px;
    }
    
    .category-tab {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .tab-icon {
        font-size: 16px;
    }
    
    .store-products {
        padding: 30px 0 50px;
    }
    
    .store-products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .store-sort {
        width: 100%;
    }
    
    .store-sort select {
        flex: 1;
        min-width: 0;
    }
    
    .store-info-section {
        padding: 40px 0;
    }
    
    .store-info-actions {
        flex-direction: column;
    }
    
    .store-info-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .store-hero {
        padding: 30px 0;
    }
    
    .store-avatar-large {
        width: 80px;
        height: 80px;
    }
    
    .store-avatar-large span {
        font-size: 32px;
    }
    
    .store-hero h1 {
        font-size: 24px;
    }
    
    .store-hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-tab {
        padding: 12px 14px;
    }
    
    .tab-label {
        display: none;
    }
    
    .category-tab:first-child .tab-label {
        display: inline;
    }
    
    .store-sort label {
        display: none;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-search {
        max-width: 200px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .categories,
    .featured {
        padding: 60px 20px;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .header-search {
        max-width: 500px;
    }
    
    .hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.search-btn {
    display: flex;
    align-items: center;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #667eea;
}

.header-search-expandable {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f7;
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
    flex-shrink: 0;
}

.search-toggle-btn:hover {
    color: #667eea;
}

.header-search-expandable .search-input {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.header-search-expandable.active .search-input {
    width: 250px;
    padding: 10px 15px 10px 5px;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        order: -1; /* Place at start */
    }
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

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

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

.mobile-nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav-links {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: #f8f9ff;
    color: #667eea;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.mobile-user-info {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    padding: 0 5px;
}

.mobile-nav-footer .mobile-nav-link {
    border-bottom: none;
    padding: 12px 5px;
}

.mobile-logout {
    color: #e74c3c;
}

.mobile-logout:hover {
    color: #c0392b;
    background: #fff5f5;
}

.mobile-seller-btn {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    border-radius: 100px;
    padding: 12px 25px !important;
    margin-top: 10px;
}

.mobile-seller-btn:hover {
    opacity: 0.9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== RESPONSIVE HEADER IMPROVEMENTS ===== */
/* @media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
        margin-right: 10px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-container {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .logo {
        flex: 1;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-login-btn {
        display: none;
    }
    
    .header-search-expandable.active .search-input {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        font-size: 24px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .cart-btn,
    .account-btn,
    .search-toggle-btn {
        padding: 6px;
    }
    
    .header-search-expandable.active .search-input {
        width: 120px;
        padding: 8px 10px 8px 5px;
    }
    
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
} */
 @media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
        margin-right: 10px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-container {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .logo {
        flex: 1;
        gap: 8px;
    }
    
    /* Responsive logo size for tablets */
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-login-btn {
        display: none;
    }
    
    .header-search-expandable.active .search-input {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .logo {
        gap: 6px;
    }
    
    /* Responsive logo size for mobile */
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .cart-btn,
    .account-btn,
    .search-toggle-btn {
        padding: 6px;
    }
    
    .header-search-expandable.active .search-input {
        width: 120px;
        padding: 8px 10px 8px 5px;
    }
    
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

/* Ensure desktop nav shows on larger screens */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-nav,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .main-nav {
        display: flex !important;
    }
}
/* ===== CART DRAWER STYLES ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-drawer.active {
    right: 0;
}

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

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.cart-drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-drawer-close:hover {
    color: #333;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-drawer-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 25px;
    text-align: center;
    flex: 1;
}

.cart-drawer-empty.show {
    display: flex;
}

.empty-cart-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.cart-drawer-empty p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.cart-drawer-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    flex-shrink: 0;
}

.cart-drawer-footer.hidden {
    display: none;
}

.cart-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.cart-drawer-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.cart-continue-btn {
    width: 100%;
    text-align: center;
}

/* Cart Drawer Item Styles */
.cart-drawer-item {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-drawer-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-drawer-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-drawer-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-drawer-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
}

.cart-drawer-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cart-drawer-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.cart-drawer-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-drawer-qty button:hover {
    background: #e8e8e8;
}

.cart-drawer-qty span {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.cart-drawer-remove {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.cart-drawer-remove:hover {
    color: #e74c3c;
}

/* Body scroll lock when cart is open */
body.cart-open {
    overflow: hidden;
}

/* Cart drawer responsive */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100vw;
        right: -100vw;
    }
    
    .cart-drawer-item {
        padding: 15px 20px;
    }
    
    .cart-drawer-header,
    .cart-drawer-footer {
        padding: 15px 20px;
    }
    
    .cart-drawer-item-image {
        width: 70px;
        height: 70px;
    }
}
/* ===== FILTERS DRAWER STYLES ===== */
#filter-toggle-btn {
    display: none; /* Hidden on desktop */
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

.filters-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.filters-header {
    display: none; /* Hidden on desktop */
}

/* Responsive styles for filters */
@media (max-width: 768px) {
    .products-page {
        grid-template-columns: 1fr;
    }

    #filter-toggle-btn {
        display: flex;
    }

    .filters {
        position: fixed;
        top: 0;
        left: -320px; /* Start off-screen */
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        background: #fff;
        z-index: 997;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 0; /* Remove padding for drawer view */
    }

    .filters.active {
        left: 0; /* Slide in */
    }

    .filters-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
    }
    
    .filters-header h3 {
        margin: 0;
        font-size: 18px;
    }

    .filters-close-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        color: #666;
        padding: 4px;
        display: flex;
    }

    #filter-form {
        padding: 25px;
        overflow-y: auto;
        flex-grow: 1;
    }
    
    /* Hide original h3 as it's now in the header */
    .filters > h3 {
        display: none;
    }
}

/* ===== ALL STORES PAGE ===== */
.stores-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.stores-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.stores-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stores-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

/* Filters */
.stores-filters {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.stores-filter-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.search-filter {
    flex: 1;
    min-width: 250px;
}

.search-filter label,
.sort-filter label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.search-input-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input-wrapper input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    outline: none;
}

.search-submit-btn {
    padding: 0 15px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.search-submit-btn:hover {
    background: #667eea;
    color: #fff;
}

.sort-filter select {
    padding: 12px 35px 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
    min-width: 160px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sort-filter select:hover {
    border-color: #667eea;
}

.sort-filter select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.clear-filters-btn {
    padding: 12px 20px;
    font-size: 14px;
    color: #c62828;
    border: 1px solid #ffcdd2;
    background: #ffebee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-filters-btn:hover {
    background: #ffcdd2;
}

/* Results Info */
.stores-results-info {
    margin-bottom: 25px;
}

.stores-results-info p {
    color: #666;
    font-size: 15px;
}

/* Stores Grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.store-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    text-align: center;
}

.store-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.store-card .store-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255,255,255,0.3);
}

.store-card .store-avatar span {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.featured-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.store-card-body {
    padding: 20px;
    flex: 1;
}

.store-card .store-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.store-card .store-owner {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.store-card .store-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-card .store-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.store-card .store-stat svg {
    color: #667eea;
}

.store-card .store-stat strong {
    color: #333;
}

.store-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.visit-store-btn {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    transition: color 0.2s;
}

.store-card:hover .visit-store-btn {
    color: #764ba2;
}

/* No Stores */
.no-stores {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
}

.no-stores svg {
    color: #ddd;
    margin-bottom: 20px;
}

.no-stores h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.no-stores p {
    color: #666;
    margin-bottom: 20px;
}

/* Stores Page Responsive */
@media (max-width: 768px) {
    .stores-header {
        padding: 40px 20px;
    }
    
    .stores-header h1 {
        font-size: 28px;
    }
    
    .stores-header p {
        font-size: 16px;
    }
    
    .stores-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter {
        min-width: 100%;
    }
    
    .sort-filter {
        width: 100%;
    }
    
    .sort-filter select {
        width: 100%;
    }
    
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stores-header {
        padding: 30px 15px;
    }
    
    .stores-header h1 {
        font-size: 24px;
    }
    
    .stores-container {
        padding: 20px 15px;
    }
    
    .stores-filters {
        padding: 15px;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRODUCT VIDEO STYLES ===== */
.video-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.video-thumbnail:hover,
.video-thumbnail.active {
    border-color: #333;
}

.video-thumbnail svg {
    color: #fff;
}

.product-video {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 15px;
    background: #000;
    border-radius: 8px;
}

.product-video video {
    width: 100%;
    max-height: 400px;
    display: block;
    border-radius: 4px;
}