*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --peach: #e02929;
    --peach-lt: #ffdcdc;
    --peach-dk: #a91313;
    --mint: #19a463;
    --mint-lt: #c0f0d8;
    --sky: #2179c4;
    --sky-lt: #d6ecfb;
    --amber: #f0a400;
    --amber-lt: #fff0c2;
    --rose: #e0276b;
    --rose-lt: #ffd9e6;
    --purple: #7d4fd6;
    --purple-lt: #ebe0fb;
    --bg: #f6f8f7;
    --bg2: #eef6f0;
    --bg3: #ffffff;
    --bg4: white;
    --card: #ffffff;
    --card-border: rgba(224, 41, 41, 0.14);
    --nav-bg: rgba(246, 248, 247, 0.88);
    --text: #161f14;
    --text2: #51624c;
    --text3: #8fa089;
    --divider: rgba(25, 164, 99, 0.16);
    --shadow: rgba(20, 70, 40, 0.1);
    --badge-bg: #eef6f0;
    --toggle-bg: #d6e6d2;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 50px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: vazir, sans-serif;
    background-color: var(--bg);
    background-image: radial-gradient(
        circle,
        var(--card-border) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    transition:
        background-color var(--transition),
        color var(--transition);
}

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--divider);
    transition:
        background var(--transition),
        border-color var(--transition);
}
.logo {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.logo em {
    color: var(--peach);
    font-style: normal;
}

/* â”€â”€â”€ HEADER SEARCH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.header-search {
    flex: 1;
    max-width: 360px;
    position: relative;
    display: flex;
    align-items: center;
}
.header-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text3);
    pointer-events: none;
}
.header-search input {
    width: 100%;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-pill);
    padding: 9px 40px 9px 18px;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.header-search input::placeholder {
    color: var(--text3);
}
.header-search input:focus {
    border-color: var(--peach);
    background: var(--card);
}

/* desktop nav */
nav {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-shrink: 0;
}
nav a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--peach);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.btn-cart {
    background: var(--peach);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-cart:hover {
    background: var(--peach-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(224, 41, 41, 0.35);
}
.cart-count {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 0.76rem;
}

/* theme toggle */
.theme-toggle {
    width: 46px;
    height: 25px;
    background: var(--toggle-bg);
    border-radius: 13px;
    border: 1px solid var(--divider);
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
    flex-shrink: 0;
}
.toggle-thumb {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--peach);
    transition:
        transform var(--transition),
        background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    line-height: 1;
}


/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* â”€â”€â”€ MOBILE SIDE DRAWER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s;
}
.drawer-overlay.open {
    display: block;
    background: rgba(0, 0, 0, 0.45);
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 99999;
    background: rgba(254, 248, 243, 0.72);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border-left: 1px solid rgba(224, 41, 41, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}
[data-theme="dark"] .side-drawer {
    background: rgba(26, 15, 6, 0.72);
    border-left-color: rgba(224, 41, 41, 0.15);
}
.side-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--divider);
}
.drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text2);
    transition: all 0.2s;
}
.drawer-close:hover {
    background: var(--peach-lt);
    border-color: var(--peach);
    color: var(--peach-dk);
}

/* drawer search */
.drawer-search {
    padding: 16px 22px;
    border-bottom: 1px solid var(--divider);

    display: flex;
    gap: 8px;
}

.drawer-search input {
    flex: 1;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-pill);
    padding: 10px 8px;
    font-family: inherit;
    font-size: 0.89rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.drawer-search input::placeholder {
    color: var(--text3);
}

.drawer-search input:focus {
    border-color: var(--peach);
}

