:root {
    --brand: #2f855a;
    --brand-soft: #e6f4ee;
    --text-main: #1a202c;
    --text-muted: #6b7280;
}

* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: var(--text-main);
}

/* HEADER */
.main-header {
    border-bottom: 1px solid #edf2f7;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 22px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    display: inline-block;
    margin-left: 4px;
}

.header-icon {
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 999px;
    transition: 0.15s;
}

.header-icon:hover {
    background: #f3f4f6;
}

/* HERO */
.hero {
    padding: 40px 0 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-soft);
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 10px;
}

.hero-text {
    color: var(--text-muted);
    max-width: 480px;
}

/* SECTION TITLE */
.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* PRODUCT CARD */
.product-card {
    border-radius: 18px;
    border: 1px solid #edf2f7;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.2s ease;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
}

.product-img-wrap {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 10px 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 240px;
    width: auto;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.product-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
}

.product-old-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}

.btn-uzum, .btn-wb {
    border-radius: 999px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 0;
}

.btn-uzum {
    background: #6d3cff; /* Uzum brand color */
    color: #fff;
}

.btn-uzum:hover {
    background: #5a2fcc; /* darker Uzum brand color */
    color: #fff;
}

.btn-wb {
    background: #a73afd; /* Wildberries brand magenta */
    color: #fff;
}

.btn-wb:hover {
    background: #b10079; /* darker Wildberries brand color */
    color: #fff;
}

.discount-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
}

/* SLIDERS */
.slider-wrapper {
    position: relative;
}

.slider-control {
    position: absolute;
    top: -42px;
    right: 0;
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.15s;
}

.slider-btn:hover {
    background: #f9fafb;
}

.carousel-item {
    padding-bottom: 6px;
}

/* FOOTER */
footer {
    border-top: 1px solid #edf2f7;
    padding: 22px 0 30px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 26px;
    }
    .main-header {
        padding: 10px 0;
    }
}

/* CUSTOM SLIDER */
.custom-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.custom-slide-item {
    flex: 0 0 25%;
}
