/* ===== CSS VARIABLES ===== */
:root {
    --red: #e63946;
    --red-dark: #c1121f;
    --red-light: #ff6b6b;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #f0f0f0;
    --gray: #6c757d;
    --dark: #111111;
    --gradient: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    --gradient-light: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
    --shadow-red: 0 4px 20px rgba(230, 57, 70, 0.25);
    --shadow-red-hover: 0 8px 35px rgba(230, 57, 70, 0.45);
}

/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Mulish', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}


main {
    margin-top: 66px;
}

@media (max-width: 991px) {
    main {
        padding-top: 0px;
    }
}

/* ===== NAVBAR ===== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #ffffff;
    height: 66px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 32px;
}

.navbar-brand img {
    height: 48px;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

/* Nav links */
.nav-menu {
    flex: 1;
    display: flex !important;
    justify-content: center;
    position: static;
    padding: 0;
    box-shadow: none;
    background: none;
}

.burger-btn {
    display: none;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links .nav-link {
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links .nav-link:hover {
    color: var(--red);
    background: rgba(230, 57, 70, 0.06);
}

.nav-links .nav-link.active {
    color: var(--red);
    background: rgba(230, 57, 70, 0.08);
}

/* O'ng tomon */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(230, 57, 70, 0.06);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--red);
}

.nav-logout {
    font-size: 0.82rem;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-logout:hover {
    color: var(--red);
    background: rgba(230, 57, 70, 0.06);
}

.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-login-btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-red-hover);
}

.nav-cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #555;
    transition: all 0.25s;
}

.nav-cart-btn:hover {
    background: rgba(230, 57, 70, 0.08);
    color: var(--red);
}

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

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile */
@media (max-width: 991px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
        visibility: hidden;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 20px 24px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        justify-content: flex-start;
        z-index: 1029;
    }

    .nav-menu.open {
        display: flex;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 4px;
    }

    .nav-links .nav-link {
        width: 100%;
        padding: 10px 14px;
    }

    .nav-right {
        margin-left: auto;
    }

    .user-pill span {
        display: none;
    }
}
/* ===== FOOTER ===== */
.main-footer {
    background: #111;
    color: #aaa;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-title {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient);
}

.footer-desc {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #aaa;
    font-size: 1rem;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

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

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

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-links a:hover::before {
    transform: scale(1.5);
}

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

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
}

.footer-contacts i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    color: #555;
    font-size: 0.82rem;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1;
}

.section-title span { color: var(--red); }

/* ===== BUTTONS ===== */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    cursor: pointer;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red-hover);
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}


/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    width: 100%;
    position: relative;
    z-index: -1px;
}

.hero-swiper {
    width: 100%;
    height: 480px;
    margin-top: 0;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-default {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #1a1a1a 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-title span {
    color: var(--red);
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .hero-desc {
        font-size: 0.78rem;
    }
}

/* Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    background: rgba(230, 57, 70, 0.8);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--red);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: 700;
}

/* Swiper dots */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: var(--red) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-swiper { height: 280px; }
    .hero-title { font-size: 3rem; }
    .hero-desc { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero-swiper { height: 220px; }
    .hero-title { font-size: 2.5rem; }
}

/* ===== KONKURS BO'LIMI ===== */
.contest-section {
    background: #f8f8f8;
}

.contest-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contest-timer {
    color: #555;
    font-size: 1rem;
}

/* Konkurs info card */
.contest-info-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
}

.contest-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contest-prizes {
    padding: 20px;
}

.contest-prizes h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--dark);
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.prize-1 { background: rgba(255, 215, 0, 0.1); border-left: 3px solid gold; }
.prize-2 { background: rgba(192, 192, 192, 0.1); border-left: 3px solid silver; }
.prize-3 { background: rgba(205, 127, 50, 0.1); border-left: 3px solid #cd7f32; }

.prize-rank { font-size: 1.3rem; }

/* Leaderboard */
.leaderboard-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--gradient);
    color: white;
}

.leaderboard-header h5 {
    font-family: sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 0;
    color: white;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.leaderboard-list {
    padding: 16px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #f8f8f8;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease;
}

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

.leaderboard-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.leaderboard-item.rank-1 {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.3);
}