.drawer-search button {
    border: none;
    border-radius: var(--radius-pill);

    padding: 0 16px;

    background: #000;
    color: #fff;

    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.drawer-search button:hover {
    opacity: 0.9;
}

.drawer-search button:active {
    transform: scale(0.98);
}
.drawer-search button {
    width: 42px;
    height: 42px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #000;
    color: #fff;

    cursor: pointer;
}
/* drawer nav links */
.drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    padding: 12px 0;
    flex: 1;
}
.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition:
        background 0.2s,
        color 0.2s;
    border-radius: 0;
}
.drawer-nav a:hover {
    background: rgba(224, 41, 41, 0.08);
    color: var(--peach);
}
.drawer-nav-icon {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}
.drawer-divider {
    height: 1px;
    background: var(--divider);
    margin: 8px 22px;
}

/* drawer cart & wishlist */
.drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 22px;
    border-top: 1px solid var(--divider);
}
.drawer-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    color: var(--text);
    text-decoration: none;
}
.drawer-action-btn:hover {
    border-color: var(--peach);
    background: var(--peach-lt);
}
[data-theme="dark"] .drawer-action-btn:hover {
    background: rgba(224, 41, 41, 0.1);
}
.drawer-action-btn .da-icon {
    font-size: 1.5rem;
    position: relative;
}
.drawer-action-btn .da-badge {
    position: absolute;
    top: -5px;
    left: -8px;
    background: var(--peach);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drawer-action-btn .da-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text2);
}

/* bottom mobile bar (4 items) */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 900;
    height: 64px;
    border-radius: 11px;
    background: #a9131312;
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-top: 1px solid rgba(224, 41, 41, 0.15);
    padding: 0 4px;
}
[data-theme="dark"] .mobile-bar {
    background: rgba(26, 15, 6, 0.78);
    border-top-color: rgba(224, 41, 41, 0.13);
    width: 90%;
}

[data-theme="dark"] .mbar-label{
    color: white;
}

.mobile-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    align-items: center;
}
.mbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    padding: 6px 4px;
    text-decoration: none;
    color: var(--text3);
    transition: color 0.2s;
    border-radius: 12px;
    position: relative;
}
.mbar-item:hover,
.mbar-item.active {
    color: var(--peach);
}
.mbar-icon {
    font-size: 1.35rem;
    line-height: 1;
    position: relative;
}
.mbar-badge {
    position: absolute;
    top: -4px;
    left: -6px;
    background: var(--peach);
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 0.55rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mbar-label {
    font-size: 0.72rem;
    font-weight: 900;
    color: black;
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--peach-lt);
    border: 1px solid rgba(224, 41, 41, 0.35);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--peach-dk);
    margin-bottom: 1.4rem;
}
[data-theme="dark"] .hero-badge {
    background: rgba(224, 41, 41, 0.12);
    color: var(--peach);
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-title .hl {
    color: var(--peach);
}
.hero-desc {
    font-size: 1rem;
    color: var(--text2);
    margin-bottom: 2rem;
    max-width: 440px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--peach);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(224, 41, 41, 0.3);
}
.btn-primary:hover {
    background: var(--peach-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(224, 41, 41, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--divider);
    border-radius: var(--radius-pill);
    padding: 13px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-secondary:hover {
    border-color: var(--peach);
    color: var(--peach);
    background: var(--peach-lt);
}
[data-theme="dark"] .btn-secondary:hover {
    background: rgba(224, 41, 41, 0.1);
}
.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat .num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--peach);
}
.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--text3);
    margin-top: 2px;
}
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.hv-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    cursor: pointer;
}
.hv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow);
}
.hv-card:first-child {
    grid-row: span 2;
    background: linear-gradient(150deg, var(--peach) 0%, var(--peach-dk) 100%);
    border-color: transparent;
}
.hv-card:first-child .hv-label {
    color: rgba(255, 255, 255, 0.85);
}
.hv-card:first-child .hv-sub {
    color: rgba(255, 255, 255, 0.65);
}
.hv-emoji {
    font-size: 3rem;
    line-height: 1;
}
.hv-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}
.hv-sub {
    font-size: 0.75rem;
    color: var(--text3);
    text-align: center;
}
.hv-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.25;
    transition: opacity var(--transition);
}
.blob1 {
    width: 400px;
    height: 400px;
    background: var(--peach);
    right: -100px;
    top: 10%;
}
.blob2 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    left: 30%;
    bottom: 5%;
}
[data-theme="dark"] .hero-blob {
    opacity: 0.12;
}
.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 68px;
}

