/* Custom product pages — extracted from style.css (PLN-017 Phase B Step 3) */

/* ─── Custom Services ─────────────────────────────────────────────────── */

/* Hidden nav link (Phase D reveal) */
.nav-hidden { display: none; }

/* Hub page */
.custom-hub { padding: 2rem 0; }
.custom-hub h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 1rem; }
.hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hub-card { display: block; text-align: center; text-decoration: none; color: var(--color-text); padding: 0.75rem; border-radius: 6px; transition: box-shadow 0.2s; }
.hub-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); color: var(--color-text); }
.hub-hero { margin-bottom: 2.5rem; line-height: 1.7; }
.hub-hero p { margin-bottom: 1rem; }
.hub-card-image { margin-bottom: 0.5rem; height: 220px; display: flex; align-items: center; justify-content: center; }
.hub-card-image img { max-height: 220px; width: auto; max-width: 100%; }
.hub-card-body { padding: 0.5rem 0; }
.hub-card h2 { font-family: var(--font-heading); font-size: 1rem; color: var(--color-accent); margin-bottom: 0.25rem; }
.hub-card p { font-size: 0.85rem; line-height: 1.4; color: var(--color-muted); }

/* Licensing tier grid (commercial page) */
.licensing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.licensing-card { border: 1px solid var(--color-border); border-radius: 8px; padding: 1.25rem; text-align: center; display: flex; flex-direction: column; }
.licensing-card h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.licensing-card p { font-size: 0.88rem; line-height: 1.5; color: var(--color-muted); }
.licensing-card-img { width: 100%; height: 150px; object-fit: cover; border-radius: 6px; margin-bottom: 0.75rem; }
.licensing-price { font-weight: 600; color: var(--color-accent) !important; margin-top: 0.75rem !important; }
.licensing-order { margin-top: auto; padding-top: 0.75rem; }
.licensing-order .order-textarea { width: 100%; margin-bottom: 0.5rem; font-size: 0.88rem; }
.licensing-order .order-button { width: 100%; padding: 0.7rem 1rem; font-size: 1.1rem; }
.licensing-contact-btn { padding: 0.7rem 1.5rem; font-size: 1rem; margin-top: auto; /* base + hover: provided by .btn-flat (components.css) */ }

/* Related products (cross-sell at page bottom) */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.related-card { display: block; text-align: center; text-decoration: none; color: var(--color-text); }
.related-card:hover { color: var(--color-text); }
.related-card-image { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.related-card-image img { max-height: 120px; width: auto; max-width: 100%; }
.related-card h3 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--color-accent); margin-bottom: 0.25rem; }
.related-card p { font-size: 0.8rem; line-height: 1.4; color: var(--color-muted); }

