/* RETOOLS â€” Modern Hardware Store UI */

.rt-body { background: #F4F5F7; }

/* Override legacy header shell */
.rt-top.site-top {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
}
.rt-header.site-header {
    background: linear-gradient(180deg, #8B1538 0%, #7A1230 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}
.rt-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(11,18,33,.22);
}

/* Logo hexagon */
.brand-logo-hex {
    width: 2.5rem;
    height: 2.5rem;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    border: 2px solid currentColor;
    background: transparent;
    line-height: 1;
}

/* â”€â”€ Utility bar â”€â”€ */
.rt-utility {
    background: #6B0F2A;
    color: rgba(255,255,255,.75);
    font-size: 0.72rem;
    font-weight: 500;
}
.rt-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2rem;
    padding: 0.35rem 0;
}
.rt-utility-left,
.rt-utility-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
}
.rt-utility a { color: inherit; transition: color .2s; }
.rt-utility a:hover { color: #fff; }
@media (max-width: 768px) {
    .rt-utility-left { display: none; }
    .rt-utility-inner { justify-content: center; }
}

/* â”€â”€ Header â”€â”€ */
.rt-header {
    background: linear-gradient(180deg, #8B1538 0%, #7A1230 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 24px rgba(11,18,33,.18);
}
.rt-header-row {
    display: flex;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 0.85rem 0;
}
.rt-search { max-width: 42rem; min-width: 0; }
.rt-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    height: 2.75rem;
}
.rt-search-input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 1.25rem;
    font-size: 0.9rem;
    color: var(--ink);
    min-width: 0;
}
.rt-search-input::placeholder { color: #9CA3AF; }
.rt-search-btn {
    width: 2.35rem;
    height: 2.35rem;
    margin-right: 0.2rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}
.rt-search-btn:hover { background: var(--brand-dark); transform: scale(1.04); }
.rt-search-results {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

.rt-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.rt-support {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
}
.rt-support-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
}
.rt-support-text { display: flex; flex-direction: column; line-height: 1.2; }
.rt-support-label { font-size: 0.68rem; opacity: .75; font-weight: 500; }
.rt-support-phone { font-size: 0.85rem; font-weight: 700; letter-spacing: -0.01em; }

.rt-cart-btn {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0.85rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    transition: background .2s;
}
.rt-cart-btn:hover { background: rgba(255,255,255,.18); }
.rt-cart-badge {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #EF4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(239,68,68,.4);
}
.rt-icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0.75rem;
    background: rgba(255,255,255,.1);
}

/* Category nav */
.rt-nav {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.06);
}
.rt-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.75rem;
}
.rt-nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    padding: 0.35rem 0;
    -webkit-overflow-scrolling: touch;
}
.rt-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    color: rgba(255,255,255,.78);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.rt-nav-link:hover,
.rt-nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.rt-nav-link--accent {
    color: #FCA5A5;
    font-weight: 600;
}
.rt-nav-end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.rt-nav-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,.85);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    transition: background .2s;
}
.rt-nav-auth:hover { background: rgba(255,255,255,.08); color: #fff; }
.rt-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,.7);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,.1);
}
.rt-lang-flag { font-size: 0.9rem; }

.rt-mobile-search {
    padding: 0 0 0.75rem;
}
.rt-mobile-search .rt-search-form { height: 2.5rem; }

@media (max-width: 1023px) {
    .rt-search { display: none; }
    .rt-header-row { padding: 0.7rem 0; }
}

/* â”€â”€ Features bar â”€â”€ */
.rt-features {
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}
.rt-features-inner {
    background: var(--ink);
    color: #fff;
    padding: 1rem 0.85rem;
    border-radius: 1.15rem;
    box-shadow: var(--shadow-md);
}
.rt-features-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.5rem;
}
.rt-feature {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.4rem;
    flex: 1 1 0;
    min-width: 0;
}
.rt-feature-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    background: rgba(139,21,56,.28);
    color: #F9A8D4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rt-feature-icon svg { width: 1.15rem; height: 1.15rem; }
.rt-feature > div {
    min-width: 0;
}
.rt-feature strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rt-feature span {
    display: block;
    font-size: 0.62rem;
    color: rgba(255,255,255,.5);
    margin-top: 0.12rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 1100px) {
    .rt-features-inner { padding: 0.85rem 0.5rem; }
    .rt-features-grid {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.35rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .rt-features-grid::-webkit-scrollbar { display: none; }
    .rt-feature {
        flex: 0 0 auto;
        width: 9.5rem;
        padding: 0.3rem 0.45rem;
    }
    .rt-feature strong { font-size: 0.68rem; white-space: normal; }
    .rt-feature span { white-space: normal; font-size: 0.58rem; }
}
@media (max-width: 640px) {
    .rt-features-inner {
        padding: 0.75rem 0.4rem;
        border-radius: 0.9rem;
    }
    .rt-features-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.25rem;
    }
    .rt-feature {
        flex: 0 0 auto;
        width: 8.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.35rem;
        padding: 0.35rem 0.3rem;
    }
    .rt-feature-icon {
        width: 2.15rem;
        height: 2.15rem;
    }
    .rt-feature strong {
        font-size: 0.62rem;
        white-space: normal;
    }
    .rt-feature span {
        font-size: 0.55rem;
        white-space: normal;
    }
}