.leaderboard-item.rank-2 {
    background: linear-gradient(135deg, rgba(192,192,192,0.15), rgba(192,192,192,0.05));
    border: 1px solid rgba(192,192,192,0.3);
}

.leaderboard-item.rank-3 {
    background: linear-gradient(135deg, rgba(205,127,50,0.15), rgba(205,127,50,0.05));
    border: 1px solid rgba(205,127,50,0.3);
}

.rank-number {
    font-size: 1.2rem;
    font-weight: 800;
    min-width: 36px;
    text-align: center;
    color: var(--dark);
}

.customer-name {
    flex: 1;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.customer-sum {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--red);
}


/* ===== SECTION HEADER ===== */
.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--red);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== MAHSULOTLAR ===== */
.products-section {
    background: var(--white);
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-view-btn {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border: 2px solid white;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-family:  'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 6px 0 12px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    overflow: hidden;
    max-height: 2.8em;
}

.product-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

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

.product-price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
}

.product-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-red);
}

.product-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-red-hover);
}

/* Responsive */
@media (max-width: 576px) {
    .product-img-wrap { height: 180px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* ===== COMING SOON ===== */
.coming-soon-section {
    background: #f8f8f8;
}

.coming-swiper {
    padding-bottom: 50px !important;
}

.coming-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.coming-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.coming-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--light);
}

.coming-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: blur(2px) brightness(0.85);
}

.coming-card:hover .coming-img {
    transform: scale(1.05);
    filter: blur(0px) brightness(1);
}

.coming-badge-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge {
    background: var(--gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.coming-info {
    padding: 16px;
}

.coming-name {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.coming-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Coming swiper arrows */
.coming-prev,
.coming-next {
    color: var(--red) !important;
    background: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: all 0.3s !important;
}

.coming-prev:hover,
.coming-next:hover {
    background: var(--gradient) !important;
    color: white !important;
}

.coming-prev::after,
.coming-next::after {
    font-size: 14px !important;
    font-weight: 700 !important;
}

.coming-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.coming-swiper .swiper-slide {
    flex-shrink: 0;
}

/* ===== ABOUT US ===== */
.about-section {
    background: white;
}

.about-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.about-img-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
    max-height: 400px;
}

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

.about-card:hover .about-img {
    transform: scale(1.03);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230,57,70,0.15) 0%, rgba(0,0,0,0.1) 100%);
}

.about-content {
    padding: 50px 48px;
}

.about-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.78rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-img-wrap { height: 300px; }
    .about-content { padding: 32px 28px; }
    .about-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }
}


/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 100%);
    padding: 20px 0;
    margin-bottom: 0;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.page-title span {
    color: var(--red);
}

.page-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.search-wrap {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.search-input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid #eee;
    background: white;
    font-family: 'Mulish', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-red);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-nav span {
    color: var(--red);
    font-weight: 700;
}

.breadcrumb-nav i {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

/* ===== PRODUCT DETAIL ===== */
.gallery-wrap {
    position: sticky;
    top: 100px;
}

.main-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: var(--light);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-img:hover {
    transform: scale(1.03);
}

.product-no-img.large {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 4rem;
    background: var(--light);
    border-radius: 16px;
}

.thumbnails-wrap {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

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

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(230,57,70,0.2);
}

/* Product info */
.product-detail-name {
    font-family: 'Mulish', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.product-detail-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--red);
    letter-spacing: 1px;
}

.product-detail-price span {
    font-size: 1.5rem;
    color: #999;
}

.product-detail-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Miqdor */
.quantity-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    display: block;
    margin-bottom: 10px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    width: 42px;
    height: 42px;
    background: var(--light);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.qty-btn:hover {
    background: var(--red);
    color: white;
}

.qty-value {
    min-width: 50px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
}

.add-to-cart-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
}

/* Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #555;
    font-weight: 600;
}

.feature-item i {
    color: var(--red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-wrap { position: static; }
    .main-img-wrap { height: 320px; }
    .product-detail-name { font-size: 1.5rem; }
}


/* ===== AUTH ===== */
.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff0f0 100%);
    padding: 50px 0;
}

