/* Ryqovex — Main stylesheet */
:root {
    --rq-bg: #0a0b0d;
    --rq-bg-elevated: #111318;
    --rq-bg-panel: #181b22;
    --rq-bg-cell: #1e222b;
    --rq-text: #e6e8ec;
    --rq-text-muted: #7d8494;
    --rq-amber: #e8a849;
    --rq-amber-dim: #c4882e;
    --rq-steel: #8b9aab;
    --rq-steel-dim: #5a6578;
    --rq-border: rgba(232, 168, 73, 0.14);
    --rq-font-display: 'Syne', 'Shippori Mincho', sans-serif;
    --rq-font-serif: 'Shippori Mincho', serif;
    --rq-font-ui: 'IBM Plex Sans JP', sans-serif;
    --rq-font-body: 'IBM Plex Sans JP', sans-serif;
    --rq-nav-h: 72px;
    --rq-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --rq-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    --rq-radius: 4px;
    --rq-gutter: clamp(12px, 2vw, 20px);
}

[data-theme="light"] {
    --rq-bg: #f0f2f5;
    --rq-bg-elevated: #ffffff;
    --rq-bg-panel: #e4e8ee;
    --rq-bg-cell: #dce1ea;
    --rq-text: #12141a;
    --rq-text-muted: #5a6270;
    --rq-border: rgba(18, 20, 26, 0.1);
    --rq-shadow: 0 16px 48px rgba(18, 20, 26, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body.rq-body {
    margin: 0;
    font-family: var(--rq-font-body);
    font-size: 15px;
    line-height: 1.72;
    color: var(--rq-text);
    background: var(--rq-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rq-amber); text-decoration: none; transition: color 0.25s var(--rq-ease); }
a:hover { color: var(--rq-amber-dim); }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.rq-micro {
    font-family: var(--rq-font-ui);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rq-steel);
    margin: 0 0 0.75rem;
}

/* Rail Nav — full-width top edge */
.rq-rail-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--rq-nav-h);
    transition: background 0.35s var(--rq-ease), box-shadow 0.35s;
}
.rq-rail-nav__line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rq-amber), transparent);
    opacity: 0.6;
}
.rq-rail-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    height: 100%;
    background: rgba(10, 11, 13, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rq-border);
}
[data-theme="light"] .rq-rail-nav__inner { background: rgba(240, 242, 245, 0.94); }
.rq-rail-nav.is-scrolled .rq-rail-nav__inner { box-shadow: var(--rq-shadow); }
.rq-rail-nav__brand {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--rq-text);
}
.rq-rail-nav__glyph {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border: 1px solid var(--rq-amber);
    color: var(--rq-amber);
    font-size: 0.75rem;
    transform: rotate(45deg);
}
.rq-rail-nav__wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.rq-rail-nav__wordmark strong {
    font-family: var(--rq-font-display);
    font-size: 0.95rem; letter-spacing: 0.04em;
}
.rq-rail-nav__wordmark em { font-style: normal; font-size: 9px; color: var(--rq-text-muted); letter-spacing: 0.12em; }
.rq-rail-nav__links { display: flex; gap: 2rem; }
.rq-rail-nav__link {
    font-family: var(--rq-font-ui);
    font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--rq-text-muted);
    position: relative; padding-bottom: 4px;
}
.rq-rail-nav__link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--rq-amber);
    transition: width 0.3s var(--rq-ease);
}
.rq-rail-nav__link:hover, .rq-rail-nav__link.is-active { color: var(--rq-text); }
.rq-rail-nav__link.is-active::after, .rq-rail-nav__link:hover::after { width: 100%; }
.rq-rail-nav__tools { display: flex; align-items: center; gap: 0.5rem; }
.rq-tool-btn {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: transparent; border: 1px solid var(--rq-border);
    color: var(--rq-text); cursor: pointer;
    border-radius: var(--rq-radius);
    transition: border-color 0.25s, color 0.25s;
}
.rq-tool-btn:hover { border-color: var(--rq-amber); color: var(--rq-amber); }
.rq-mini-cart {
    display: flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    color: var(--rq-text); font-size: 11px;
}
.rq-mini-cart span { color: var(--rq-amber); font-weight: 600; }
.rq-rail-nav__burger {
    display: none; flex-direction: column; justify-content: center; gap: 4px;
    width: 36px; height: 36px;
    background: transparent; border: 1px solid var(--rq-border);
    cursor: pointer; padding: 8px;
    border-radius: var(--rq-radius);
}
.rq-rail-nav__burger span { display: block; height: 1px; background: var(--rq-text); }