/* â”€â”€ Hero grid â”€â”€ */
.rt-hero-section { padding: 0 0 1.5rem; }
.rt-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.75fr;
    gap: 0.85rem;
    min-height: 340px;
}
.rt-hero-main {
    position: relative;
    border-radius: 1.15rem;
    overflow: hidden;
    min-height: 340px;
    background: #0B1221;
    box-shadow: var(--shadow-md);
}
.rt-hero-viewport { position: absolute; inset: 0; }
.rt-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s var(--ease);
    pointer-events: none;
}
.rt-hero-slide.is-active { opacity: 1; pointer-events: auto; }
.rt-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rt-hero-bg--gradient {
    background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(139,21,56,.45), transparent 60%),
        linear-gradient(135deg, #0B1221 0%, #1a1020 40%, #2a0a18 100%);
}
.rt-hero-bg--gradient2 {
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(139,21,56,.5), transparent 55%),
        linear-gradient(160deg, #8B1538 0%, #3a0a18 100%);
}
.rt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,18,33,.82) 0%, rgba(11,18,33,.35) 55%, transparent 100%);
}
.rt-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.25rem;
    color: #fff;
    max-width: 28rem;
}
.rt-hero-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.rt-hero-content h1 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}
.rt-hero-content p {
    color: rgba(255,255,255,.7);
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
    line-height: 1.5;
}
.rt-hero-cta {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.rt-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.rt-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    transition: background .2s;
}
.rt-hero-arrow:hover { background: rgba(255,255,255,.22); }
.rt-hero-prev { left: 0.75rem; }
.rt-hero-next { right: 0.75rem; }
.rt-hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.4rem;
}
.rt-hero-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    transition: all .25s;
}
.rt-hero-dot.active {
    width: 1.25rem;
    background: #fff;
}

/* Promo banner */
.rt-promo-banner {
    border-radius: 1.15rem;
    overflow: hidden;
    min-height: 340px;
    background:
        linear-gradient(160deg, rgba(11,18,33,.55), rgba(139,21,56,.75)),
        linear-gradient(135deg, #1a0a12, #3d0f22);
    box-shadow: var(--shadow-md);
    position: relative;
}
.rt-promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 40%),
        repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,.02) 8px, rgba(255,255,255,.02) 16px);
}
.rt-promo-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    color: #fff;
}
.rt-promo-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.55rem;
    border-radius: 0.35rem;
    background: rgba(255,255,255,.15);
    margin-bottom: 0.5rem;
}
.rt-promo-inner h2 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}
.rt-promo-set {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FCA5A5;
    margin-bottom: 0.65rem;
}
.rt-promo-prices {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1rem;
}
.rt-promo-old {
    font-size: 0.8rem;
    text-decoration: line-through;
    opacity: .6;
}
.rt-promo-new {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.rt-promo-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform .2s;
}
.rt-promo-btn:hover { transform: translateY(-2px); }

/* Side categories */
.rt-side-cats {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    min-height: 340px;
    display: flex;
    flex-direction: column;
}
.rt-side-cats h3 {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.rt-side-cats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    flex: 1;
}
.rt-side-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.4rem;
    border-radius: 0.85rem;
    background: #F8F9FB;
    border: 1px solid transparent;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink);
    transition: all .25s var(--ease);
}
.rt-side-cat:hover {
    border-color: rgba(139,21,56,.2);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    color: var(--brand);
}
.rt-side-cat-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--ink);
}
.rt-side-cat-icon svg { width: 100%; height: 100%; }
.rt-side-cat:hover .rt-side-cat-icon { color: var(--brand); }