/* Category listing */
.custom-category { padding: 2rem 0; }
.custom-category h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 0.5rem; }
.category-intro { color: var(--color-muted); margin-bottom: 2rem; max-width: 700px; }
/* ── Shop card component (reusable across custom pages) ── */
.shop-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.shop-card {
    display: flex;
    flex-direction: column;
    width: 260px;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow 0.2s;
}
.shop-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.shop-card-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--color-bg-warm) url('/static/images/bg-header-japanese-paper.jpg') center / cover no-repeat;
}
.shop-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.shop-card-body {
    padding: 0.75rem 0.5rem;
    text-align: center;
}
.shop-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}
.shop-card-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}
.shop-card-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}
.shop-card-button {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    /* base + hover: provided by .btn-flat (components.css) */
}
/* Scroll hub — category grid (matches WP 4-across layout) */
.scroll-hub { padding: 2rem 0; }
.scroll-hub h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 1rem; }
.scroll-hub-intro { max-width: 760px; line-height: 1.7; margin-bottom: 2rem; }
.scroll-hub-intro p { margin-bottom: 0.75rem; }
.scroll-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.scroll-category-card { display: block; text-align: center; text-decoration: none; color: var(--color-text); }
.scroll-category-card:hover { color: var(--color-text); }
.scroll-category-image { margin-bottom: 0.5rem; }
.scroll-category-image img { max-height: 220px; width: auto; max-width: 100%; }
.scroll-category-card h2 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--color-accent); }
.scroll-count { font-weight: 400; color: var(--color-muted); }
/* Scroll category — product grid */
.scroll-category { padding: 2rem 0; }
.scroll-category h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 0.5rem; }
.scroll-category-intro { margin-bottom: 0.25rem; font-weight: 600; }
.scroll-showing { color: var(--color-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.scroll-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.scroll-product-card { display: block; text-align: center; text-decoration: none; color: var(--color-text); padding: 0.75rem; border-radius: 6px; transition: box-shadow 0.2s; }
.scroll-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); color: var(--color-text); }
.scroll-product-image { margin-bottom: 0.5rem; }
.scroll-product-image img { max-height: 310px; width: auto; max-width: 100%; }
.scroll-product-title { font-family: var(--font-heading); font-size: 0.9rem; color: var(--color-accent); margin-bottom: 0.25rem; }
.scroll-product-desc { font-size: 0.85rem; line-height: 1.4; color: var(--color-muted); margin-bottom: 0.75rem; }
/* Scroll individual product page */
.scroll-detail { padding: 2rem 0; }
.scroll-detail-layout { display: flex; gap: 2.5rem; margin-bottom: 2rem; align-items: flex-start; }
.scroll-detail-image { flex: 1; text-align: center; }
.scroll-detail-image img { max-width: 100%; max-height: 650px; }
.scroll-detail-info { flex: 1; min-width: 280px; }
.scroll-detail h1 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-text); margin-bottom: 0.5rem; text-align: center; }
.scroll-detail-summary { margin-bottom: 1rem; line-height: 1.6; }
.scroll-detail-summary p { margin-bottom: 0.5rem; }
.scroll-detail-price { font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.scroll-concept-link { font-size: 0.95rem; color: #555; margin-bottom: 1.25rem; }
.scroll-concept-link a { color: var(--color-accent); font-weight: 500; }
.scroll-font-select { margin-bottom: 0.5rem; }
.scroll-font-select label { font-weight: 600; margin-right: 0.5rem; }
.scroll-font-select select { padding: 0.4rem 0.6rem; font-size: 0.95rem; border: 1px solid var(--color-border); border-radius: 4px; }
.scroll-font-description { font-size: 0.9rem; line-height: 1.5; color: var(--color-muted); margin-bottom: 1.5rem; padding: 0.5rem 0; }
.scroll-coming-soon { margin-top: 1.5rem; padding: 1.25rem; border: 1px solid var(--color-border); border-radius: 6px; background: #faf8f5; }
.scroll-coming-soon-heading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-accent); margin: 0 0 0.5rem; }
.scroll-coming-soon-text { font-size: 0.95rem; line-height: 1.5; color: var(--color-muted); margin: 0 0 0.75rem; }
.scroll-coming-soon-interest { font-size: 0.95rem; margin: 0 0 0.75rem; }
.scroll-coming-soon-interest a { color: var(--color-accent); font-weight: 600; }
.notify-me-form { margin-top: 0.5rem; }
.notify-me-fields { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; }
.notify-me-input { width: 100%; padding: 0.75rem; font-size: 1rem; border: 1px solid var(--color-border); border-radius: 4px; box-sizing: border-box; background: #fff; }
.notify-me-input:focus { outline: 2px solid var(--color-accent); border-color: transparent; }
.notify-me-btn { width: 100%; padding: 0.875rem; background: var(--color-accent); color: #fff; border: none; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; min-height: 48px; }
.notify-me-btn:disabled { opacity: 0.6; cursor: default; }
.notify-me-btn:hover:not(:disabled) { opacity: 0.9; }
.notify-me-privacy { font-size: 0.8rem; color: var(--color-muted); margin: 0.5rem 0 0; }
.notify-me-success { margin-top: 0.75rem; padding: 0.875rem 1rem; background: #f0faf0; border: 1px solid #b8ddb8; border-radius: 4px; color: #2d6b2d; }
.notify-me-success p { margin: 0; }
.notify-me-error { margin-top: 0.75rem; padding: 0.75rem 1rem; background: #fdf0f0; border: 1px solid #e0b0b0; border-radius: 4px; color: #8b2222; font-size: 0.9rem; }
.notify-me-error p { margin: 0; }
.scroll-description { border-top: 1px solid var(--color-border); padding-top: 1.5rem; margin-bottom: 2rem; line-height: 1.7; }
.scroll-description h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-accent); margin-bottom: 1rem; }
.scroll-description p { margin-bottom: 1rem; }
.scroll-description blockquote { margin: 0.75rem 0 0.75rem 1.5rem; padding-left: 0.75rem; border-left: 2px solid var(--color-border); }
.scroll-description blockquote p { margin-bottom: 0.75rem; }
.scroll-description table { margin: 1rem auto; }
.scroll-related { border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.scroll-related h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-accent); margin-bottom: 1rem; }
.scroll-related-grid { grid-template-columns: repeat(4, 1fr); }

/* Product page */
.custom-product { max-width: none; margin: 0 auto; padding: 2rem 0; }
.product-hero { display: flex; gap: 2.5rem; margin-bottom: 2rem; align-items: flex-start; }
.product-hero-image { flex: 1; min-width: 0; }
.product-hero-image img { max-width: 100%; height: auto; border-radius: 6px; }
.product-hero-info { flex: 1; min-width: 280px; }
.product-hero-info h1 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-accent); margin-bottom: 0.75rem; }
.product-short-desc { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.product-short-desc p { margin-bottom: 0.85rem; }
.product-short-desc p:last-child { margin-bottom: 0; }
.product-pricing h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; }
.pricing-tiers { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pricing-tier { background: var(--color-bg-warm); border: 1px solid var(--color-border); border-radius: 6px; padding: 0.75rem 1rem; text-align: center; flex: 1; min-width: 140px; }
.tier-price { display: block; font-size: 1.4rem; font-weight: 700; color: var(--color-accent); }
.tier-desc { display: block; font-size: 0.85rem; color: var(--color-muted); margin-top: 0.25rem; }

/* Mobile-only trust line + summary (hidden on desktop) */
.mobile-trust-line,
.mobile-summary { display: none; }

/* Order form */
.product-order-form { border-top: 1px solid var(--color-border); padding-top: 1.25rem; margin-top: 1rem; }
.order-field { margin-bottom: 1rem; }
.order-field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--color-text); }
.order-field-inline { display: flex; align-items: flex-start; gap: 0.75rem; }
.order-field-inline label { flex: 0 0 auto; padding-top: 0.65rem; margin-bottom: 0; }
.order-field-inline .order-textarea { flex: 1; }
.order-field-size { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.order-field-size label { margin-bottom: 0; flex: 0 0 auto; }
.order-select { width: auto; min-width: 14em; padding: 0.6rem 0.75rem; border: 1px solid #ccc; border-radius: 6px; font-size: 0.95rem; font-family: var(--font-sans); background: transparent; }
.size-description { font-size: 0.9rem; color: var(--color-muted); margin-top: 0.35rem; line-height: 1.4; }
.order-textarea { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid #ccc; border-radius: 6px; font-size: 0.95rem; font-family: var(--font-sans); resize: vertical; background: transparent; }
.order-input { width: 100%; padding: 0.6rem 0.75rem; border: 1px solid #ccc; border-radius: 6px; font-size: 0.95rem; font-family: var(--font-sans); margin-bottom: 0.5rem; display: block; }
.add-name-btn { background: none; border: none; color: var(--color-link); font-size: 0.9rem; cursor: pointer; padding: 0.25rem 0; font-weight: 600; }
.add-name-btn:hover { text-decoration: underline; }
.order-button { margin-top: 0.5rem; /* base + hover + disabled: provided by .btn-flat (components.css) */ }

/* Tabs */
.product-tabs { margin-top: 1rem; }
.tab-buttons { display: flex; gap: 0; border-bottom: 2px solid var(--color-border); margin-bottom: 0; }
.tab-btn { background: none; border: none; border-bottom: 3px solid transparent; padding: 0.75rem 1.5rem; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--color-muted); cursor: pointer; transition: color 0.2s, border-color 0.2s; margin-bottom: -2px; }
.tab-btn:hover { color: var(--color-accent); }
.tab-btn.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tab-content { display: none; padding-top: 1.5rem; }
.tab-content.active { display: block; }

/* Product gallery */
.product-gallery { margin-bottom: 2rem; }
.product-gallery h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-accent); margin-bottom: 1rem; }
.gallery-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.gallery-item { margin: 0; }
.gallery-item img { max-height: 250px; width: auto; border-radius: 4px; }

/* Product description (WP content) — matches article base typography */
.product-description { font-family: var(--font-serif); font-size: 18px; line-height: 1.6; color: var(--color-text); margin-bottom: 2rem; }
.product-description p { margin-bottom: 1rem; }
.product-description h1,
.product-description h2,
.product-description h3 { font-family: var(--font-heading); color: var(--color-accent); margin: 2rem 0 0.75rem; text-align: center; font-weight: 500; }
.product-description h1 { font-size: 2.25rem; line-height: 1.25; }
.product-description h3 { font-size: 1.25rem; }
.product-description img { max-width: 100%; height: auto; border-radius: 4px; }
.product-description img.alignright { float: right; margin: 0.25rem 0 1rem 1.5rem; max-width: 250px; clear: right; }
.product-description img.alignleft { float: left; margin: 0.25rem 1.5rem 1rem 0; max-width: 300px; clear: left; }
.product-description b { font-weight: 700; }
.product-description .text-center { text-align: center; margin: 1.5rem 0; }
.product-description .text-center img { display: inline-block; margin: 0 auto 0.5rem; }
.product-description p[align="center"] { text-align: center; margin: 1.5rem 0; }
.product-description p[align="center"] img { display: block; margin: 0 auto 0.5rem; }
.product-description p[align="center"] a + span { display: block; }

/* WP caption alignment classes (preserved from [caption align="alignX"]) */
.product-description figure { margin: 1rem 0; text-align: center; font-size: 0.9rem; color: var(--color-muted); line-height: 1.4; }
.product-description figure img { max-width: 100%; height: auto; border-radius: 4px; display: block; margin: 0 auto 0.5rem; }
.product-description figure.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; max-width: 250px; clear: right; }
.product-description figure.alignleft { float: left; margin: 0.5rem 1.5rem 1rem 0; max-width: 300px; clear: left; }
.product-description figure.aligncenter { float: none; margin: 1.5rem auto; display: block; }