/* Search modal */
.rq-search-modal {
    position: fixed; inset: 0; z-index: 950;
    background: rgba(0,0,0,0.75);
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 18vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
}
.rq-search-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.rq-search-modal__box {
    width: min(540px, 92vw);
    padding: 2rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    transform: translateY(-16px);
    transition: transform 0.35s var(--rq-ease);
}
.rq-search-modal.is-open .rq-search-modal__box { transform: translateY(0); }
.rq-search-modal__close {
    float: right; background: none; border: none;
    color: var(--rq-text-muted); font-size: 1.5rem; cursor: pointer;
}
.rq-search-modal__form label { display: block; margin-bottom: 0.5rem; font-size: 13px; }
.rq-search-modal__form input {
    width: 100%; padding: 0.9rem 1rem;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); margin-bottom: 1rem;
    border-radius: var(--rq-radius);
}

/* Drawer */
.rq-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw); z-index: 920;
    background: var(--rq-bg-panel);
    border-left: 1px solid var(--rq-border);
    padding: calc(var(--rq-nav-h) + 1.5rem) 1.5rem 2rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--rq-ease), visibility 0.4s;
}
.rq-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.rq-drawer nav { display: flex; flex-direction: column; gap: 1.5rem; }
.rq-drawer a {
    font-family: var(--rq-font-ui);
    font-size: 14px; letter-spacing: 0.06em;
    color: var(--rq-text);
}

/* Main */
.rq-main {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--rq-nav-h) + 2.5rem);
    min-height: 60vh;
}
.page-home .rq-main { padding-top: var(--rq-nav-h); }

/* Buttons */
.rq-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--rq-font-ui);
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 1.85rem;
    border: 1px solid transparent;
    border-radius: var(--rq-radius);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--rq-ease);
}
.rq-btn--amber {
    background: var(--rq-amber); color: var(--rq-bg);
    border-color: var(--rq-amber);
}
.rq-btn--amber:hover { background: var(--rq-amber-dim); border-color: var(--rq-amber-dim); color: var(--rq-bg); }
.rq-btn--outline {
    background: transparent; color: var(--rq-text);
    border-color: var(--rq-border);
}
.rq-btn--outline:hover { border-color: var(--rq-amber); color: var(--rq-amber); }
.rq-btn--ghost {
    background: transparent; color: var(--rq-amber);
    border-color: transparent; padding: 0.5rem 0;
}
.rq-btn--ghost:hover { color: var(--rq-amber-dim); }
.rq-btn--sm { padding: 0.6rem 1.2rem; font-size: 10px; }
.rq-btn--lg { padding: 1rem 2.25rem; }
.rq-btn--block { width: 100%; }
.rq-link-arrow {
    font-family: var(--rq-font-ui);
    font-size: 12px; letter-spacing: 0.08em;
    color: var(--rq-amber);
}