@media (max-width: 1100px) {
    .rt-hero-grid { grid-template-columns: 1fr 1fr; }
    .rt-side-cats { grid-column: 1 / -1; min-height: auto; }
    .rt-side-cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .rt-hero-grid { grid-template-columns: 1fr; }
    .rt-hero-main, .rt-promo-banner { min-height: 260px; }
    .rt-promo-inner { min-height: 260px; }
    .rt-side-cats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* â”€â”€ Offer strip â”€â”€ */
.rt-offer-strip {
    margin-bottom: 1.5rem;
}
.rt-offer-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 1rem;
    background: linear-gradient(135deg, #8B1538 0%, #5C0C24 100%);
    border-radius: 1.25rem;
    padding: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.rt-offer-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 0.5rem 0.75rem;
}
.rt-offer-copy h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.rt-offer-cta {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform .2s;
}
.rt-offer-cta:hover { transform: translateY(-2px); }
.rt-offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
@media (max-width: 900px) {
    .rt-offer-inner { grid-template-columns: 1fr; }
    .rt-offer-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .rt-offer-cards { grid-template-columns: 1fr; }
}

/* â”€â”€ Main section â”€â”€ */
.rt-main-section { padding: 0.5rem 0 2rem; }
.rt-main-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.25rem;
    align-items: start;
}
.rt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 7.5rem;
}
.rt-sidebar-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-sidebar-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.rt-mini-list { display: flex; flex-direction: column; gap: 0.75rem; }
.rt-mini-item {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}
.rt-mini-item img {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
    border-radius: 0.55rem;
    background: #F8F9FB;
    flex-shrink: 0;
    padding: 0.2rem;
}
.rt-mini-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rt-mini-prices { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.2rem; }
.rt-mini-prices .old {
    font-size: 0.68rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.rt-mini-prices .now {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
}

.rt-sidebar-promo {
    border-radius: 1rem;
    overflow: hidden;
    min-height: 220px;
    background:
        linear-gradient(160deg, rgba(11,18,33,.5), rgba(139,21,56,.8)),
        linear-gradient(135deg, #1a1020, #4a0f28);
    box-shadow: var(--shadow-md);
}
.rt-sidebar-promo-inner {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
}
.rt-sidebar-promo-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: .85;
    margin-bottom: 0.35rem;
}
.rt-sidebar-promo-inner h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.rt-sidebar-promo-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform .2s;
}
.rt-sidebar-promo-btn:hover { transform: translateY(-2px); }

.rt-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1.15rem;
}
.rt-section-head h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.rt-section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    transition: opacity .2s;
}
.rt-section-link:hover { opacity: .75; }

.rt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.rt-tab {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    transition: all .2s;
}
.rt-tab:hover { color: var(--ink); background: #fff; }
.rt-tab.active {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 4px 12px var(--brand-glow);
}
.rt-tab-panel { display: none; }
.rt-tab-panel.is-active { display: block; animation: rtFade .35s var(--ease); }
@keyframes rtFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
    .rt-main-grid { grid-template-columns: 1fr; }
    .rt-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
    .rt-sidebar-promo { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .rt-sidebar { grid-template-columns: 1fr; }
}

/* â”€â”€ Product grid â”€â”€ */
.rt-section { padding: 1.5rem 0 2.25rem; }
.rt-section--alt { background: #fff; border-block: 1px solid var(--line); }
.rt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.rt-product-grid--5 { grid-template-columns: repeat(5, 1fr); }
.rt-product-grid--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1280px) {
    .rt-product-grid--6 { grid-template-columns: repeat(4, 1fr); }
    .rt-product-grid--5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .rt-product-grid,
    .rt-product-grid--5,
    .rt-product-grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .rt-product-grid,
    .rt-product-grid--5,
    .rt-product-grid--6 { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
}

/* â”€â”€ Product card (RETOOLS style) â”€â”€ */
.rt-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
}
.rt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139,21,56,.12);
}
.rt-card .img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(160deg, #fafbfc, #f0f2f5);
    overflow: hidden;
}
.rt-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.rt-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.1rem;
    transition: transform .5s var(--ease);
}
.rt-card:hover .img-wrap img { transform: scale(1.06); }

.rt-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 1.5rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: #22C55E;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(34,197,94,.35);
}
.rt-new-badge {
    display: inline-flex;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}
.rt-wish-btn {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 6;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(-4px);
    transition: all .25s var(--ease);
}
.rt-card:hover .rt-wish-btn { opacity: 1; transform: none; }
.rt-wish-btn:hover { color: var(--brand); }
.rt-quick-view {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%) translateY(8px);
    z-index: 6;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(11,18,33,.88);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0;
    transition: all .3s var(--ease);
    white-space: nowrap;
}
.rt-card:hover .rt-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
    .rt-wish-btn { opacity: 1; transform: none; }
    .rt-quick-view { display: none; }
}