.auth-wrap {
    display: flex;
    justify-content: center;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-logo {
    margin-bottom: 24px;
}

.auth-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.auth-error {
    background: rgba(230,57,70,0.08);
    color: var(--red);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.auth-field {
    text-align: left;
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    color: var(--dark);
}

.auth-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

/* Telefon input */
.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.phone-input-wrap:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.phone-prefix {
    padding: 14px 12px 14px 16px;
    background: var(--light);
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    border-right: 1.5px solid #eee;
    white-space: nowrap;
}

.phone-input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-red);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-hover);
}

.resend-link,
.back-link {
    color: #999;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.resend-link:hover,
.back-link:hover {
    color: var(--red);
}

@media (max-width: 576px) {
    .auth-card { padding: 32px 24px; }
}

/* ===== CART ===== */
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light);
}

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

.cart-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.5rem;
}

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

.cart-item-name {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 600;
}

.cart-item-total {
    font-weight: 800;
    color: var(--red);
    font-size: 0.95rem;
    white-space: nowrap;
}

.cart-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(230,57,70,0.08);
    color: var(--red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cart-remove-btn:hover {
    background: var(--red);
    color: white;
}

/* Cart summary */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
    padding-top: 16px;
}

.summary-row.total span:last-child {
    color: var(--red);
}

.continue-shopping {
    color: #999;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: var(--red);
}

/* Empty cart */
.empty-cart-icon {
    font-size: 5rem;
    color: #ddd;
}

/* Checkout */
.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.checkout-card-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customer-info-row {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.ci-label {
    font-weight: 700;
    color: #999;
    font-size: 0.88rem;
    width: 80px;
    flex-shrink: 0;
}

.ci-value {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.88rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.checkout-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light);
}

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

.checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-item-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
}

.checkout-item-qty {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.checkout-item-price {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--red);
    white-space: nowrap;
}

/* Order success */
.success-icon {
    font-size: 5rem;
    color: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-item { flex-wrap: wrap; }
    .cart-item-qty { order: 3; }
    .cart-item-total { order: 4; }
}


/* ===== PRODUCT CARD YANGI ===== */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-name-link {
    text-decoration: none;
    letter-spacing: -0.3px;
    color: inherit;
    transition: color 0.3s;
}

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

.product-price-row {
    margin: 8px 0 12px;
}

.add-to-cart-card-btn {
    width: 100%;
    padding: 10px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-hover);
}

.add-to-cart-card-btn.added {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

/* Product swiper */
.product-swiper {
    width: 100%;
    height: 100%;
}

.product-swiper .swiper-slide {
    width: 100%;
    height: 220px;
}

.product-pagination {
    bottom: 6px !important;
}

.product-pagination .swiper-pagination-bullet {
    width: 5px !important;
    height: 5px !important;
    background: white !important;
    opacity: 0.7 !important;
}

.product-pagination .swiper-pagination-bullet-active {
    background: var(--red) !important;
    opacity: 1 !important;
}

/* ===== CART ICON BTN ===== */
.cart-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    color: var(--dark);
    transition: color 0.3s;
}

.cart-icon-btn:hover {
    color: var(--red);
}

/* ===== MINI CART ===== */
.cart-dropdown-wrap {
    position: relative;
}

.mini-cart {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 360px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    flex-direction: column;
    max-height: 500px;
}

.mini-cart.open {
    display: flex;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mini-cart-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--dark);
}

.mini-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 1rem;
    transition: color 0.3s;
}

.mini-cart-close:hover {
    color: var(--red);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-cart-empty {
    text-align: center;
    padding: 30px;
    color: #ccc;
}

.mini-cart-empty i {
    font-size: 3rem;
}

.mini-cart-empty p {
    margin-top: 8px;
    font-size: 0.9rem;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 12px;
}

.mini-cart-item-img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
}

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

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

.mini-cart-item-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    display: -webkit-box;
    overflow: hidden;
}

.mini-cart-item-price {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 700;
    margin-top: 2px;
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: white;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
    color: var(--dark);
}