/* Page head */
.rq-page-head {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-page-head__title {
    font-family: var(--rq-font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}
.rq-page-head__sub { color: var(--rq-text-muted); max-width: 560px; margin: 0; }

/* Breadcrumbs */
.rq-crumb {
    max-width: 1280px;
    margin: 0 auto 1.5rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-crumb ol {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    list-style: none; margin: 0; padding: 0;
    font-size: 11px; letter-spacing: 0.06em;
}
.rq-crumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--rq-text-muted); }
.rq-crumb a { color: var(--rq-text-muted); }
.rq-crumb span { color: var(--rq-text); }

/* Policy */
.rq-policy {
    max-width: 780px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-policy h2 {
    font-family: var(--rq-font-serif);
    font-size: 1.35rem;
    margin: 2.5rem 0 1rem;
    color: var(--rq-text);
}
.rq-policy h3 { font-size: 1rem; margin: 1.5rem 0 0.75rem; color: var(--rq-steel); }
.rq-policy p, .rq-policy li { color: var(--rq-text-muted); }
.rq-policy ul { padding-left: 1.25rem; margin: 0.75rem 0 1.25rem; }
.rq-policy li { margin-bottom: 0.4rem; }

/* Forms */
.rq-form-row { margin-bottom: 1.25rem; }
.rq-form-row label { display: block; font-size: 12px; margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.rq-form-row label span { color: var(--rq-amber); }
.rq-form-row input,
.rq-form-row select,
.rq-form-row textarea {
    width: 100%; padding: 0.85rem 1rem;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); font-family: inherit;
    border-radius: var(--rq-radius);
}
.rq-form-row--check label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 13px; }
.rq-form-row--full { grid-column: 1 / -1; }
.rq-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rq-form-note { font-size: 13px; color: var(--rq-steel); margin-top: 1rem; }

/* About */
.rq-narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
    align-items: center;
}
.rq-narrative--reverse .rq-narrative__visual { order: -1; }
.rq-narrative__text h2 {
    font-family: var(--rq-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 1.25rem;
}
.rq-narrative__text h2 em { font-style: normal; color: var(--rq-amber); }
.rq-narrative__text p { color: var(--rq-text-muted); margin: 0 0 1rem; }
.rq-narrative__visual img { border-radius: var(--rq-radius); border: 1px solid var(--rq-border); }

.rq-timeline {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-timeline h2 { font-family: var(--rq-font-serif); font-size: 1.8rem; margin-bottom: 2rem; }
.rq-timeline__list { list-style: none; margin: 0; padding: 0; }
.rq-timeline__list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rq-border);
}
.rq-timeline__year {
    font-family: var(--rq-font-display);
    font-size: 1.1rem;
    color: var(--rq-amber);
}
.rq-timeline__img { margin-top: 2rem; }
.rq-timeline__img img { border-radius: var(--rq-radius); border: 1px solid var(--rq-border); }

.rq-values {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-values h2 { font-family: var(--rq-font-serif); font-size: 1.8rem; margin-bottom: 2rem; }
.rq-values h2 em { font-style: normal; color: var(--rq-amber); }
.rq-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rq-gutter);
}
.rq-values__grid article {
    padding: 1.5rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-values__grid strong { display: block; font-family: var(--rq-font-display); margin-bottom: 0.5rem; }
.rq-values__grid p { margin: 0; font-size: 13px; color: var(--rq-text-muted); }

.rq-page-cta {
    text-align: center;
    padding: 4rem clamp(1rem, 3vw, 2rem);
    background: var(--rq-bg-panel);
    border-top: 1px solid var(--rq-border);
}
.rq-page-cta h2 { font-family: var(--rq-font-serif); font-size: 1.8rem; margin: 0 0 1.5rem; }

/* Shop */
.rq-shop-bento {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-shop-bento__sidebar {
    position: sticky;
    top: calc(var(--rq-nav-h) + 1rem);
    align-self: start;
}
.rq-shop-bento__search label { display: block; font-size: 11px; margin-bottom: 0.4rem; letter-spacing: 0.08em; }
.rq-shop-bento__search input {
    width: 100%; padding: 0.75rem;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); border-radius: var(--rq-radius);
    margin-bottom: 1.5rem;
}
.rq-shop-bento__filters { display: flex; flex-direction: column; gap: 0.35rem; }
.rq-shop-bento__filter {
    text-align: left; padding: 0.65rem 0.85rem;
    background: transparent; border: 1px solid transparent;
    color: var(--rq-text-muted); font-size: 12px;
    cursor: pointer; border-radius: var(--rq-radius);
    transition: all 0.25s;
}
.rq-shop-bento__filter.is-active,
.rq-shop-bento__filter:hover {
    background: var(--rq-bg-cell);
    border-color: var(--rq-border);
    color: var(--rq-text);
}
.rq-shop-bento__hint { margin-top: 2rem; font-size: 13px; color: var(--rq-text-muted); }
.rq-shop-bento__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--rq-gutter);
}
.rq-shop-module {
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    overflow: hidden;
    transition: transform 0.35s var(--rq-ease), box-shadow 0.35s;
}
.rq-shop-module:hover { transform: translateY(-4px); box-shadow: var(--rq-shadow); }
.rq-shop-module__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.rq-shop-module__img img { width: 100%; height: 100%; object-fit: cover; }
.rq-shop-module__badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: var(--rq-amber); color: var(--rq-bg);
    font-size: 9px; letter-spacing: 0.1em;
    border-radius: var(--rq-radius);
}
.rq-shop-module__body { padding: 1.25rem; }
.rq-shop-module__body h3 { font-family: var(--rq-font-serif); font-size: 1.1rem; margin: 0.35rem 0; }
.rq-shop-module__price { font-family: var(--rq-font-display); color: var(--rq-amber); font-size: 1.05rem; margin-bottom: 0.75rem; }
.rq-shop-module__specs { font-size: 12px; margin: 0 0 1rem; }
.rq-shop-module__specs div { display: flex; justify-content: space-between; padding: 0.25rem 0; border-bottom: 1px solid var(--rq-border); }
.rq-shop-module__specs dt { color: var(--rq-text-muted); }
.rq-shop-module__specs dd { margin: 0; }
.rq-shop-module__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rq-shop-cta { text-align: center; padding: 3rem 1rem 4rem; }
.rq-shop-cta h2 { font-family: var(--rq-font-serif); margin-bottom: 0.75rem; }
.rq-shop-cta p { color: var(--rq-text-muted); margin-bottom: 1.5rem; }