/* Ø¯Ø³Ú©ØªØ§Ù¾ */
.hero-slider {
    height: 34vh;
    min-height: 320px;
    max-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .5s ease,
        visibility .5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img {
    object-fit: cover;
    object-position: center;
}

/* Ø¯Ø§Øª Ù‡Ø§ */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 5;
}

.hero-dots span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    cursor: pointer;

    background: rgba(255,255,255,.5);

    transition: .3s;
}

.hero-dots span.active {
    width: 28px;
    border-radius: 999px;
    background: white;
}

/* Ù…ÙˆØ¨Ø§ÛŒÙ„ */

@media (max-width:768px){

    .hero-slider{
        height: 26vh;
        min-height: 180px;
        max-height: 260px;
    }

}

/* â”€â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.trust-section {
    padding: 30px 5% 60px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}/* â”€â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.trust-section {
    padding: 30px 5% 60px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.trust-card {
    position: relative;
    cursor: pointer;
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    border-radius: 22px;

    background: var(--card);

    border: 1px solid var(--card-border);

    box-shadow:
        0 8px 24px var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.trust-card img{
    z-index: 9;
    padding: 10px;
}

/* Ù„Ø§ÛŒÙ‡ Ø¯Ø§Ø®Ù„ÛŒ Ú©Ø§Ø±Øª */

.trust-card::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background: inherit;

    z-index: 1;
}

/* Ø¨ÙˆØ±Ø¯Ø± Ù†ÙˆØ±ÛŒ Ù…ØªØ­Ø±Ú© - Ù¾Ø´Øª Ú©Ø§Ø±Øª */


.trust-card::after {
    content: "";

    position: absolute;

    inset: -8px;

    border-radius: inherit;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 280deg,
            rgba(213, 51, 51, .9) 320deg,
            rgba(213, 51, 51, .4) 340deg,
            transparent 360deg
        );

    filter: blur(8px);

    animation: trustBorderRotate 3s linear infinite;

    opacity: .85;

    z-index: -1;
}

.trust-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, .08),
        0 0 18px rgba(213, 51, 51, .12);
}

[data-theme="dark"] .trust-card {
    background: var(--card);

    border-color: rgba(255,255,255,.06);

    box-shadow:
        0 8px 24px rgba(0,0,0,.25);
}

.trust-icon,
.trust-content {
    position: relative;
    z-index: 2;
}

/* ØªÙ†ÙˆØ¹ Ø±Ù†Ú¯ÛŒ Ø¨Ø±Ø§ÛŒ Ù‡Ø± Ú©Ø§Ø±Øª Ø§Ø¹ØªÙ…Ø§Ø¯ */
.trust-card:nth-child(1) {
    background: linear-gradient(155deg, var(--card) 55%, var(--peach-lt) 150%);
}
.trust-card:nth-child(2) {
    background: linear-gradient(155deg, var(--card) 55%, var(--mint-lt) 150%);
}
.trust-card:nth-child(3) {
    background: linear-gradient(155deg, var(--card) 55%, var(--sky-lt) 150%);
}
.trust-card:nth-child(4) {
    background: linear-gradient(155deg, var(--card) 55%, var(--amber-lt) 150%);
}
.trust-card:nth-child(1) .trust-icon { color: var(--peach); }
.trust-card:nth-child(2) .trust-icon { color: var(--mint); }
.trust-card:nth-child(3) .trust-icon { color: var(--sky); }
.trust-card:nth-child(4) .trust-icon { color: var(--amber); }

.trust-icon {
    font-size: 2.2rem;

    margin-bottom: 12px;

    line-height: 1;
}