.rt-card .card-body {
    padding: 0.75rem 0.85rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.rt-card-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.25rem;
}
.rt-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.15rem;
}
.rt-card-title a:hover { color: var(--brand); }
.rt-card-cat {
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rt-card-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
    font-size: 0.65rem;
    color: var(--muted);
}
.rt-card-prices {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: auto;
    padding-top: 0.35rem;
}
.rt-price-old {
    font-size: 0.72rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.rt-price-now {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.02em;
}

.rt-card-cart {
    display: flex;
    align-items: stretch;
    background: var(--brand);
    margin-top: auto;
}
.rt-card-cart--disabled { background: #9CA3AF; }
.rt-qty {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.15);
    flex-shrink: 0;
}
.rt-qty-btn {
    width: 1.85rem;
    height: 2.35rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.rt-qty-btn:hover { background: rgba(255,255,255,.12); }
.rt-qty-input {
    width: 1.6rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    -moz-appearance: textfield;
}
.rt-qty-input::-webkit-outer-spin-button,
.rt-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rt-add-btn {
    flex: 1;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0 0.65rem;
    transition: background .2s;
}
.rt-add-btn:hover { background: rgba(0,0,0,.12); }
.rt-add-btn--disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.65rem;
    cursor: default;
}

/* Hide old product-card actions on rt-card */
.rt-card .actions { display: none !important; }
.rt-card .badge-row { pointer-events: none; }

/* â”€â”€ Category picker â”€â”€ */
.rt-cat-picker {
    padding: 2.5rem 0;
    background: #fff;
    border-block: 1px solid var(--line);
    text-align: center;
}
.rt-cat-picker h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--ink);
}
.rt-cat-picker-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}
.rt-cat-picker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    background: #F8F9FB;
    border: 1px solid transparent;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    transition: all .3s var(--ease);
}
.rt-cat-picker-item:hover {
    background: #fff;
    border-color: rgba(139,21,56,.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: var(--brand);
}
.rt-cat-picker-icon {
    width: 3rem;
    height: 3rem;
    color: var(--ink);
    transition: color .25s;
}
.rt-cat-picker-icon svg { width: 100%; height: 100%; }
.rt-cat-picker-item:hover .rt-cat-picker-icon { color: var(--brand); }
@media (max-width: 900px) {
    .rt-cat-picker-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .rt-cat-picker-grid { grid-template-columns: repeat(2, 1fr); }
}

/* â”€â”€ Reviews â”€â”€ */
.rt-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.rt-review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-review-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.rt-review-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rt-review-card footer {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    font-size: 0.75rem;
}
.rt-review-card footer span { font-weight: 600; color: var(--ink); }
.rt-review-card footer a { color: var(--brand); font-weight: 500; }
@media (max-width: 1024px) {
    .rt-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .rt-reviews-grid { grid-template-columns: 1fr; }
}

/* â”€â”€ B2B â”€â”€ */
.rt-b2b {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.rt-b2b::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(139,21,56,.25);
    filter: blur(60px);
}
.rt-b2b > * { position: relative; z-index: 1; }
.rt-b2b h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.rt-b2b p {
    color: rgba(255,255,255,.6);
    max-width: 32rem;
    line-height: 1.55;
    font-size: 0.92rem;
}
.rt-b2b-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* â”€â”€ Footer â”€â”€ */
.rt-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 2.5rem 0 1.5rem;
    margin-top: 1rem;
}
.rt-footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.75rem;
}
.rt-footer-top .brand-logo-hex { border-color: var(--brand); color: var(--brand); }
.rt-footer-top .font-display { color: var(--ink) !important; }
.rt-footer-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}
.rt-social-btn {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: #F4F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all .2s;
}
.rt-social-btn:hover { background: var(--brand); color: #fff; }

.rt-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}
.rt-footer-col h4,
.rt-footer-newsletter h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.rt-footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.rt-footer-col a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color .2s;
}
.rt-footer-col a:hover { color: var(--brand); }
.rt-footer-newsletter {
    background: #F8F9FB;
    border-radius: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
}
.rt-footer-newsletter h4 { color: var(--brand); }
.rt-footer-newsletter p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}
.rt-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rt-newsletter-form input {
    height: 2.5rem;
    border-radius: 0.65rem;
    border: 1px solid var(--line);
    padding: 0 0.85rem;
    font-size: 0.85rem;
    background: #fff;
    outline: none;
}
.rt-newsletter-form input:focus { border-color: var(--brand); }
.rt-newsletter-form button {
    height: 2.5rem;
    border-radius: 0.65rem;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background .2s;
}
.rt-newsletter-form button:hover { background: var(--brand-dark); }

.rt-footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
}
.rt-pay-icons { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rt-pay-icons span {
    padding: 0.3rem 0.55rem;
    border-radius: 0.4rem;
    background: #F4F5F7;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink);
}

.rt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    color: var(--muted);
}
.rt-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.rt-footer-bottom a:hover { color: var(--brand); }

@media (max-width: 900px) {
    .rt-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .rt-footer-grid { grid-template-columns: 1fr; }
}

/* â”€â”€ Floating actions â”€â”€ */
.rt-floating {
    position: fixed;
    inset: auto 1rem 1rem 1rem;
    z-index: 90;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
}
.rt-floating-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    pointer-events: auto;
}
.rt-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(11,18,33,.18);
    transition: transform .25s var(--ease), box-shadow .25s;
}
.rt-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11,18,33,.22); }
.rt-fab svg { width: 1.25rem; height: 1.25rem; }
.rt-fab--cart {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #22C55E;
    color: #fff;
}
.rt-fab--set {
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: #4C1D95;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}
.rt-fab--wa {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
}
.rt-fab--wa svg { width: 1.6rem; height: 1.6rem; }
.rt-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #25D366;
    animation: rtPulse 2s ease-out infinite;
    z-index: -1;
}
@keyframes rtPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 768px) {
    .rt-floating { bottom: 4.5rem; }
    .rt-fab--set span,
    .rt-fab--set { font-size: 0.75rem; padding: 0.6rem 0.9rem; }
}

