/* =============================================================
   Red River Traders — Main Stylesheet
   All custom styles. Brand CSS variables are in style.css.
   ============================================================= */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--rrt-font-body);
    color: var(--rrt-ink);
    background: var(--rrt-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--rrt-font-head); letter-spacing: .4px; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: var(--rrt-font-body); }
input:focus, button:focus, a:focus, select:focus, textarea:focus {
    outline: 2px solid var(--rrt-red);
    outline-offset: 2px;
}
ul { list-style: none; }

/* ── Skip Link ────────────────────────────────────────────── */
.rrt-skip-link {
    position: absolute; top: -100%; left: 1rem; z-index: 9999;
    background: var(--rrt-red); color: #fff;
    padding: .75rem 1.5rem; border-radius: 0 0 8px 8px; font-weight: 700;
    transition: top .2s;
}
.rrt-skip-link:focus { top: 0; }

/* ── Layout Helpers ───────────────────────────────────────── */
.rrt-container       { max-width: var(--rrt-content-w); margin: 0 auto; padding: 0 5%; }
.rrt-container--wide { max-width: var(--rrt-max-w);     margin: 0 auto; padding: 0 5%; }
.rrt-section         { padding: 88px 5%; }
.rrt-section--cream  { background: var(--rrt-cream); }
.rrt-section--dark   { background: var(--rrt-ink); }
.rrt-section__header { text-align: center; margin-bottom: 52px; }
.rrt-section__footer { text-align: center; margin-top: 40px; }

/* Section label (eyebrow) */
.rrt-section__label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--rrt-red); display: flex; align-items: center; gap: 10px;
    justify-content: center; margin-bottom: 12px;
}
.rrt-section__label::before,
.rrt-section__label::after { content: ''; width: 28px; height: 2px; background: var(--rrt-red); }

.rrt-section__title { font-size: clamp(34px, 4vw, 56px); line-height: 1.02; }
.rrt-section__sub   { font-size: 16px; color: var(--rrt-mid); line-height: 1.8; max-width: 520px; margin: 14px auto 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.rrt-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px; border-radius: 4px; border: none; cursor: pointer;
    font-family: var(--rrt-font-body); font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
    transition: all .2s; white-space: nowrap;
}
.rrt-btn--red          { background: var(--rrt-red);   color: #fff; }
.rrt-btn--red:hover    { background: var(--rrt-red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,40,.4); color: #fff; }
.rrt-btn--dark         { background: var(--rrt-ink);   color: #fff; }
.rrt-btn--dark:hover   { background: #000; }
.rrt-btn--ghost        { background: transparent; color: var(--rrt-ink); border: 2px solid var(--rrt-border); }
.rrt-btn--ghost:hover  { border-color: var(--rrt-ink); background: var(--rrt-ink); color: #fff; }
.rrt-btn--outline-white{ background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.rrt-btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ── Badges ───────────────────────────────────────────────── */
.rrt-badge {
    display: inline-flex; align-items: center;
    font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 2px;
}
.rrt-badge--sale { background: var(--rrt-red);  color: #fff; }
.rrt-badge--new  { background: var(--rrt-teal); color: #fff; }

/* ── Animations ───────────────────────────────────────────── */
.rrt-reveal       { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.rrt-reveal.is-visible { opacity: 1; transform: none; }
.rrt-reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.rrt-reveal-left.is-visible  { opacity: 1; transform: none; }
.rrt-reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.rrt-reveal-right.is-visible { opacity: 1; transform: none; }

/* ── Announcement Bar ─────────────────────────────────────── */
.rrt-announcement-bar {
    background: var(--rrt-ink); color: #fff;
    font-size: 13px; font-weight: 500; text-align: center; padding: 10px 5%;
}
.rrt-announcement-bar__inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.rrt-announcement-bar__close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; padding: 2px; }

/* ── Header ───────────────────────────────────────────────── */
.rrt-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rrt-border);
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: box-shadow .3s;
    height: var(--rrt-header-h);
}
.rrt-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--rrt-header-h);
}
.rrt-header__logo .custom-logo { height: 64px; width: auto; display: block; }
.rrt-header__site-name { font-family: var(--rrt-font-head); font-size: 24px; color: var(--rrt-red); }

/* Primary nav */
.rrt-nav__list { display: flex; align-items: center; gap: 28px; }
.rrt-nav__list li a {
    font-size: 13px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase;
    color: var(--rrt-ink); transition: color .2s; position: relative; padding-bottom: 3px;
}
.rrt-nav__list li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--rrt-red); transition: width .25s;
}
.rrt-nav__list li a:hover,
.rrt-nav__list li.current-menu-item > a,
.rrt-nav__list li.current-menu-ancestor > a { color: var(--rrt-red); }
.rrt-nav__list li a:hover::after,
.rrt-nav__list li.current-menu-item > a::after { width: 100%; }

/* Dropdown sub-menu */
.rrt-nav__list li { position: relative; }
.rrt-nav__list .sub-menu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
    background: #fff; border: 1px solid var(--rrt-border); border-radius: 8px;
    box-shadow: var(--rrt-shadow); padding: 8px 0; z-index: 100;
}
.rrt-nav__list li:hover > .sub-menu,
.rrt-nav__list li:focus-within > .sub-menu { display: block; }
.rrt-nav__list .sub-menu li a { display: block; padding: 10px 18px; font-size: 13px; }

/* Header actions */
.rrt-header__actions { display: flex; align-items: center; gap: 14px; }
.rrt-header__search-btn { background: none; border: none; color: var(--rrt-mid); cursor: pointer; padding: 4px; transition: color .2s; }
.rrt-header__search-btn:hover { color: var(--rrt-red); }

.rrt-header__cart {
    display: flex; align-items: center; gap: 8px;
    background: var(--rrt-red); color: #fff;
    border-radius: 50px; padding: 9px 20px;
    font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    transition: background .2s; text-decoration: none;
}
.rrt-header__cart:hover { background: var(--rrt-red2); color: #fff; }
.rrt-cart-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.25); border-radius: 50%;
    width: 22px; height: 22px; font-size: 11px; font-weight: 800; margin-left: 2px;
    transition: background .3s;
}
.rrt-cart-count:empty::before { content: '0'; }