.trust-content h4 {
    font-size: .95rem;

    font-weight: 800;

    margin-bottom: 6px;

    color: var(--text);
}

.trust-content p {
    font-size: .78rem;

    line-height: 1.6;

    color: var(--text2);
}

@keyframes trustBorderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* â”€â”€â”€ TABLET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 992px) {

    .trust-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

}

/* â”€â”€â”€ MOBILE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 768px) {

    .trust-section {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        padding: 20px 4% 40px;
    }

    .trust-card {
        min-height: 120px;

        padding: 16px;
    }

    .trust-icon {
        font-size: 1.8rem;

        margin-bottom: 8px;
    }

    .trust-content h4 {
        font-size: .85rem;
    }

    .trust-content p {
        font-size: .7rem;

        line-height: 1.45;
    }

}

.trust-card {
    position: relative;

    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--card);

    border: 1px solid var(--card-border);

    box-shadow:
        0 8px 24px var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

/* Ù„Ø§ÛŒÙ‡ Ø¯Ø§Ø®Ù„ÛŒ Ú©Ø§Ø±Øª */

.trust-card::before {
    content: "";

    position: absolute;

    inset: 1px;

    border-radius: inherit;

    background: inherit;

    z-index: 1;
}

/* Ø¨ÙˆØ±Ø¯Ø± Ù†ÙˆØ±ÛŒ Ù…ØªØ­Ø±Ú© */


.trust-card::after {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 310deg,
            rgba(213, 51, 51, .9) 330deg,
            rgba(213, 51, 51, .35) 345deg,
            transparent 360deg
        );

    animation: trustBorderRotate 5s linear infinite;

    opacity: .65;

    z-index: 0;
}

.trust-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, .08),
        0 0 18px rgba(213, 51, 51, .12);
}

[data-theme="dark"] .trust-card {
    background: var(--card);

    border-color: rgba(255,255,255,.06);

    box-shadow:
        0 8px 24px rgba(0,0,0,.25);
}

.trust-icon,
.trust-content {
    position: relative;
    z-index: 2;
}

/* ØªÙ†ÙˆØ¹ Ø±Ù†Ú¯ÛŒ Ø¨Ø±Ø§ÛŒ Ù‡Ø± Ú©Ø§Ø±Øª Ø§Ø¹ØªÙ…Ø§Ø¯ */
.trust-card:nth-child(1) {
    background: linear-gradient(155deg, var(--card) 55%, var(--peach-lt) 150%);
}
.trust-card:nth-child(2) {
    background: linear-gradient(155deg, var(--card) 55%, var(--mint-lt) 150%);
}
.trust-card:nth-child(3) {
    background: linear-gradient(155deg, var(--card) 55%, var(--sky-lt) 150%);
}
.trust-card:nth-child(4) {
    background: linear-gradient(155deg, var(--card) 55%, var(--amber-lt) 150%);
}
.trust-card:nth-child(1) .trust-icon { color: var(--peach); }
.trust-card:nth-child(2) .trust-icon { color: var(--mint); }
.trust-card:nth-child(3) .trust-icon { color: var(--sky); }
.trust-card:nth-child(4) .trust-icon { color: var(--amber); }

.trust-icon {
    font-size: 2.2rem;

    margin-bottom: 12px;

    line-height: 1;
}

.trust-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.trust-content p {
    font-size: .78rem;

    line-height: 1.6;

    color: var(--text2);
}

@keyframes trustBorderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* â”€â”€â”€ TABLET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 992px) {

    .trust-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

}