/* Hide legacy floating styles if present */
.whatsapp-fab { display: none !important; }

/* Mobile drawer brand colors */
.mobile-drawer { background: var(--ink); }
.mobile-drawer-header { background: var(--brand); }

/* Search input override for live search results styling */
#search-results.rt-search-results:not(.hidden) {
    display: block;
}

/* -------------------------------------------
   PRODUCT DETAIL PAGE (PDP)
   ------------------------------------------- */

.rt-product-page {
    padding: 1rem 0 6rem;
    background: #F4F5F7;
}

.rt-pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.15rem;
}
.rt-pdp-breadcrumb a { color: var(--muted); transition: color .2s; }
.rt-pdp-breadcrumb a:hover { color: var(--brand); }
.rt-pdp-breadcrumb span:last-child {
    color: var(--ink);
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rt-pdp-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr;
    gap: 1.15rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

/* Gallery */
.rt-pdp-gallery {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-pdp-main-img {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(160deg, #fafbfc, #f0f2f5);
    border-radius: 0.9rem;
    overflow: hidden;
    cursor: zoom-in;
}
.rt-pdp-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
    transition: transform .4s var(--ease);
}
.rt-pdp-main-img.zoomed img { transform: scale(1.35); cursor: zoom-out; }
.rt-pdp-discount {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: #22C55E;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(34,197,94,.35);
}
.rt-pdp-thumbs {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}
.rt-pdp-thumb {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 0.7rem;
    border: 2px solid transparent;
    background: #F8F9FB;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color .2s, box-shadow .2s;
}
.rt-pdp-thumb.is-active,
.rt-pdp-thumb.border-brand {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(139,21,56,.12);
}
.rt-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.3rem;
}

/* Buy panel */
.rt-pdp-buy {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-pdp-ship-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #8B1538, #B91C3C);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.rt-pdp-ship-banner svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.rt-pdp-brand {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.35rem;
}
.rt-pdp-title {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.rt-pdp-sku {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.65rem;
}
.rt-pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}
.rt-pdp-stars {
    display: flex;
    gap: 0.1rem;
}
.rt-pdp-stars svg {
    width: 1rem;
    height: 1rem;
    fill: #E5E7EB;
}
.rt-pdp-stars svg.is-on { fill: #FBBF24; }
.rt-pdp-rating-link {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: underline;
}
.rt-pdp-rating-link:hover { color: var(--brand); }

.rt-pdp-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.85rem;
}
.rt-pdp-price {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
}
.rt-pdp-price-old {
    font-size: 1rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.rt-pdp-price-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: #FEE2E2;
    color: var(--brand);
}
.rt-pdp-short {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.rt-pdp-qty-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}
.rt-pdp-qty-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}
.rt-pdp-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
}
.rt-pdp-qty button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    transition: background .15s;
}
.rt-pdp-qty button:hover { background: #F4F5F7; }
.rt-pdp-qty input {
    width: 2.75rem;
    height: 2.5rem;
    border: 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    -moz-appearance: textfield;
}
.rt-pdp-qty input::-webkit-outer-spin-button,
.rt-pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rt-pdp-qty--sm button { width: 2rem; height: 2rem; font-size: 0.95rem; }
.rt-pdp-qty--sm input { width: 2rem; height: 2rem; font-size: 0.8rem; }

.rt-pdp-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}
.rt-pdp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer;
}
.rt-pdp-btn:hover { transform: translateY(-1px); }
.rt-pdp-btn--cart {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 14px var(--brand-glow);
}
.rt-pdp-btn--cart:hover { background: var(--brand-dark); }
.rt-pdp-btn--buy {
    background: #FDF2F4;
    color: var(--brand);
    border: 1px solid rgba(139,21,56,.15);
}
.rt-pdp-btn--buy:hover { background: #FCE7EB; }
.rt-pdp-btn--sm {
    width: auto;
    min-height: 2.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
}
.rt-pdp-btn--submit { margin-top: 0.35rem; }

.rt-pdp-free-ship {
    border: 1.5px dashed rgba(139,21,56,.25);
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.15rem;
    background: #FFFAFB;
}
.rt-pdp-free-ship-bar {
    height: 0.35rem;
    background: #F3E8EB;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.55rem;
}
.rt-pdp-free-ship-fill {
    display: block;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), #C41E3A);
    border-radius: inherit;
}
.rt-pdp-free-ship p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
}
.rt-pdp-free-ship svg { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; }