/* FAQ */
.rq-faq-panel {
    max-width: 780px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-faq-panel__intro { color: var(--rq-text-muted); margin-bottom: 2rem; }
.rq-faq-panel__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.rq-faq-panel__tab {
    padding: 0.6rem 1.1rem;
    background: transparent; border: 1px solid var(--rq-border);
    color: var(--rq-text-muted); font-size: 12px;
    cursor: pointer; border-radius: var(--rq-radius);
    transition: all 0.25s;
}
.rq-faq-panel__tab.is-active { background: var(--rq-amber); color: var(--rq-bg); border-color: var(--rq-amber); }
.rq-faq-panel__group { display: none; }
.rq-faq-panel__group.is-active { display: block; }
.rq-faq-panel__item { border-bottom: 1px solid var(--rq-border); }
.rq-faq-panel__q {
    width: 100%; text-align: left; padding: 1.1rem 0;
    background: none; border: none; color: var(--rq-text);
    font-family: var(--rq-font-serif); font-size: 1rem;
    cursor: pointer;
}
.rq-faq-panel__a { padding: 0 0 1.1rem; }
.rq-faq-panel__a p { margin: 0; color: var(--rq-text-muted); font-size: 14px; }
.rq-faq-panel__cta {
    margin-top: 3rem; padding: 2rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
    text-align: center;
}
.rq-faq-panel__cta h2 { font-family: var(--rq-font-serif); font-size: 1.3rem; margin: 0 0 0.5rem; }
.rq-faq-panel__cta p { color: var(--rq-text-muted); margin-bottom: 1.25rem; }

/* Contact */
.rq-contact-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.rq-contact-bento__info h2,
.rq-contact-bento__form h2 { font-family: var(--rq-font-serif); font-size: 1.3rem; margin: 0 0 1.5rem; }
.rq-contact-bento__addr > div { margin-bottom: 1.25rem; }
.rq-contact-bento__addr p, .rq-contact-bento__addr a { display: block; margin: 0.25rem 0; color: var(--rq-text); }
.rq-contact-bento__map { margin: 1.5rem 0; border-radius: var(--rq-radius); overflow: hidden; border: 1px solid var(--rq-border); }
.rq-contact-bento__map iframe { width: 100%; height: 220px; border: 0; }
.rq-contact-bento__notes { font-size: 13px; color: var(--rq-text-muted); padding-left: 1.1rem; }
.rq-contact-bento__form {
    padding: 2rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}

/* Cart */
.rq-cart-bento { max-width: 1280px; margin: 0 auto 4rem; padding: 0 clamp(1rem, 3vw, 2rem); }
.rq-cart-bento__empty { text-align: center; padding: 4rem 2rem; }
.rq-cart-bento__empty-inner { max-width: 420px; margin: 0 auto; }
.rq-cart-bento__empty h2 { font-family: var(--rq-font-serif); margin: 0.5rem 0 1rem; }
.rq-cart-bento__empty p { color: var(--rq-text-muted); margin-bottom: 1.5rem; }
.rq-cart-bento__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}
.rq-cart-bento__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; }
.rq-cart-bento__head h2 { font-family: var(--rq-font-serif); margin: 0; }
.rq-cart-bento__head h2 span { color: var(--rq-amber); }
.rq-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--rq-border);
    align-items: center;
}
.rq-cart-item__img img { border-radius: var(--rq-radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.rq-cart-item__name { font-family: var(--rq-font-serif); margin-bottom: 0.25rem; }
.rq-cart-item__price { color: var(--rq-amber); font-size: 14px; }
.rq-qty { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.rq-qty button {
    width: 28px; height: 28px;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); cursor: pointer;
    border-radius: var(--rq-radius);
}
.rq-cart-item__remove {
    background: none; border: none; color: var(--rq-text-muted);
    font-size: 11px; cursor: pointer; margin-top: 0.5rem;
}
.rq-cart-bento__ship h3 { font-family: var(--rq-font-serif); margin: 2rem 0 1rem; }
.rq-cart-bento__ship h3 span { color: var(--rq-amber); }
.rq-ship-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--rq-gutter); }
.rq-ship-cell {
    text-align: left; padding: 1rem;
    background: var(--rq-bg-cell); border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius); cursor: pointer;
    transition: border-color 0.25s;
}
.rq-ship-cell.is-active { border-color: var(--rq-amber); }
.rq-ship-cell__fee { display: block; font-size: 11px; color: var(--rq-amber); margin-bottom: 0.25rem; }
.rq-ship-cell strong { display: block; font-size: 13px; margin-bottom: 0.25rem; }
.rq-ship-cell__desc { font-size: 11px; color: var(--rq-text-muted); }
.rq-cart-bento__summary {
    position: sticky; top: calc(var(--rq-nav-h) + 1rem);
    padding: 1.75rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-cart-bento__summary h2 { font-family: var(--rq-font-serif); margin: 0.5rem 0 1.25rem; }
.rq-cart-line { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 13px; color: var(--rq-text-muted); }
.rq-cart-line--total { font-size: 1.05rem; color: var(--rq-text); font-weight: 600; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--rq-border); }
.rq-cart-bento__coupon { margin: 1.5rem 0; }
.rq-cart-bento__coupon label { font-size: 11px; display: block; margin-bottom: 0.4rem; }
.rq-cart-bento__coupon-row { display: flex; gap: 0.5rem; }
.rq-cart-bento__coupon-row input {
    flex: 1; padding: 0.65rem;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); border-radius: var(--rq-radius);
}
.rq-cart-bento__coupon-hint { font-size: 11px; color: var(--rq-text-muted); margin-top: 0.5rem; }