.mini-qty-btn:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.mini-qty-value {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.mini-cart-item-remove:hover {
    color: var(--red);
}

.mini-cart-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 576px) {
    .mini-cart {
        width: 300px;
        right: -10px;
    }
}


/* Mobile menu */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mobile-menu.open {
    display: block;
}

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

.mobile-nav-link {
    display: block;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--red);
    background: rgba(230,57,70,0.04);
    border-left-color: var(--red);
}

@media (max-width: 991px) {
    .nav-menu {
        display: none !important;
    }

    .burger-btn {
        display: flex;
    }
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none;
        visibility: hidden;
    }

    .burger-btn {
        display: none;
    }
    .nav-menu {
        display: flex;
        visibility: visible;
        height: auto;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem !important;
    }

    .hero-desc {
        font-size: 0.75rem !important;
    }
}


/* ===== COUNTDOWN ===== */
.contest-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
    backdrop-filter: blur(10px);
    transition: transform 0.1s;
}

.countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.countdown-label {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 4px;
}

.countdown-item {
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
}

.countdown-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 58px;
        padding: 10px 12px;
    }

    .countdown-num {
        font-size: 1.8rem;
    }
}


/* ===== PRIZES ===== */
.prizes-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.prizes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.prizes-header i {
    color: #f59e0b;
    font-size: 1.4rem;
}

.prize-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.prize-item:hover {
    transform: translateX(4px);
}

.prize-item:last-child {
    margin-bottom: 0;
}