.rt-pdp-out {
    padding: 1rem;
    border-radius: 0.85rem;
    background: #FEF2F2;
    color: #991B1B;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rt-pdp-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
}
.rt-pdp-share-links { display: flex; gap: 0.4rem; }
.rt-share-btn {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .2s;
}
.rt-share-btn:hover { transform: scale(1.08); }
.rt-share-btn svg { width: 0.95rem; height: 0.95rem; }
.rt-share-fb { background: #1877F2; }
.rt-share-x { background: #111; }
.rt-share-mail { background: #6B7280; }
.rt-share-wa { background: #25D366; }

/* Aside */
.rt-pdp-aside {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.rt-pdp-aside-card {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-pdp-aside-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.rt-pdp-carriers { display: flex; flex-direction: column; gap: 0.75rem; }
.rt-pdp-carriers li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
}
.rt-pdp-carriers li:last-child { border-bottom: 0; padding-bottom: 0; }
.rt-pdp-carrier-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
}
.rt-pdp-carrier-info span {
    font-size: 0.75rem;
    color: var(--muted);
}
.rt-pdp-carrier-free {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #16A34A;
    white-space: nowrap;
}

.rt-pdp-trust {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1rem;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.rt-pdp-trust-item {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.rt-pdp-trust-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    background: #FDF2F4;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rt-pdp-trust-icon svg { width: 1.15rem; height: 1.15rem; }
.rt-pdp-trust-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.15rem;
}
.rt-pdp-trust-item a {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563EB;
}
.rt-pdp-trust-item a:hover { text-decoration: underline; }

.rt-pdp-wa-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    transition: transform .2s;
}
.rt-pdp-wa-card:hover { transform: translateY(-2px); }
.rt-pdp-wa-card svg { width: 1.5rem; height: 1.5rem; color: #25D366; flex-shrink: 0; }
.rt-pdp-wa-card strong { display: block; font-size: 0.85rem; font-weight: 700; }
.rt-pdp-wa-card span { font-size: 0.75rem; opacity: .8; }

/* Description + Reviews */
.rt-pdp-bottom {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 1.15rem;
    margin-bottom: 2rem;
}
.rt-pdp-desc-card,
.rt-pdp-reviews-card {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.rt-pdp-desc-card h2,
.rt-pdp-reviews-card h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--ink);
}
.rt-pdp-desc-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 1.25rem 0 0.65rem;
    color: var(--ink);
}
.rt-pdp-desc-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4B5563;
}
.rt-pdp-desc-body strong,
.rt-pdp-desc-body b { color: var(--brand); font-weight: 700; }
.rt-pdp-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-left: 1.1rem;
    list-style: disc;
}
.rt-pdp-bullets li {
    font-size: 0.88rem;
    color: #4B5563;
    line-height: 1.5;
}

.rt-pdp-review-summary { margin-bottom: 1.25rem; }
.rt-pdp-review-score {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}
.rt-pdp-review-score span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}
.rt-pdp-bars { display: flex; flex-direction: column; gap: 0.35rem; }
.rt-pdp-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted);
}
.rt-pdp-bar-row span { width: 0.75rem; }
.rt-pdp-bar {
    flex: 1;
    height: 0.45rem;
    background: #E5E7EB;
    border-radius: 999px;
    overflow: hidden;
}
.rt-pdp-bar i {
    display: block;
    height: 100%;
    background: #FBBF24;
    border-radius: inherit;
}

.rt-pdp-review-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
}
.rt-pdp-review-form { display: flex; flex-direction: column; gap: 0.75rem; }
.rt-pdp-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.rt-pdp-field input,
.rt-pdp-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.88rem;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}
.rt-pdp-field input:focus,
.rt-pdp-field textarea:focus { border-color: var(--brand); }
.rt-pdp-field textarea { resize: vertical; min-height: 7rem; }
.rt-pdp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.rt-pdp-rate-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.15rem;
}
.rt-pdp-rate-input label { cursor: pointer; margin: 0; }
.rt-pdp-rate-input input { display: none; }
.rt-pdp-rate-input svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: #E5E7EB;
    transition: fill .15s;
}
.rt-pdp-rate-input label:hover svg,
.rt-pdp-rate-input label:hover ~ label svg,
.rt-pdp-rate-input input:checked ~ label svg,
.rt-pdp-rate-input input:checked + svg,
.rt-pdp-rate-input label:has(input:checked) svg,
.rt-pdp-rate-input label:has(input:checked) ~ label svg {
    fill: #FBBF24;
}

.rt-pdp-review-list {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.rt-pdp-review-list-head h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}
.rt-pdp-no-reviews {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 0.5rem 0;
}
.rt-pdp-review-items { display: flex; flex-direction: column; gap: 0.85rem; }
.rt-pdp-review-item {
    padding: 0.9rem;
    border-radius: 0.85rem;
    background: #F8F9FB;
    border: 1px solid var(--line);
}
.rt-pdp-review-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}
.rt-pdp-review-item-head strong { font-size: 0.85rem; }
.rt-pdp-review-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.rt-pdp-review-item p {
    font-size: 0.85rem;
    color: #4B5563;
    line-height: 1.5;
}
.rt-pdp-review-item time {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: #9CA3AF;
}