.rrt-header__mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--rrt-ink); padding: 4px; }

/* Search panel */
.rrt-search-panel {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    padding: 20px 0; border-top: 1px solid var(--rrt-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1); display: none;
}
.rrt-search-panel.is-open { display: block; }
.rrt-search-panel .search-form { display: flex; gap: 8px; max-width: 560px; margin: 0 auto; }
.rrt-search-panel .search-field {
    flex: 1; padding: 12px 16px; border: 1.5px solid var(--rrt-border);
    border-radius: 8px; font-size: 15px; outline: none; transition: border .2s;
}
.rrt-search-panel .search-field:focus { border-color: var(--rrt-red); }
.rrt-search-panel .search-submit {
    background: var(--rrt-red); color: #fff; border: none; border-radius: 8px;
    padding: 12px 24px; font-weight: 700; cursor: pointer; transition: background .2s;
}
.rrt-search-panel .search-submit:hover { background: var(--rrt-red2); }

/* Mobile nav drawer */
.rrt-mobile-nav {
    position: fixed; top: 0; left: 0; width: 300px; height: 100%; height: 100dvh; z-index: 1002;
    background: #fff; transform: translateX(-100%); transition: transform .3s ease;
    overflow-y: auto; display: flex; flex-direction: column;
}
.rrt-mobile-nav.is-open { transform: translateX(0); }
.rrt-mobile-nav__overlay {
    display: none; position: fixed; inset: 0; z-index: 1001;
    background: rgba(0,0,0,.5); backdrop-filter: blur(3px);
}
.rrt-mobile-nav__overlay.is-visible { display: block; }
.rrt-mobile-nav__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px; border-bottom: 1px solid var(--rrt-border);
}
.rrt-mobile-nav__title { font-family: var(--rrt-font-head); font-size: 22px; }
.rrt-mobile-nav__close { background: none; border: none; cursor: pointer; padding: 4px; color: var(--rrt-mid); }
.rrt-mobile-nav__list { flex: 1; padding: 16px 0; }
.rrt-mobile-nav__list li a { display: block; padding: 14px 20px; font-size: 14px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; border-bottom: 1px solid var(--rrt-sand); }
.rrt-mobile-nav__list li a:hover { color: var(--rrt-red); background: var(--rrt-cream); }
.rrt-mobile-nav__footer { padding: 20px; border-top: 1px solid var(--rrt-border); }

/* body padding for fixed header */
body { padding-top: var(--rrt-header-h); }

