/* ── Hero Banner ─────────────────────────────────────────── */
.wrap-slider {
    position: relative;
    overflow: hidden;
}
.wrap-slider img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}
.banner-content {
    max-width: 520px;
}
.banner-content .banner-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    display: block;
}
.banner-content .banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
}
.banner-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.banner-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease;
}
.banner-cta-primary:hover { background: #c02020; color: #fff; }
.banner-cta-secondary {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}
.banner-cta-secondary:hover { opacity: 0.75; color: #fff; }

@media (max-width: 767px) {
    .wrap-slider img { height: 400px; object-fit: cover; }
    .banner-overlay { padding: 0 24px; }
    .banner-content .banner-title { font-size: 30px; }
}
@media (max-width: 485px) {
    .wrap-slider img { height: 400px; object-fit: cover; }
    .banner-content .banner-title { font-size: 24px; }
    .banner-content .banner-subtitle { font-size: 11px; }
}

/* ── Category Cards ──────────────────────────────────────── */
.category-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    text-decoration: none;
}
.category-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-3px);
}
.category-card .cat-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface);
}
.category-card .cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.category-card:hover .cat-img-wrap img { transform: scale(1.06); }
.category-card .cat-info {
    padding: 12px 14px 14px;
}
.category-card .cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.category-card .cat-name .icon { font-size: 13px; color: var(--primary); flex-shrink: 0; }
.category-card .cat-count { font-size: 11px; color: var(--secondary); }

/* ── Product card badges ─────────────────────────────────── */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
}
.badge-oos {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #555;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
}
.oos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.45);
    z-index: 1;
    pointer-events: none;
}

/* Always-visible wishlist on mobile */
@media (max-width: 767px) {
    .card-product .list-product-btn { opacity: 1 !important; }
}

/* ── Flash Sale countdown strip on product cards ─────────── */
.flash-countdown-strip {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}
.flash-countdown-strip .icon { font-size: 12px; }
.fcs-label { color: var(--secondary); font-weight: 400; }
.fcs-timer { font-variant-numeric: tabular-nums; letter-spacing: 0.5px; }

/* ── Newsletter section ──────────────────────────────────── */
.newsletter-section {
    background: var(--main);
    padding: 64px 0;
}
.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.newsletter-text { flex: 1 1 320px; }
.newsletter-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}
.newsletter-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.newsletter-form { flex: 1 1 360px; }
.newsletter-field-wrap {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.18);
}
.newsletter-field-wrap input[type="email"] {
    flex: 1;
    padding: 13px 18px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    border: none;
    outline: none;
    color: #fff;
}
.newsletter-field-wrap input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-field-wrap button {
    padding: 13px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.newsletter-field-wrap button:hover { background: #c02020; }
.newsletter-fine {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin: 8px 0 0;
}
@media (max-width: 767px) {
    .newsletter-inner { flex-direction: row; align-items: flex-start; gap: 24px; }
    .newsletter-heading { font-size: 22px; }
    .newsletter-form { width: 100%; }
}
