* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --red: #a32d2d;
    --red-light: #fcebeb;
    --red-mid: #e24b4a;
    --red-dark: #791f1f;
    --gold: #ba7517;
    --gold-light: #faeeda;
    --gold-mid: #ef9f27;
    --cream: #faf7f2;
    --text: #2c2b28;
    --text2: #5f5e5a;
    --border: #e5ddd0;
    --card: #fff;
}
body,
html {
    font-family: "Vazirmatn", sans-serif;
    background: var(--cream);
    color: var(--text);
    direction: rtl;
}
a {
    text-decoration: none;
    color: inherit;
}

/* NAV */
nav {
    background: #fff;
    border-bottom: 2px solid var(--red);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.3px;
}
.brand-sub {
    font-size: 12px;
    color: var(--text2);
    margin-top: -2px;
}
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links a {
    color: var(--text2);
    transition: color 0.2s;
    font-size: 15px;
}
.nav-links a:hover {
    color: var(--red);
}
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-nav {
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-nav:hover {
    background: var(--red-dark);
}

/* MOBILE NAV */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text);
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }
}

/* NAV SEARCH */
.nav-search-form { display: flex; align-items: center; }
.nav-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    transition: border-color 0.2s;
}
.nav-search-box:focus-within { border-color: var(--red); }
.nav-search-box i { font-size: 15px; color: var(--text2); }
.nav-search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text);
    width: 150px;
    direction: rtl;
}
.nav-search-box input::placeholder { color: var(--text2); }

/* MOBILE SEARCH inside drawer */
.mobile-nav-search {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}
.mobile-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    transition: border-color 0.2s;
}
.mobile-search-box:focus-within { border-color: var(--red); }
.mobile-search-box i { font-size: 15px; color: var(--text2); }
.mobile-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text);
    direction: rtl;
}
.mobile-search-box input::placeholder { color: var(--text2); }
.mobile-search-box button {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.mobile-search-box button:hover { background: var(--red-dark); }

@media (max-width: 768px) {
    .nav-search-form { display: none; }
}


/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #1a0a0a;
}

.hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hero-slide .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(20, 5, 5, 0.85));
    padding: 60px 48px 36px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.hero-overlay p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    margin-top: 16px;
    background: var(--gold-mid);
    color: #2c1a00;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition:
        opacity 0.2s,
        transform 0.2s;
    text-decoration: none;
}

.hero-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Badge */
.hero-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold-mid);
    color: #412402;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

/* Prev / Next buttons */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.hero-prev {
    right: 16px;
}
.hero-next {
    left: 16px;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-mid);
    transform: scale(1.3);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider {
        max-height: 280px;
    }

    .hero-overlay {
        padding: 40px 20px 24px;
    }

    .hero-overlay h1 {
        font-size: 24px;
    }

    .hero-overlay p {
        font-size: 13px;
    }

    .hero-btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .hero-slide .img-placeholder {
        font-size: 80px;
    }
}

/* TRUST BAR */
.trust-bar {
    background: var(--red);
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 14px 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}
.trust-item i {
    font-size: 18px;
    color: var(--gold-mid);
}