/* ── Hero ─────────────────────────────────────────────────── */
.rrt-hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; overflow: hidden;
    background: var(--rrt-ink);
}
.rrt-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.rrt-hero__overlay { position: absolute; inset: 0; background: var(--rrt-ink); }
.rrt-hero__content { position: relative; z-index: 2; padding: 0 8%; max-width: 700px; }
.rrt-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9);
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.rrt-hero__heading {
    font-size: clamp(64px, 9vw, 120px); line-height: .9; color: #fff; margin-bottom: 24px;
}
.rrt-hero__heading--accent { color: var(--rrt-red3); }
.rrt-hero__subheading { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 460px; margin-bottom: 36px; }
.rrt-hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.rrt-hero__scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.rrt-hero__scroll-line {
    width: 1px; height: 40px; background: rgba(255,255,255,.3);
    animation: rrtScrollLine 1.5s ease-in-out infinite;
}
@keyframes rrtScrollLine {
    0%,100%{transform:scaleY(0);transform-origin:top}
    50%{transform:scaleY(1);transform-origin:top}
}

/* ── Trust Strip ──────────────────────────────────────────── */
.rrt-trust-strip { background: var(--rrt-ink); padding: 18px 5%; }
.rrt-trust-strip__inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
}
.rrt-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.rrt-trust-item svg { color: var(--rrt-red3); flex-shrink: 0; }

/* ── Category Cards ───────────────────────────────────────── */
.rrt-categories__grid {
    display: grid;
    grid-template-columns: repeat(var(--rrt-cat-cols, 4), 1fr);
    gap: 20px; max-width: var(--rrt-content-w); margin: 0 auto;
}
.rrt-cat-card { position: relative; border-radius: 14px; overflow: hidden; display: block; aspect-ratio: 3/4; }
.rrt-cat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rrt-cat-card:hover .rrt-cat-card__img { transform: scale(1.06); }
.rrt-cat-card__overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    display: flex; flex-direction: column; gap: 4px;
}
.rrt-cat-card__name { font-family: var(--rrt-font-head); font-size: 24px; color: #fff; }
.rrt-cat-card__cta  { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 600; }
.rrt-categories__empty { text-align: center; padding: 40px; color: var(--rrt-mid); }

/* ── Product Grid ─────────────────────────────────────────── */
.rrt-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; max-width: var(--rrt-content-w); margin: 0 auto;
}
.rrt-products-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
.rrt-products-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }

/* Product card */
.rrt-product-card {
    background: var(--rrt-cream); border-radius: 14px; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.rrt-product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.rrt-product-card__media { position: relative; display: block; overflow: hidden; }
.rrt-product-card__img-wrap { position: relative; display: block; aspect-ratio: 1; background: #111; overflow: hidden; }
.rrt-product-card__img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .4s; }
.rrt-product-card:hover .rrt-product-card__img { transform: scale(1.06); }
.rrt-product-card__quick-add {
    position: absolute; bottom: 0; left: 0; right: 0; width: 100%; background: var(--rrt-ink);
    color: #fff; padding: 12px; text-align: center; font-size: 12px; font-weight: 700; border: none; cursor: pointer;
    letter-spacing: 2px; text-transform: uppercase; transform: translateY(100%); transition: transform .3s, background .2s; z-index: 2;
}
.rrt-product-card__quick-add:hover { background: var(--rrt-red); }
.rrt-product-card:hover .rrt-product-card__quick-add { transform: translateY(0); }
.rrt-product-card__info { padding: 16px 18px 22px; }
.rrt-product-card__cat  { font-size: 10px; color: var(--rrt-teal); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.rrt-product-card__title { font-family: var(--rrt-font-head); font-size: 20px; margin-bottom: 6px; line-height: 1.1; }
.rrt-product-card__title a { color: var(--rrt-ink); }
.rrt-product-card__title a:hover { color: var(--rrt-red); }
.rrt-product-card__excerpt { font-size: 13px; color: var(--rrt-mid); line-height: 1.6; margin-bottom: 12px; }
.rrt-product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.rrt-product-card__price { font-size: 20px; font-weight: 700; }
.rrt-product-card__price del { font-size: 13px; color: #aaa; font-weight: 400; margin-right: 4px; }
.rrt-product-card__price ins { text-decoration: none; }
.rrt-products-empty { text-align: center; padding: 60px 20px; }

/* ── Why Us ───────────────────────────────────────────────── */
.rrt-whyus__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--rrt-border); border-radius: 16px; overflow: hidden;
    max-width: 1100px; margin: 0 auto;
}
.rrt-whyus__item {
    padding: 44px 40px; border-right: 1px solid var(--rrt-border); border-bottom: 1px solid var(--rrt-border);
    transition-delay: var(--delay, 0s);
}
.rrt-whyus__item:nth-child(2n)     { border-right: none; }
.rrt-whyus__item:nth-last-child(-n+2) { border-bottom: none; }
.rrt-whyus__num   { font-family: var(--rrt-font-head); font-size: 52px; color: var(--rrt-red); opacity: .12; line-height: 1; margin-bottom: -6px; }
.rrt-whyus__title { font-size: 24px; margin-bottom: 10px; }
.rrt-whyus__desc  { font-size: 14px; color: var(--rrt-mid); line-height: 1.85; }

/* ── Stats Bar ────────────────────────────────────────────── */
.rrt-stats-bar { background: var(--rrt-red); padding: 64px 5%; }
.rrt-stats-bar__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto; text-align: center;
}
.rrt-stats-bar__item { transition-delay: var(--delay, 0s); }
.rrt-stats-bar__num   { font-family: var(--rrt-font-head); font-size: clamp(40px,5vw,64px); color: #fff; line-height: 1; }
.rrt-stats-bar__label { font-size: 11px; color: rgba(255,255,255,.75); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.rrt-cta-banner { background: var(--rrt-ink); padding: 88px 5%; }
.rrt-cta-banner__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rrt-cta-banner__label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.rrt-cta-banner__heading { font-size: clamp(36px,4vw,64px); color: #fff; margin-bottom: 18px; }
.rrt-cta-banner__body { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.9; margin-bottom: 28px; }
.rrt-cta-banner__image { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; background: #1a1a1a; }
.rrt-cta-banner__image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.rrt-cta-banner__image--placeholder { display: flex; align-items: center; justify-content: center; border: 2px dashed rgba(255,255,255,.2); }
.rrt-cta-banner__image--placeholder p { color: rgba(255,255,255,.5); font-size: 14px; text-align: center; padding: 20px; }

/* ── Footer ───────────────────────────────────────────────── */
.rrt-footer { background: #0A0606; color: rgba(255,255,255,.6); padding-top: 70px; }
.rrt-footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.rrt-footer__brand .custom-logo { height: 40px; width: auto; display: block; background: #fff; padding: 9px 13px; border-radius: 10px; margin-bottom: 16px; }
.rrt-footer__logo-img { height: 46px; width: auto; display: block; margin-bottom: 16px; }
.rrt-footer__tagline { font-size: 14px; line-height: 1.85; max-width: 270px; margin-bottom: 18px; }
.rrt-footer__addresses { display: flex; flex-direction: column; gap: 14px; }
.rrt-footer__address { font-style: normal; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.45); }
.rrt-footer__addr-label { display: block; color: rgba(255,255,255,.7); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.rrt-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.rrt-footer__social-link { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: background .2s, color .2s; }
.rrt-footer__social-link:hover { background: var(--rrt-red); color: #fff; }
.rrt-footer__nav-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 20px; font-family: var(--rrt-font-body); }
.rrt-footer__nav-list { display: flex; flex-direction: column; gap: 11px; }
.rrt-footer__nav-list a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.rrt-footer__nav-list a:hover { color: rgba(255,120,120,.9); }
.rrt-footer__bottom { padding: 22px 0; }
.rrt-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(255,255,255,.5); }
.rrt-footer__legal-links { display: flex; gap: 22px; }
.rrt-footer__legal-links a { font-size: 12px; color: rgba(255,255,255,.5); transition: color .2s; }
.rrt-footer__legal-links a:hover { color: rgba(255,120,120,.9); }
.rrt-footer__ssl { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,.35); }
.rrt-footer__copyright { font-size: 12px; }
.rrt-footer__credit { text-align: center; font-size: 12px; color: rgba(255,255,255,.4); margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.rrt-footer__credit a { color: rgba(255,255,255,.72); font-weight: 600; transition: color .2s; }
.rrt-footer__credit a:hover { color: #fff; }

/* ── Pagination ───────────────────────────────────────────── */
.rrt-pagination { display: flex; justify-content: center; gap: 8px; margin: 48px 0; flex-wrap: wrap; }
.rrt-pagination .page-numbers {
    width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--rrt-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; transition: all .2s; color: var(--rrt-ink);
}
.rrt-pagination .page-numbers:hover,
.rrt-pagination .page-numbers.current { background: var(--rrt-red); color: #fff; border-color: var(--rrt-red); }

/* ── Generic page ─────────────────────────────────────────── */
.rrt-page-content { max-width: 860px; margin: 0 auto; padding: 60px 5%; }
.rrt-page-content h1 { font-size: clamp(36px,5vw,64px); margin-bottom: 24px; }
.rrt-page-content p  { font-size: 15px; color: var(--rrt-mid); line-height: 1.9; margin-bottom: 16px; }
.rrt-page-content h2 { font-size: 32px; color: var(--rrt-red); margin: 32px 0 14px; }
.rrt-page-content h3 { font-size: 22px; font-weight: 700; font-family: var(--rrt-font-body); margin: 24px 0 10px; }
.rrt-page-content ul { padding-left: 22px; margin-bottom: 16px; list-style: disc; }
.rrt-page-content ul li { font-size: 15px; color: var(--rrt-mid); line-height: 1.9; margin-bottom: 6px; }

/* ── 404 ──────────────────────────────────────────────────── */
.rrt-404 { text-align: center; padding: 120px 5%; }
.rrt-404__code { font-family: var(--rrt-font-head); font-size: 160px; line-height: 1; color: var(--rrt-sand); margin-bottom: -20px; }
.rrt-404 h1 { font-size: 48px; margin-bottom: 16px; }
.rrt-404 p  { font-size: 16px; color: var(--rrt-mid); margin-bottom: 32px; }

/* ── Shop page ────────────────────────────────────────────── */
.rrt-wc-main { display: block; }
.rrt-shop-hero { background: var(--rrt-ink); padding: 60px 5%; text-align: center; position: relative; overflow: hidden; }
.rrt-shop-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(139,26,40,.18) 0%, transparent 60%); }
.rrt-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rrt-red3); display: block; margin-bottom: 14px; position: relative; }
.rrt-shop-title { font-size: clamp(40px,6vw,80px); color: #fff; line-height: .95; position: relative; margin-bottom: 16px; }
.rrt-shop-sub  { font-size: 16px; color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; line-height: 1.75; position: relative; }

/* Breadcrumb */
.rrt-breadcrumb { padding: 14px 5%; background: var(--rrt-cream); border-bottom: 1px solid var(--rrt-border); }
.rrt-bc-list { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--rrt-mid); flex-wrap: wrap; list-style: none; }
.rrt-bc-sep  { color: var(--rrt-border); margin: 0 4px; }
.rrt-bc-item a { color: var(--rrt-mid); transition: color .2s; }
.rrt-bc-item a:hover { color: var(--rrt-red); }

/* WC form elements */
.rrt-wc-page .woocommerce-ordering select,
.rrt-wc-page .woocommerce-result-count { padding: 10px 14px; border: 1.5px solid var(--rrt-border); border-radius: 8px; font-size: 14px; background: #fff; outline: none; }
.rrt-wc-page .woocommerce-ordering select:focus { border-color: var(--rrt-red); }

/* ── Form elements (contact, checkout) ───────────────────── */
.rrt-form-group { margin-bottom: 18px; }
.rrt-form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rrt-mid); margin-bottom: 8px; }
.rrt-form-group input,
.rrt-form-group select,
.rrt-form-group textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--rrt-border);
    border-radius: 8px; font-size: 15px; background: var(--rrt-cream); color: var(--rrt-ink);
    outline: none; transition: border .2s, box-shadow .2s; font-family: var(--rrt-font-body);
}
.rrt-form-group input:focus,
.rrt-form-group select:focus,
.rrt-form-group textarea:focus { border-color: var(--rrt-red); box-shadow: 0 0 0 3px rgba(139,26,40,.1); }
.rrt-form-group textarea { height: 120px; resize: vertical; }