.rt-pdp-similar { margin-top: 0.5rem; }

/* Sticky bar */
.rt-pdp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(11,18,33,.08);
    padding: 0.65rem 0;
}
.rt-pdp-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.rt-pdp-sticky-left,
.rt-pdp-sticky-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.rt-pdp-sticky-set {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #4C1D95;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.rt-pdp-sticky-set svg { width: 0.95rem; height: 0.95rem; }
.rt-pdp-sticky-product {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}
.rt-pdp-sticky-product img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: 0.45rem;
    background: #F4F5F7;
    flex-shrink: 0;
}
.rt-pdp-sticky-product span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.rt-pdp-sticky-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .rt-pdp-top { grid-template-columns: 1fr 1fr; }
    .rt-pdp-aside { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
    .rt-pdp-wa-card { grid-column: 1 / -1; }
}
@media (max-width: 800px) {
    .rt-pdp-top { grid-template-columns: 1fr; }
    .rt-pdp-aside { grid-template-columns: 1fr; }
    .rt-pdp-bottom { grid-template-columns: 1fr; }
    .rt-pdp-field-row { grid-template-columns: 1fr; }
    .rt-product-page { padding-bottom: 8.5rem; }
    .rt-pdp-sticky { bottom: calc(var(--mobile-nav-h, 3.75rem) + var(--safe-bottom, 0px)); }
    .rt-pdp-sticky-inner { flex-direction: column; align-items: stretch; gap: 0.55rem; }
    .rt-pdp-sticky-left { justify-content: space-between; }
    .rt-pdp-sticky-right { justify-content: flex-end; flex-wrap: wrap; }
    .rt-pdp-sticky-product span { max-width: 140px; }
    .rt-pdp-sticky-set { display: none; }
}
@media (max-width: 480px) {
    .rt-pdp-sticky-product { display: none; }
    .rt-pdp-btn--sm { flex: 1; }
}

/* Hide legacy sticky on product page */
.rt-product-page ~ .product-sticky-bar,
.product-sticky-bar { display: none !important; }

/* Body padding when sticky present */
body:has(.rt-pdp-sticky) .rt-floating { bottom: 5rem; }
@media (max-width: 800px) {
    body:has(.rt-pdp-sticky) .rt-floating { bottom: 9rem; }
}

/* -------------------------------------------
   CONTACT PAGE
   ------------------------------------------- */

.rt-contact-page {
    padding: 1.5rem 0 3.5rem;
    background: #F4F5F7;
}

.rt-contact-hero {
    text-align: center;
    margin-bottom: 1.75rem;
}
.rt-contact-hero h1 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 0.5rem;
}
.rt-contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.rt-contact-breadcrumb a { color: var(--muted); }
.rt-contact-breadcrumb a:hover { color: var(--brand); }
.rt-contact-breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

.rt-contact-alert {
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.rt-contact-alert--error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.rt-contact-alert--success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }

.rt-contact-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.rt-contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 7rem;
}

.rt-contact-side-nav {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.rt-contact-side-link {
    padding: 0.9rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition: background .15s, color .15s;
}
.rt-contact-side-link:last-child { border-bottom: 0; }
.rt-contact-side-link:hover { background: #F8F9FB; color: var(--brand); }
.rt-contact-side-link.is-active {
    color: var(--brand);
    font-weight: 700;
    background: #FDF2F4;
}

.rt-contact-info-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rt-contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}
.rt-contact-info-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: #FDF2F4;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rt-contact-info-icon svg { width: 1.1rem; height: 1.1rem; }
.rt-contact-info-row small {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
}
.rt-contact-info-row strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    word-break: break-all;
}
.rt-contact-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 0.25rem;
    transition: transform .2s;
}
.rt-contact-wa:hover { transform: translateY(-1px); color: #fff; }

.rt-contact-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.rt-contact-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.rt-contact-map {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: #E5E7EB;
    min-height: 260px;
}
.rt-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}
.rt-contact-map-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,.95);
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
}

.rt-contact-form-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.5rem 1.75rem;
}
.rt-contact-form-card h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 1.25rem;
}

.rt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 36rem;
}
.rt-contact-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.rt-contact-field label span {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.8rem;
}
.rt-contact-field input,
.rt-contact-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-size: 0.9rem;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.rt-contact-field textarea {
    border-radius: 1.15rem;
    min-height: 8rem;
    resize: vertical;
}
.rt-contact-field input:focus,
.rt-contact-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.rt-contact-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--ink);
    cursor: pointer;
    line-height: 1.4;
}
.rt-contact-check input {
    margin-top: 0.2rem;
    accent-color: var(--brand);
    flex-shrink: 0;
}
.rt-contact-check a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
}