/* SECTION */
.section {
    padding: 40px 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.section-title span {
    color: var(--red);
}
.section-subtitle {
    font-size: 13px;
    color: var(--text2);
    margin-top: 4px;
}
.see-all {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.see-all:hover {
    color: var(--red-dark);
}

/* CATEGORIES */
.cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.2s,
        transform 0.2s;
}
.cat-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.cat-count {
    font-size: 11px;
    color: var(--text2);
    margin-top: 3px;
}
@media (max-width: 768px) {
    .cats {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .cats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SLIDER */
.slider-wrap {
    position: relative;
}
.slider-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 12px;
}
.slider-container::-webkit-scrollbar {
    display: none;
}
.prod-card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.2s,
        border-color 0.2s;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.prod-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-mid);
}
.prod-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background-position: center!important;
    background-size: contain!important;
    background-repeat: no-repeat!important;
}
.prod-body {
    padding: 14px 14px 16px;
}
.prod-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.badge-new {
    background: var(--gold-light);
    color: #633806;
}
.badge-sale {
    background: var(--red-light);
    color: var(--red-dark);
}
.badge-best {
    background: #eaf3de;
    color: #27500a;
}
.prod-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
}
.prod-sub {
    font-size: 12px;
    color: var(--text2);
    margin-bottom: 10px;
}
.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.prod-price {
    font-size: 16px;
    font-weight: 700;
    padding: 4px;
    color: #005700;
}
.prod-price-old {
    font-size: 14px;
    color: #670000;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}
.btn-cart {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--red-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: background 0.2s;
    flex-shrink: 0;
}
.btn-cart:hover {
    background: var(--red);
    color: #fff;
}

.btn-cart-no-quantity{
    width: 100%;
    height: 34px;
    border-radius: 8px;
    background: var(--red-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: background 0.2s;
    flex-shrink: 0;
}

.btn-cart-no-quantity:hover{
    background: var(--red);
    color: #fff;
}

.section-nav {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
}
.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition:
        border-color 0.2s,
        color 0.2s;
    font-size: 16px;
}
.slider-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

/* PROMO BANNER */
.promo-wrap {
    padding: 0 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.promo {
    border-radius: 20px;
    background: var(--red-dark);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.promo-text h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.promo-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    max-width: 480px;
}
.promo-badge {
    background: var(--gold-mid);
    color: #2c1a00;
    font-size: 28px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 14px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}
.promo-badge span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}
.btn-promo {
    display: inline-block;
    background: #fff;
    color: var(--red-dark);
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    margin-top: 16px;
    transition: opacity 0.2s;
}
.btn-promo:hover {
    opacity: 0.9;
}

/* ORNAMENT */
.ornament {
    text-align: center;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 8px;
    padding: 8px 0;
    opacity: 0.7;
}

/* FOOTER */
footer {
    background: #1a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 32px 24px;
    margin-top: 20px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-brand {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-desc {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
}
.footer-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    border-right: 3px solid var(--gold-mid);
    padding-right: 10px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--gold-mid);
}
.footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-inner > div:first-child {
        grid-column: 1/3;
    }
}
@media (max-width: 480px) {
    .promo {
        flex-direction: column;
        text-align: center;
    }
    .section {
        padding: 32px 16px;
    }
    .hero {
        padding: 16px;
    }
    .trust-bar {
        gap: 20px;
    }
    nav {
        padding: 0 16px;
    }
    .promo-wrap {
        padding: 0 16px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-inner > div:first-child {
        grid-column: auto;
    }
}

/* ARTICLES SLIDER */
.article-card {
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.2s,
        border-color 0.2s;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-mid);
}
.article-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
}
.article-cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.article-body {
    padding: 14px 16px 18px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text2);
    margin-bottom: 8px;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.article-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 8px;
}
.article-excerpt {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.article-read-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
}
.article-read-more:hover {
    color: var(--red-dark);
}
.article-read-time {
    font-size: 11px;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* NEWSLETTER */
.newsletter-wrap {
    padding: 0 32px;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.newsletter {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-bg {
    position: absolute;
    inset: 0;
    background:
                    /* pattern ÙØ±Ø´ Ø¯Ø³ØªØ¨Ø§Ù Ø¨Ø§ CSS */
        repeating-linear-gradient(
            45deg,
            rgba(163, 45, 45, 0.15) 0px,
            rgba(163, 45, 45, 0.15) 2px,
            transparent 2px,
            transparent 12px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(186, 117, 23, 0.12) 0px,
            rgba(186, 117, 23, 0.12) 2px,
            transparent 2px,
            transparent 12px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(121, 31, 31, 0.08) 0px,
            rgba(121, 31, 31, 0.08) 1px,
            transparent 1px,
            transparent 16px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(121, 31, 31, 0.08) 0px,
            rgba(121, 31, 31, 0.08) 1px,
            transparent 1px,
            transparent 16px
        ),
        linear-gradient(135deg, #791f1f 0%, #a32d2d 40%, #ba7517 100%);
    z-index: 0;
}
/* Ø¨ÙˆØ±Ø¯Ø± ØªØ²Ø¦ÛŒÙ†ÛŒ ÙØ±Ø´ */
.newsletter-bg::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(239, 159, 39, 0.4);
    border-radius: 12px;
    background: transparent;
    pointer-events: none;
}
.newsletter-bg::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(239, 159, 39, 0.2);
    border-radius: 8px;
    background: transparent;
    pointer-events: none;
}
.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 32px;
    max-width: 560px;
}
.newsletter-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}
.newsletter-content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.newsletter-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    direction: rtl;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
    border-color: var(--gold-mid);
    background: rgba(255, 255, 255, 0.18);
}
.btn-newsletter {
    background: var(--gold-mid);
    color: #2c1a00;
    padding: 12px 22px;
    border-radius: 10px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition:
        opacity 0.2s,
        transform 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-newsletter:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.newsletter-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-wrap {
        padding: 0 16px;
    }
    .newsletter-content {
        padding: 36px 20px;
    }
    .newsletter-content h2 {
        font-size: 18px;
    }
    .article-card {
        min-width: 240px;
        max-width: 240px;
    }
}
/* MOBILE OFF-CANVAS NAV */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100dvh;
    background: #fff;
    z-index: 300;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid var(--red);
}
.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.mobile-nav-close {
    background: var(--red-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    transition: background 0.2s;
}
.mobile-nav-close:hover {
    background: var(--red);
    color: #fff;
}

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

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition:
        background 0.15s,
        color 0.15s;
}
.mobile-nav-item i {
    font-size: 20px;
    color: var(--red);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.mobile-nav-item:hover {
    background: var(--red-light);
    color: var(--red-dark);
}
.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 2px solid var(--red);
    background: var(--cream);
}