/* â”€â”€â”€ MOBILE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 768px) {

    .trust-section {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        padding: 20px 4% 40px;
    }

    .trust-card {
        min-height: 120px;

        padding: 16px;
    }

    .trust-icon {
        font-size: 1.8rem;

        margin-bottom: 8px;
    }

    .trust-content h4 {
        font-size: .95rem;
    }

    .trust-content p {
        font-size: .7rem;

        line-height: 1.45;
    }

}

/* â”€â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section {
    padding: 80px 5%;
}
.section-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    display: inline-block;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--peach);
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
}
.section-sub {
    color: var(--text2);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    max-width: 480px;
}
.see-all {
    color: var(--peach);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    white-space: nowrap;
}
.see-all:hover {
    gap: 10px;
}

/* â”€â”€â”€ CATEGORIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}
.cat-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cat-card:hover {
    border-color: var(--peach);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(224, 41, 41, 0.12);
}
.cat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition:
        transform 0.3s,
        background 0.3s;
}
.cat-card:nth-child(5n+1) .cat-icon { background: var(--peach-lt); }
.cat-card:nth-child(5n+2) .cat-icon { background: var(--mint-lt); }
.cat-card:nth-child(5n+3) .cat-icon { background: var(--sky-lt); }
.cat-card:nth-child(5n+4) .cat-icon { background: var(--amber-lt); }
.cat-card:nth-child(5n+5) .cat-icon { background: var(--rose-lt); }
.cat-card:hover .cat-icon {
    background: var(--peach-lt);
    transform: scale(1.08);
}
[data-theme="dark"] .cat-card:hover .cat-icon {
    background: rgba(224, 41, 41, 0.15);
}
.cat-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}
.cat-count {
    font-size: 0.72rem;
    color: var(--text3);
}

/* â”€â”€â”€ BANNER PAIR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banner-pair {
    padding: 0 5%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.banner-card {
    border-radius: var(--radius);
    min-height: 190px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.banner-card img {
    width: 100%;
    height: 100%;
}

.banner-card:hover {
    transform: scale(1.015);
    box-shadow: 0 16px 40px var(--shadow);
}
.banner-card-1 {
    background: linear-gradient(120deg, #ffe6e6 0%, #ffc2c2 100%);
    border-color: rgba(213, 51, 51, 0.25);
}
.banner-card-2 {
    background: linear-gradient(120deg, #e3eefc 0%, #bcdaf7 100%);
    border-color: rgba(33, 121, 196, 0.25);
}

.banner-card-3{
    background: linear-gradient(120deg, #b4b4b4 0%, #67ff7a 100%);
    border-color: rgba(33, 121, 196, 0.25);
}

.banner-full-w img{
    width: 100%;
    height: 200px;
    border-radius: 20px;
    padding: 1px;
}

[data-theme="dark"] .banner-card-1 {
    background: linear-gradient(120deg, rgba(255, 82, 82, 0.22), rgba(255, 82, 82, 0.06));
    border-color: rgba(255, 82, 82, 0.32);
}
[data-theme="dark"] .banner-card-2 {
    background: linear-gradient(120deg, rgba(79, 168, 232, 0.22), rgba(79, 168, 232, 0.06));
    border-color: rgba(79, 168, 232, 0.32);
}
.banner-content {
    position: relative;
    z-index: 2;
}
.banner-tag {
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
}
.banner-title {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--text);
}
.banner-desc {
    font-size: 0.83rem;
    color: var(--text2);
    margin-bottom: 16px;
}
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s;
}
.banner-btn-peach {
    background: var(--peach);
    color: #fff;
}
.banner-btn-peach:hover {
    background: var(--peach-dk);
}
.banner-btn-mint {
    background: var(--mint);
    color: #fff;
}
.banner-btn-mint:hover {
    background: #2e8a62;
}
.banner-em {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.12;
    pointer-events: none;
}

/* â”€â”€â”€ BRANDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brands-wrap {
    padding: 60px 5%;
}

.brands-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
}


.brand-card {
    min-width: 180px;
    width: 180px;
    height: 150px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;

    text-decoration: none;

    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 24px;

    transition: .3s ease;

    scroll-snap-align: start;
}

.brand-card:hover {
    transform: translateY(-6px);
    border-color: var(--peach);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}


/* â”€â”€â”€ WIDE BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banner-wide {
    margin: 0 5% 80px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    min-height: 210px;
    display: flex;
    align-items: center;
    padding: 40px 48px;
    cursor: pointer;
    background: linear-gradient(180deg, #ffbc7b 0%, #ff0000 100%);
    transition: box-shadow 0.3s;
}
.banner-wide:hover {
    box-shadow: 0 20px 60px rgba(213, 51, 51, 0.35);
}
.bw-bg-circle {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.bw-em {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.15;
    pointer-events: none;
}
.bw-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}
.bw-tag {
    display: inline-block;
    background: rgb(213 81 0);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.bw-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
.bw-desc {
    color: rgb(255 255 255 / 80%);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.btn-white {
    background: #fff;
    color: var(--peach-dk);
    border: none;
    border-radius: var(--radius-pill);
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* â”€â”€â”€ PRODUCT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.product-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    scroll-behavior: smooth;
}
.product-slider::-webkit-scrollbar {
    display: none;
}
.product-card {
    flex: 0 0 220px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s;
    cursor: pointer;
}
.product-card:hover {
    border-color: var(--peach);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(224, 41, 41, 0.15);
}
.product-img {
    height: 155px;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}
.product-img img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 13px;
}
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 800;
}
.badge-off {
    background: var(--rose);
    color: #fff;
}
.badge-new {
    background: var(--mint);
    color: #fff;
}
.badge-hot {
    background: var(--rose);
    color: #fff;
}
.wish-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}
.wish-btn:hover {
    border-color: var(--rose);
    background: rgba(255, 59, 59, 0.1);
}
.product-body {
    padding: 14px;
}
.product-cat {
    font-size: 0.9rem;
    color: var(--peach);
    font-weight: 700;
    margin-bottom: 5px;
}
.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.stars {
    color: var(--amber);
    font-size: 0.72rem;
}
.rating-n {
    font-size: 0.72rem;
    color: var(--text3);
}

/* quantity + price row */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
    display: flex;
    flex-direction: column;
    padding: 6px;
}
.old-price {
    font-size: 0.76rem;
    color: var(--text3);
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400;
}