/* Checkout */
.rq-checkout-bento { max-width: 720px; margin: 0 auto 4rem; padding: 0 clamp(1rem, 3vw, 2rem); }
.rq-checkout-bento__empty { text-align: center; padding: 3rem; }
.rq-checkout-block {
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-checkout-block h2 { font-family: var(--rq-font-serif); font-size: 1.2rem; margin: 0 0 1.25rem; }
.rq-pay-options label { display: block; margin-bottom: 0.75rem; font-size: 14px; cursor: pointer; }
.rq-checkout-totals { margin-top: 1rem; }
.rq-checkout-success { text-align: center; padding: 3rem; }

/* Footer bento */
.rq-bento-foot {
    margin-top: 4rem;
    border-top: 1px solid var(--rq-border);
    background: var(--rq-bg-elevated);
}
.rq-bento-foot__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--rq-gutter);
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 3vw, 2rem) 2rem;
}
.rq-bento-foot__cell {
    padding: 1.5rem;
    background: var(--rq-bg-cell);
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);
}
.rq-bento-foot__cell--brand h2 {
    font-family: var(--rq-font-display);
    font-size: 1.5rem; margin: 0 0 0.5rem;
}
.rq-bento-foot__cell--brand p { color: var(--rq-text-muted); font-size: 14px; margin: 0 0 1.25rem; }
.rq-bento-foot__stats {
    display: flex; gap: 1.5rem;
    list-style: none; margin: 0; padding: 0;
}
.rq-bento-foot__stats strong {
    display: block;
    font-family: var(--rq-font-display);
    font-size: 1.4rem;
    color: var(--rq-amber);
}
.rq-bento-foot__stats span { font-size: 10px; color: var(--rq-text-muted); letter-spacing: 0.06em; }
.rq-bento-foot__cell--nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rq-foot-block h3 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rq-steel); margin: 0 0 0.75rem; }
.rq-foot-block a { display: block; font-size: 13px; color: var(--rq-text-muted); margin-bottom: 0.4rem; }
.rq-bento-foot__cell--contact address { font-style: normal; font-size: 13px; }
.rq-bento-foot__cell--contact address span,
.rq-bento-foot__cell--contact address a { display: block; margin-bottom: 0.35rem; color: var(--rq-text-muted); }
.rq-bento-foot__social { display: flex; gap: 1rem; margin-top: 1rem; }
.rq-bento-foot__social a { font-size: 12px; color: var(--rq-amber); }
.rq-bento-foot__cell--map { grid-column: 1 / 2; grid-row: 2; padding: 0; overflow: hidden; min-height: 180px; }
.rq-bento-foot__cell--map iframe { width: 100%; height: 100%; min-height: 180px; border: 0; }
.rq-bento-foot__cell--news { grid-column: 2 / 4; grid-row: 2; }
.rq-bento-foot__news label { font-size: 12px; display: block; margin-bottom: 0.5rem; }
.rq-bento-foot__news-row { display: flex; gap: 0.5rem; }
.rq-bento-foot__news-row input {
    flex: 1; padding: 0.75rem;
    background: var(--rq-bg); border: 1px solid var(--rq-border);
    color: var(--rq-text); border-radius: var(--rq-radius);
}
.rq-bento-foot__legal {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--rq-border);
    font-size: 11px;
    color: var(--rq-text-muted);
}
.rq-bento-foot__legal p { margin: 0.25rem 0; }