.hero-slide {
    width: 100%;
}

.hero-slide .img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-slide .img-placeholder {
        aspect-ratio: 4 / 3;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-slide .img-placeholder {
        aspect-ratio: 1 / 1;
        min-height: 220px;
    }
}

/* ===== BANNER TRIPLE ===== */
/* ===== BANNER TRIPLE ===== */
.banner-triple {
    padding: 2rem 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-triple__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
}

.banner-triple__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-triple__item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    display: block;
    cursor: pointer;
}

.banner-triple__item--large {
    height: 420px;
}

.banner-triple__col .banner-triple__item {
    height: 200px;
}

.banner-triple__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;transition: transform 0.45s ease;
    display: block;
}

.banner-triple__item:hover img {
    transform: scale(1.05);
}

.banner-triple__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 43, 40, 0.72) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    gap: 0.4rem;
}

.banner-triple__tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    width: fit-content;
}

.banner-triple__title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.banner-triple__btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 8px;
    width: fit-content;
    transition: background 0.25s;
}

.banner-triple__item:hover .banner-triple__btn {
    background: var(--red);
    border-color: var(--red);
}

/* ===== BANNER DUO ===== */
.banner-duo {
    padding: 0 32px 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-duo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.banner-duo__item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    display: block;
    height: 240px;
    cursor: pointer;
}

.banner-duo__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.banner-duo__item:hover img {
    transform: scale(1.05);
}

.banner-duo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 43, 40, 0.68) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    gap: 0.4rem;
}

.banner-duo__tag {
    display: inline-block;
    background: var(--gold-mid);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    width: fit-content;
}

.banner-duo__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.banner-duo__btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 8px;
    width: fit-content;
    transition: background 0.25s;
}

.banner-duo__item:hover .banner-duo__btn {
    background: var(--gold-mid);
    border-color: var(--gold-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .banner-triple,
    .banner-duo {
        padding-inline: 1rem;
    }

    .banner-triple__grid {
        grid-template-columns: 1fr;
    }

    .banner-triple__item--large {
        height: 260px;
    }

    .banner-triple__col {
        flex-direction: row;}


    .banner-duo__grid {
        grid-template-columns: 1fr;
    }

    .banner-duo__item {
        height: 200px;
    }
}
.prod-card {
    position: relative; /* Ø§Ú¯Ù‡ Ù†Ø¯Ø§Ø±ÛŒ Ø§Ø¶Ø§ÙÙ‡ Ú©Ù† */
}

.prod-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #009100;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    z-index: 2;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(163, 45, 45, 0.35);
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'vazir';
}

.prod-discount-badge::before {
    content: "%";
    font-size: 18px;
    opacity: 0.85;
}

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

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

/* ===== QTY BOX ===== */
.qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
    height: 34px;
}

.qty-btn {
    width: 28px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

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

.qty-btn:active {
    background: var(--red);
    color: #fff;
}

.qty-input {
    width: 32px;
    height: 34px;
    border: none;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    color: var(--text);
    outline: none;
    -moz-appearance: textfield;
}

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

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: var(--gold-mid);
    transform: translateY(-2px);
}

.footer-social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* BRANDS SLIDER */
.brands-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 12px;
}

.brands-slider::-webkit-scrollbar {
    display: none;
}

.brand-card {
    min-width: 120px;
    max-width: 120px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: border-color 0.2s, transform 0.2s;
}

.brand-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin: 0 auto 10px;
    object-fit: contain;
    display: block;
}

.brand-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    margin: 0 auto 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