/* Bottom sample design cards (WP grid-row) — clear: both so floats don't overlap */
.product-description .grid-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; clear: both; border-bottom: none; padding: 0; }
.product-description .grid-row:hover { background: transparent; }
.product-description .grid-row .grid-unit { text-align: center; background: transparent; }
.product-description .grid-row figure { float: none; display: block; max-width: 100%; margin: 0; font-size: 0.9rem; color: var(--color-muted); line-height: 1.4; background: transparent; }
.product-description .grid-row figure img { display: block; margin: 0 auto 0.5rem; max-height: 250px; width: auto; max-width: 100%; border-radius: 4px; }

/* Reviews */
.review-item { padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; gap: 1rem; align-items: baseline; margin-bottom: 0.4rem; }
.review-author { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.85rem; color: var(--color-muted); }
.review-text { font-size: 0.95rem; line-height: 1.6; }
.review-image { margin-top: 0.8rem; }
.review-image img { max-width: 300px; height: auto; border-radius: 4px; }
.show-more-reviews { display: block; margin: 1.5rem auto; padding: 0.6rem 2rem; background: var(--color-bg-warm); border: 1px solid var(--color-border); border-radius: 6px; cursor: pointer; font-size: 0.95rem; color: var(--color-accent); font-weight: 600; }
.show-more-reviews:hover { background: #eee; }

/* ON HOLD notice */
.on-hold-notice { background: #fef9e7; border: 1px solid #f0e0a0; border-radius: 6px; padding: 1rem 1.25rem; margin: 1.5rem 0; color: #6b5900; line-height: 1.6; font-size: 0.95rem; }
.product-size-display { margin: 1.5rem 0; }
.product-size-display label { font-weight: 600; margin-right: 0.5rem; }
.product-size-display select { padding: 0.4rem 0.6rem; font-size: 0.95rem; border: 1px solid var(--color-border); border-radius: 4px; }
.display-price { font-size: 1.5rem; font-weight: 700; margin: 1rem 0; }
.product-single-price { font-size: 1.6rem; font-weight: 700; color: var(--color-accent); margin-bottom: 1rem; }

/* Related products */
.related-products { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.related-products > h2 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 1.5rem; }
.related-products .shop-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.related-products .shop-card { width: auto; }

/* Commercial portfolio */
.commercial-intro { margin-bottom: 2.5rem; line-height: 1.7; }
.commercial-intro h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 1rem; }
.portfolio-list { display: grid; gap: 1.5rem; }
.portfolio-item { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.portfolio-item h3 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 0.5rem; }
.portfolio-item p { font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Landing page */
.landing-content { line-height: 1.7; }
.landing-content h1 { font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 1rem; }
.landing-content p { margin-bottom: 1rem; }
.landing-hero-image { float: right; margin: 0 0 1rem 1.5rem; max-width: 200px; }
.landing-hero-image img { width: 100%; height: auto; border-radius: 4px; }

/* Scroll process step rows (text + image side by side) */
.scroll-step-row { display: flex; gap: 1.5rem; margin: 1.5rem 0; align-items: flex-start; }
.scroll-step-row-reverse { flex-direction: row-reverse; }
.scroll-step-text { flex: 3; min-width: 0; }
.scroll-step-text p { margin-bottom: 1rem; }
.scroll-step-image { flex: 1; min-width: 150px; max-width: 250px; }
.scroll-step-image img { max-width: 100%; height: auto; border-radius: 4px; }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
    .scroll-category-grid, .scroll-product-grid, .scroll-related-grid { grid-template-columns: repeat(2, 1fr); }
    .scroll-detail-layout { flex-direction: column; }
    .related-products .shop-card-grid { grid-template-columns: repeat(2, 1fr); }
    .product-hero { flex-direction: column; }
    .product-hero-image { flex: none; width: auto; max-width: 100%; text-align: center; }
    .product-hero-image img { max-width: 280px; width: auto; }
    /* Tattoo page mobile reorder — form before body text */
    .custom-product-custom-japanese-tattoo { padding-top: 0.5rem; }
    .custom-product-custom-japanese-tattoo .product-hero { gap: 0.75rem; }
    .custom-product-custom-japanese-tattoo .product-hero-image { line-height: 0; }
    .custom-product-custom-japanese-tattoo .product-hero-image img { max-height: 45vh; object-fit: contain; }
    .custom-product-custom-japanese-tattoo .product-hero-info { display: flex; flex-direction: column; }
    .custom-product-custom-japanese-tattoo .mobile-trust-line { display: block; order: 0; font-size: 0.9rem; color: var(--color-muted); margin-bottom: 0.75rem; }
    .custom-product-custom-japanese-tattoo .product-short-desc { order: 10; }
    .custom-product-custom-japanese-tattoo .product-order-form { order: 1; border-top: none; margin-top: 0; }
    .custom-product-custom-japanese-tattoo .mobile-summary { display: block; order: 2; font-size: 0.95rem; line-height: 1.5; color: var(--color-muted); margin: 1rem 0; }
    .pricing-tiers { flex-direction: column; }
    .hub-grid, .licensing-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-card { width: 100%; max-width: 300px; }
    .tab-btn { padding: 0.6rem 1rem; font-size: 0.95rem; }
    .order-field-inline { flex-direction: column; }
    .order-field-inline label { padding-top: 0; }
    .order-field-size { flex-direction: column; align-items: flex-start; }
    .order-select { width: 100%; }
    .product-description figure.alignright,
    .product-description figure.alignleft { float: none; max-width: 100%; margin: 1rem 0; }
    .product-description img.alignright,
    .product-description img.alignleft { float: none; max-width: 100%; margin: 1rem 0; }
    .product-description .grid-row { grid-template-columns: repeat(2, 1fr); }
    .scroll-step-row, .scroll-step-row-reverse { flex-direction: column; }
    .scroll-step-image { max-width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .scroll-category-grid, .scroll-product-grid, .scroll-related-grid, .hub-grid, .licensing-grid, .related-grid { grid-template-columns: 1fr; }
    .related-products .shop-card-grid { grid-template-columns: 1fr; }
}