/* Back to top */
.rq-back-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--rq-amber); color: var(--rq-bg);
    border: none; border-radius: var(--rq-radius);
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 800;
}
.rq-back-top.is-visible { opacity: 1; visibility: visible; }
.rq-back-top:hover { transform: translateY(-3px); }

/* Toast */
.rq-toast {
    position: fixed; bottom: 5rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 0.85rem 1.5rem;
    background: var(--rq-bg-panel);
    border: 1px solid var(--rq-amber);
    color: var(--rq-text);
    font-size: 13px;
    border-radius: var(--rq-radius);
    opacity: 0; visibility: hidden;
    transition: all 0.35s var(--rq-ease);
    z-index: 999;
}
.rq-toast.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Reveal — never block pointer events */
.rq-reveal {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
html.js-ready .rq-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--rq-ease), transform 0.7s var(--rq-ease);
}
html.js-ready .rq-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .rq-narrative, .rq-narrative--reverse { grid-template-columns: 1fr; }
    .rq-narrative--reverse .rq-narrative__visual { order: 0; }
    .rq-values__grid { grid-template-columns: repeat(2, 1fr); }
    .rq-shop-bento { grid-template-columns: 1fr; }
    .rq-shop-bento__sidebar { position: static; }
    .rq-contact-bento { grid-template-columns: 1fr; }
    .rq-cart-bento__layout { grid-template-columns: 1fr; }
    .rq-bento-foot__grid { grid-template-columns: 1fr 1fr; }
    .rq-bento-foot__cell--map { grid-column: 1 / -1; grid-row: auto; }
    .rq-bento-foot__cell--news { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .rq-rail-nav__links { display: none; }
    .rq-rail-nav__burger { display: flex; }
    .rq-form-grid { grid-template-columns: 1fr; }
    .rq-ship-bento { grid-template-columns: 1fr; }
    .rq-cart-item { grid-template-columns: 80px 1fr; }
    .rq-bento-foot__grid { grid-template-columns: 1fr; }
    .rq-bento-foot__cell--nav { grid-template-columns: 1fr; }
    .rq-values__grid { grid-template-columns: 1fr; }
}