/* qty control */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-pill);
    overflow: hidden;
    height: 32px;
}
.qty-btn {
    width: 28px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--text2);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.15s,
        color 0.15s;
    font-family: inherit;
    line-height: 1;
}
.qty-btn:hover {
    background: var(--peach);
    color: #fff;
}
.qty-num {
    min-width: 24px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text);
    padding: 0 2px;
    user-select: none;
}

/* show qty after first click â€” hidden by default */
.product-card .qty-control {
    display: none;
}
.product-card.in-cart .qty-control {
    display: flex;
}
.product-card.in-cart .add-btn {
    display: none;
}

.add-btn {
    width: 32px;
    height: 32px;
    background: var(--peach);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.add-btn:hover {
    background: var(--peach-dk);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(224, 41, 41, 0.4);
}

.slider-nav {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.snav-btn {
    width: 36px;
    height: 36px;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
    transition: all 0.2s;
}
.snav-btn:hover {
    background: var(--peach);
    border-color: var(--peach);
    color: #fff;
}

.prod-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-box{
    display:flex;
    align-items:center;

    height:42px;

    background:var(--card);
    border:1px solid var(--card-border);

    border-radius:12px;
    overflow:hidden;
}

.qty-btn{
    width:42px;
    height:42px;
    border:none;
    background: #000000;
    color: white;
    font-size: 26px;
    font-weight: 900;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.2s;
}

.qty-btn:hover{
    background: rgb(0 132 128);
}

[data-theme="dark"] .qty-btn:hover{
    background:rgba(255,255,255,.06);
}

.qty-input{
    width:50px;

    border:none;
    background:transparent;

    text-align:center;

    font-size:.95rem;
    font-weight:700;

    color:var(--text);

    outline:none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button{
    display:none;
}

.add-btn-generic{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background: #08c521;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.add-btn-generic:hover{
    transform:translateY(-2px);
    filter:brightness(1.05);
}

.add-btn-generic i{
    font-size:16px;
}

/* â”€â”€â”€ 3-COL BANNERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.banners3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 5%;
    margin-bottom: 80px;
}
.b3 {
    border-radius: var(--radius);
    padding: 26px;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    border: 1px solid transparent;
}
.b3:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px var(--shadow);
}
.b3-1 {
    background: linear-gradient(140deg, #dff8e8, #a8edc4);
    border-color: rgba(25, 164, 99, 0.25);
}
.b3-2 {
    background: linear-gradient(140deg, #ffe6e6, #ffc2c2);
    border-color: rgba(213, 51, 51, 0.25);
}
.b3-3 {
    background: linear-gradient(140deg, #fef3dc, #fddfa0);
    border-color: rgba(232, 160, 32, 0.25);
}
[data-theme="dark"] .b3-1 {
    background: linear-gradient(140deg, rgba(46, 212, 126, 0.18), rgba(46, 212, 126, 0.05));
    border-color: rgba(46, 212, 126, 0.3);
}
[data-theme="dark"] .b3-2 {
    background: linear-gradient(140deg, rgba(255, 82, 82, 0.2), rgba(255, 82, 82, 0.06));
    border-color: rgba(255, 82, 82, 0.32);
}
[data-theme="dark"] .b3-3 {
    background: linear-gradient(140deg, rgba(255, 194, 51, 0.2), rgba(255, 194, 51, 0.05));
    border-color: rgba(255, 194, 51, 0.3);
}
.b3-em {
    position: absolute;
    left: 18px;
    bottom: 14px;
    font-size: 3.2rem;
    opacity: 0.18;
    pointer-events: none;
    line-height: 1;
}
.b3-tag {
    display: inline-block;
    border-radius: var(--radius-pill);
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.b3-tag-mint {
    background: var(--mint-lt);
    color: #1e6644;
}
[data-theme="dark"] .b3-tag-mint {
    background: rgba(25, 164, 99, 0.2);
    color: #7de0b0;
}
.b3-tag-peach {
    background: var(--peach-lt);
    color: var(--peach-dk);
}
[data-theme="dark"] .b3-tag-peach {
    background: rgba(224, 41, 41, 0.15);
    color: var(--peach);
}
.b3-tag-amber {
    background: var(--amber-lt);
    color: #8a5200;
}
[data-theme="dark"] .b3-tag-amber {
    background: rgba(232, 160, 32, 0.15);
    color: var(--amber);
}
.b3-title {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--text);
}
.b3-desc {
    font-size: 0.8rem;
    color: var(--text2);
}

/* â”€â”€â”€ ARTICLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 16px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.blog-container::-webkit-scrollbar {
    display: none;
}

.article-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}
.article-card:hover {
    border-color: var(--peach);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(224, 41, 41, 0.12);
}

.art-img {
    height: 175px;
    position: relative;
    overflow: hidden;
}
.art-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.art-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--peach);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
}
.art-body {
    padding: 18px;
}
.art-meta {
    display: flex;
    gap: 12px;
    font-size: 0.76rem;
    color: var(--text3);
    margin-bottom: 8px;
}
.art-title {
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 7px;
    color: var(--text);
}
.art-excerpt {
    font-size: 0.83rem;
    color: var(--text2);
    line-height: 1.6;
}

.blog-nav {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--card);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.blog-nav:hover {
    border-color: var(--peach);
    color: var(--peach);
}
.blog-nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 600px) {
    .blog-nav { display: none; }
}

/* â”€â”€â”€ NEWSLETTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.newsletter {
    margin: 0 5% 80px;
    background: linear-gradient(135deg, var(--peach-lt) 0%, var(--bg2) 60%);
    border: 1px solid var(--divider);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}
.nl-blob {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(213, 51, 51, 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.nl-blob::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(33, 121, 196, 0.14) 0%,
        transparent 70%
    );
}
.nl-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 1rem;
}
.nl-title {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 900;
    margin-bottom: 0.7rem;
}
.nl-desc {
    color: var(--text2);
    max-width: 480px;
    margin: 0 auto 1.8rem;
}
.nl-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}
.nl-input {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    padding: 13px 20px;
    margin-bottom: 15px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}
.nl-input::placeholder {
    color: var(--text3);
}
.nl-input:focus {
    border-color: var(--peach);
}
.nl-btn {
    background: var(--peach);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 26px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.nl-btn:hover {
    background: var(--peach-dk);
    box-shadow: 0 6px 20px rgba(224, 41, 41, 0.35);
}
.nl-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.nl-perk {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text3);
}
.nl-perk em {
    color: var(--mint);
    font-style: normal;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
    background: var(--bg3);
    border-top: 1px solid var(--divider);
    padding: 60px 5% 0;
    transition: background var(--transition);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--divider);
}
.ft-brand .logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}
.ft-tagline {
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 270px;
}
.ft-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.social-btn {
    width: 36px;
    height: 36px;
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text2);
}
.social-btn:hover {
    background: var(--peach);
    border-color: var(--peach);
    color: #fff;
}
.ft-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: var(--text);
}
.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ft-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.ft-links a:hover {
    color: var(--peach);
}
.ft-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text2);
}
.ct-icon {
    color: var(--peach);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.ft-copy {
    font-size: 0.8rem;
    color: var(--text3);
}
.ft-badges {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.ft-badge {
    background: var(--badge-bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.76rem;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 5px;
}
.ft-badge em {
    color: var(--mint);
    font-style: normal;
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-desc {
        margin: 0 auto 2rem;
    }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .header-search {
        max-width: 240px;
    }
}
@media (max-width: 768px) {
    /* hide desktop nav & search & cart, show hamburger */
    nav {
        display: none;
    }
    .header-search {
        display: none;
    }
    .btn-cart {
    }
    .hamburger {
        display: flex;
    }
    /* show mobile bar */
    .mobile-bar {
        display: block;
    }
    /* push page content above mobile bar */
    body {
        padding-bottom: 64px;
    }
    .banner-pair {
        grid-template-columns: 1fr;
    }
    .banners3 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .nl-form {
        flex-direction: column;
    }
    .nl-btn {
        width: 100%;
    }
    .product-card {
        flex: 0 0 190px;
    }
    section {
        padding: 60px 4%;
    }
    .hero-inner {
        padding: 40px 4%;
    }
    .hero-visual {
        grid-template-columns: 1fr 1fr;
    }
    .banner-wide {
        padding: 28px 24px;
    }
    .newsletter {
        padding: 40px 20px;
    }
    .bw-em {
        font-size: 5rem;
        opacity: 0.1;
    }
    .trust-bar {
        gap: 24px;
    }
    .slider-wrap::before {
        right: 0;
    }
    .slider-wrap::after {
        left: 0;
    }
}
@media (max-width: 480px) {
    .product-card {
        flex: 0 0 200px;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .cats-grid {
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    }
}

.qty-btn.d-none,
.qty-input.d-none {
    display: none;
}

.qty-btn i {
    transition: transform 0.15s ease;
}

.qty-box[data-loading="true"] .qty-btn {
    pointer-events: none;
    opacity: 0.6;
}

.qty-btn.is-loading i {
    visibility: hidden;
}

.qty-btn.is-loading {
    position: relative;
}

.qty-btn.is-loading::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.footer-credit{
    margin-top: 28px;
    padding: 18px 5%;
    border-top: 1px solid var(--divider);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text3);
    text-align: center;
    direction: ltr;
}

.footer-credit a{
    color: var(--peach);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .3px;
    transition: .25s;
}

.footer-credit a:hover{
    color: var(--peach-dk);
    transform: translateY(-1px);
}

[data-theme="dark"] .footer-credit{
    border-top-color: rgba(255,255,255,.08);
}