/* ── Reveal with delay support ────────────────────────────── */
.rrt-reveal[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Tablet (max 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
    .rrt-products-grid { grid-template-columns: repeat(2, 1fr); }
    .rrt-categories__grid { --rrt-cat-cols: 2 !important; }
    .rrt-whyus__grid { grid-template-columns: 1fr; }
    .rrt-whyus__item { border-right: none; }
    .rrt-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .rrt-cta-banner__grid { grid-template-columns: 1fr; }
    .rrt-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (max 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
    :root { --rrt-header-h: 64px; }
    .rrt-header__nav { display: none; }
    .rrt-header__mobile-toggle { display: flex; }
    .rrt-header__cart-label { display: none; }
    .rrt-header__logo .custom-logo { height: 44px; }
    .rrt-header__site-name { font-size: 20px; }
    .rrt-header__actions { gap: 8px; }
    .rrt-header__cart { padding: 8px 12px; }
    .rrt-mobile-nav { width: min(320px, 86vw); }
    .rrt-announcement-bar__inner { font-size: 12px; gap: 8px; }

    .rrt-hero { min-height: 90vh; min-height: 90svh; }
    .rrt-hero__heading { font-size: 52px; }
    .rrt-hero__content { padding: 0 5%; }
    .rrt-hero__buttons { flex-direction: column; align-items: stretch; }
    .rrt-hero__buttons .rrt-btn { justify-content: center; text-align: center; }

    .rrt-trust-strip__inner { flex-direction: column; align-items: flex-start; gap: 10px; }

    .rrt-products-grid { grid-template-columns: 1fr; }
    .rrt-products-grid[data-columns="2"],
    .rrt-products-grid[data-columns="3"],
    .rrt-products-grid[data-columns="4"] { grid-template-columns: repeat(2, 1fr); }

    .rrt-section { padding: 60px 5%; }
    .rrt-section__title { font-size: clamp(28px, 7vw, 44px); }
    .rrt-section__header { margin-bottom: 36px; }

    .rrt-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .rrt-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .rrt-footer__legal-links { flex-wrap: wrap; gap: 12px; }
}

/* ── Small mobile (max 480px) ────────────────────────────── */
@media (max-width: 480px) {
    .rrt-products-grid[data-columns="2"],
    .rrt-products-grid[data-columns="3"],
    .rrt-products-grid[data-columns="4"] { grid-template-columns: 1fr; }

    .rrt-categories__grid { --rrt-cat-cols: 2 !important; }
    .rrt-stats-bar__grid  { grid-template-columns: 1fr 1fr; }
    .rrt-footer__grid     { grid-template-columns: 1fr; }

    .rrt-hero__heading { font-size: 44px; }
    .rrt-header__cart { padding: 9px 14px; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
    .rrt-header, .rrt-footer, .rrt-hero__scroll, .rrt-trust-strip { display: none; }
    body { padding-top: 0; }
}

/* Back to top button */
.rrt-to-top { position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--rrt-red); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease; box-shadow: 0 6px 20px rgba(139,26,40,.35); }
.rrt-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.rrt-to-top:hover { background: var(--rrt-red2); transform: translateY(-2px); }
@media (max-width: 600px) { .rrt-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; } }

/* Hero entrance animations (on page load) */
@keyframes rrtHeroZoom { from { transform: scale(1.08); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes rrtHeroFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.rrt-hero__bg { animation: rrtHeroZoom 1.5s cubic-bezier(.2,.6,.2,1) both; transform-origin: center; will-change: transform, opacity; }
.rrt-hero__content > * { animation: rrtHeroFadeUp .8s ease-out both; }
.rrt-hero__badge { animation-delay: .25s; }
.rrt-hero__heading { animation-delay: .4s; }
.rrt-hero__subheading { animation-delay: .55s; }
.rrt-hero__buttons { animation-delay: .7s; }
.rrt-hero__scroll { animation: rrtHeroFadeUp .8s ease-out both; animation-delay: .9s; }
@media (prefers-reduced-motion: reduce) {
    .rrt-hero__bg, .rrt-hero__content > *, .rrt-hero__scroll { animation: none; }
}

/* ── Global responsive safety net ─────────────────────────── */
img, svg, video, iframe, table, pre { max-width: 100%; }
@media (max-width: 768px) {
    html, body { overflow-x: hidden; max-width: 100%; }
    /* Stop grid/flex children from forcing horizontal overflow */
    .rrt-products-grid, .rrt-products-grid > *,
    .woocommerce ul.products, .woocommerce ul.products > *,
    .rrt-categories__grid, .rrt-categories__grid > *,
    .rrt-footer__grid, .rrt-footer__grid > * { min-width: 0; }
    /* Long unbroken strings (SKUs, URLs) shouldn't push layout */
    .rrt-product-card__title, .rrt-section__title, .woocommerce-loop-product__title { overflow-wrap: anywhere; }
    /* Wide tables scroll within their own box */
    .rrt-info-page .content table, .woocommerce table.shop_table { display: block; overflow-x: auto; }
}