.prize-gold {
    background: linear-gradient(135deg, #fef9e7, #fef3c7);
    border: 1px solid #fde68a;
}

.prize-silver {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
}

.prize-bronze {
    background: linear-gradient(135deg, #fef6f0, #fde8d8);
    border: 1px solid #fed7aa;
}

.prize-rank {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prize-medal {
    font-size: 1.8rem;
    line-height: 1;
}

.prize-place {
    font-family: 'Noto Serif JP', serif;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: #555;
}

.prize-gold .prize-place { color: #92400e; }
.prize-silver .prize-place { color: #475569; }
.prize-bronze .prize-place { color: #9a3412; }

.prize-amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1;
}

.prize-gold .prize-amount { color: #d97706; }
.prize-silver .prize-amount { color: #64748b; }
.prize-bronze .prize-amount { color: #c2410c; }



@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 10px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* Product card mobile css */
@media (max-width: 768px) {
    .product-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 480px) {
    .product-name {
        font-size: 0.78rem;
        margin: 4px 0 8px;
    }

    .product-category {
        font-size: 0.65rem;
    }

    .product-price {
        font-size: 0.82rem;
    }

    .product-price-label {
        font-size: 0.65rem;
    }

    .add-to-cart-card-btn {
        font-size: 0.75rem;
        padding: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-img-wrap {
        height: 150px;
    }

    .product-swiper .swiper-slide {
        height: 150px;
    }
}

@media (max-width: 480px) {
    #productsGrid,
    .row.g-4 {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 8px;
    }

    .product-info {
        padding: 8px;
    }

    .product-category {
        font-size: 0.62rem;
        margin-bottom: 2px;
        display: block;
    }

    .product-name {
        font-size: 0.75rem;
        margin: 3px 0 6px;
        line-height: 1.3;
    }

    .product-price-label {
        font-size: 0.62rem;
        margin-bottom: 0px;
    }

    .product-price {
        font-size: 0.78rem;
    }

    .product-price-row {
        margin-bottom: 8px;
        margin-top: 4px;
        line-height: 1.2;
    }

    .add-to-cart-card-btn {
        font-size: 0.72rem;
        padding: 7px;
    }
}


@media (max-width: 480px) {
    .prizes-header {
        font-size: 1rem;
    }

    .prize-medal {
        font-size: 1.3rem;
    }

    .prize-place {
        font-size: 0.75rem;
    }

    .prize-amount {
        font-size: 1rem;
    }

    .prize-item {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .leaderboard-header h5 {
        font-size: 0.9rem;
    }
}


/* Miqdor + Savat bitta qatorda */
.qty-and-cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tavsif */
.product-description {
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.desc-title {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .qty-and-cart {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .add-to-cart-btn {
        padding: 12px 18px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .product-detail-name {
        font-size: 1.2rem;
        letter-spacing: -0.3px;
    }

    .product-detail-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .product-detail-name {
        font-size: 1rem;
        letter-spacing: -0.3px;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-detail-info {
        padding: 0 16px;
    }

    .product-detail-desc {
        font-size: 0.85rem;
    }

    .desc-title {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .product-detail-info {
        padding: 0 12px;
    }

    .product-detail-desc {
        font-size: 0.4rem;
    }
}



@media (max-width: 480px) {
   .product-description  p {
        font-size: 14px;
   } 
}


/* ===== BRENDLAR ===== */
.brands-section {
    background: white;
    padding: 60px 0;
    overflow: hidden;
}

.brands-section .section-title {
    color: var(--dark);
}

.brands-section .section-badge {
    background: rgba(230,57,70,0.1);
    color: var(--red);
}

.brands-track-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.brands-track-wrap::before,
.brands-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
}

.brands-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.brands-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: brandScroll 20s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(0.7);
    transition: all 0.3s;
    object-fit: contain;
}

.brand-item img:hover {
    filter: brightness(0) invert(0.2);
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }

    .brand-item img {
        height: 32px;
    }

    .brands-track {
        gap: 40px;
    }
}


.brands-track-reverse {
    animation: brandScrollReverse 20s linear infinite;
}

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


@media (max-width: 768px) {
    .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 2px;
    }
}


@media (max-width: 480px) {
   .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 16px;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.82rem;
    }

    .auth-input {
        padding: 11px 12px;
        font-size: 0.9rem;
    }

    .phone-prefix {
        padding: 11px 10px 11px 12px;
        font-size: 0.9rem;
    }

    .auth-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
}


/* ===== CONTACT ===== */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
}

.contact-card-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-desc {
    color: #999;
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

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

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(230,57,70,0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.contact-value:hover {
    color: var(--red);
}

.contact-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-social-btn.telegram {
    background: rgba(37,183,250,0.1);
    color: #25b7fa;
}

.contact-social-btn.telegram:hover {
    background: #25b7fa;
    color: white;
}

.contact-social-btn.instagram {
    background: rgba(228,64,95,0.1);
    color: #e4405f;
}

.contact-social-btn.instagram:hover {
    background: #e4405f;
    color: white;
}

/* Maps */
.maps-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
}

.map-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
}

.map-tab {
    flex: 1;
    padding: 14px;
    border: none;
    background: white;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.map-tab:hover {
    color: var(--red);
}

.map-tab.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.map-frame {
    height: 450px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    gap: 12px;
    font-size: 3rem;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 768px) {
    .map-frame {
        height: 300px;
    }

    .contact-card {
        padding: 20px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-page-section {
    background: white;
}

.about-page-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.about-team-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    max-height: 500px;
}

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

/* Stats */
.stats-section {
    background: #f8f8f8;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--red);
    letter-spacing: 2px;
    line-height: 1;
}

.stat-card-label {
    display: block;
    font-size: 0.82rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* Team */
.team-section {
    background: white;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.team-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 16px 16px;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
}

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

.team-email {
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.team-info {
    padding: 16px;
    background: #111;
    text-align: center;
}

.team-name {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.team-position {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 480px) {
    .team-img-wrap { height: 180px; }
    .stat-card-number { font-size: 2.2rem; }
    .stat-card { padding: 20px 12px; }
    .team-name { font-size: 0.78rem; }
    .team-position { font-size: 0.7rem; }
}

.product-cart-wrap {
    padding: 0 12px 12px;
    margin-top: -4px;
}

.product-cart-wrap .add-to-cart-card-btn {
    width: 100%;
}

.qty-input {
    width: 60px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    border: none;
    outline: none;
    background: transparent;
    /* -moz-appearance: textfield; */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== SIMILAR PRODUCTS ===== */
.similar-section {
    background: #f8f8f8;
}

@media (max-width: 480px) {
    .similar-section .product-img-wrap {
        height: 150px;
    }
}


@media (max-width: 480px) {
    .cart-item-name {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
}