.rt-contact-submit {
    align-self: flex-start;
    padding: 0.7rem 1.75rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px var(--brand-glow);
    transition: background .2s, transform .2s;
    cursor: pointer;
    border: 0;
}
.rt-contact-submit:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.rt-contact-faq {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 1.35rem 1.5rem;
}
.rt-contact-faq h2 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--ink);
}
.rt-contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rt-contact-faq-item {
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: #F8F9FB;
    overflow: hidden;
}
.rt-contact-faq-item summary {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.rt-contact-faq-item summary::-webkit-details-marker { display: none; }
.rt-contact-faq-item[open] summary { color: var(--brand); }
.rt-contact-faq-item p {
    padding: 0 1rem 0.9rem;
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}

@media (max-width: 960px) {
    .rt-contact-layout { grid-template-columns: 1fr; }
    .rt-contact-side { position: static; }
    .rt-contact-side-nav { flex-direction: row; flex-wrap: wrap; }
    .rt-contact-side-link {
        border-bottom: 0;
        border-right: 1px solid var(--line);
        flex: 1 1 auto;
        text-align: center;
        padding: 0.75rem 0.85rem;
        font-size: 0.8rem;
    }
}
@media (max-width: 700px) {
    .rt-contact-maps { grid-template-columns: 1fr; }
    .rt-contact-form-card { padding: 1.15rem; }
}

/* Mobile header layout */
.rt-mobile-only { display: none; }
.rt-desktop-only { display: flex; }
.rt-header-logo { min-width: 0; }

.rt-side-cat-icon img,
.rt-cat-picker-icon img,
.rt-mobile-cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1023px) {
    .rt-utility { display: none; }
    .rt-mobile-only { display: flex; }
    .rt-desktop-only { display: none !important; }
    .rt-header-row {
        display: grid;
        grid-template-columns: 2.5rem 1fr 2.5rem;
        align-items: center;
        gap: 0.5rem;
        padding: 0.65rem 0;
    }
    .rt-header-logo {
        display: flex;
        justify-content: center;
    }
    .rt-header-logo .brand-logo span:last-child,
    .rt-header-logo .font-display { font-size: 1.15rem; }
    .rt-header-actions { justify-content: flex-end; }
    .rt-search { display: none; }
    .rt-nav { display: none; }
    .rt-hero-grid { grid-template-columns: 1fr; }
    .rt-promo-banner,
    .rt-side-cats { display: none; }
    .rt-hero-main { min-height: 220px; border-radius: 0; }
    .rt-hero-section { padding: 0; }
    .rt-hero-section .site-container { padding-left: 0; padding-right: 0; max-width: none; }
    .rt-offer-inner { grid-template-columns: 1fr; padding: 1rem; }
    .rt-offer-cards { grid-template-columns: 1fr 1fr; }
    .rt-main-grid { grid-template-columns: 1fr; }
    .rt-sidebar { display: none; }
    .rt-product-grid,
    .rt-product-grid--5,
    .rt-product-grid--6 { grid-template-columns: 1fr 1fr; }
}

.rt-mobile-cats {
    padding: 1rem 0 0.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.rt-mobile-cats-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.rt-mobile-cats-dot {
    width: 0.55rem;
    height: 0.85rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #7C3AED, #8B1538);
    display: inline-block;
}
.rt-mobile-cats-track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.rt-mobile-cat-item {
    flex: 0 0 auto;
    width: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink);
}
.rt-mobile-cat-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 999px;
    background: #F4F5F7;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem;
    overflow: hidden;
}
.rt-mobile-cat-icon svg { width: 100%; height: 100%; }

@media (min-width: 1024px) {
    .rt-mobile-cats { display: none; }
}

/* Category / catalog page header (no colored background) */
.rt-cat-page {
    padding: 1.25rem 0 2.5rem;
    background: #F4F5F7;
}
.rt-cat-head {
    text-align: center;
    margin-bottom: 1.25rem;
    background: transparent;
    padding: 0.5rem 0 0.25rem;
}
.rt-cat-head h1 {
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 0.4rem;
}
.rt-cat-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.rt-cat-breadcrumb a { color: var(--muted); }
.rt-cat-breadcrumb a:hover { color: var(--brand); }
.rt-cat-breadcrumb span:last-child { color: var(--ink); font-weight: 600; }
.rt-cat-desc {
    margin: 0.65rem auto 0;
    max-width: 36rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}
.rt-cat-count {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 1rem;
}
.rt-cat-subnav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem 1.25rem;
    overflow-x: auto;
    padding: 0.35rem 0 1.15rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: transparent;
}
.rt-cat-subnav::-webkit-scrollbar { display: none; }
.rt-cat-subnav-link {
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0.35rem 0;
    white-space: nowrap;
    background: transparent;
    border: 0;
    transition: color .15s;
}
.rt-cat-subnav-link:hover { color: var(--brand); }

/* Mobile featured categories — no colored panel */
.rt-mobile-cats {
    background: transparent !important;
    border-bottom: 1px solid var(--line);
}
