/**
 * PAW CUSTOM — mobile-first layout (default ≤767px)
 * Desktop overrides at min-width: 768px
 */
/* --- Shell --- */
body.storefront-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow-x: hidden;
}
body.storefront-layout main {
    flex: 1 0 auto;
}
body.storefront-layout.page-enter:not(.is-pdp) main {
    animation: paw-page-in 0.28s ease both;
}
@keyframes paw-page-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
to {
        opacity: 1;
        transform: none;
    }
}

/* Bottom nav clearance: footer + sections handle inset — not body (tránh dải trắng dưới footer) */
body.storefront-layout.has-bottom-nav:not(.is-checkout):not(.cart-open):not(.lookup-otp-active) {
    --content-pad-bottom: 0;
}
.top-announcement-bar {
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 12px;
    letter-spacing: 0.02em;
}

.top-announcement-content a {
    color: #fff;
    text-decoration: none;
}

.desktop-announcement-bar {
    background: #111;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.desktop-announcement-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.desktop-announcement-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.desktop-announcement-sep {
    color: rgba(255,255,255,0.3);
}

.mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding-top: env(safe-area-inset-top);
}
.mobile-header-inner {
    display: grid;
    grid-template-columns: var(--touch-min) 1fr auto;
    align-items: center;
    gap: var(--space-2);
    height: var(--header-mobile-h);
    padding: 0 var(--space-3);
    max-width: 100%;
}
.mobile-logo {
    grid-column: 2;
    justify-self: center;
    font-size: 1.15rem !important;
    flex: none;
    text-align: center;
    min-width: 0;
}
.mobile-header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 2px;
}
.mobile-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.mobile-header-btn:active {
    background: var(--color-surface-muted);
}
.mobile-header-cart {
    position: relative;
}
.mobile-header-wishlist {
    position: relative;
    text-decoration: none;
    color: var(--color-text);
}
.mobile-wishlist-badge {
    top: 4px;
    right: 4px;
}
.mobile-wishlist-icon {
    display: block;
    stroke: currentColor;
    fill: none;
}
.mobile-cart-badge,
.mobile-bottom-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-full);
}
.desktop-header {
    display: none;
}
/* Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: calc(var(--z-drawer) - 1);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.is-open {
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 88vw);
    height: 100%;
    background: var(--color-surface);
    z-index: var(--z-drawer);
    transform: translateX(calc(-100% - 2px));
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none;
    flex-direction: column;
    padding-top: env(safe-area-inset-top);
    box-shadow: var(--shadow-md);
}
.mobile-drawer.is-open {
  display: flex;
  transform: translateX(0);
}
.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
}
.mobile-drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-h3);
}
.mobile-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-3) 0;
}
.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    min-height: var(--touch-min);
    font-weight: 600;
    font-size: var(--text-body);
    color: var(--color-text);
    text-decoration: none;
}
.mobile-drawer-link--sub {
    padding-left: calc(var(--space-4) + 32px);
    font-weight: 500;
    font-size: var(--text-small);
    color: var(--color-muted);
}
.mobile-drawer-link.is-active {
    color: var(--color-primary);
    background: var(--color-surface-soft);
}
.mobile-drawer-icon {
    flex-shrink: 0;
    color: inherit;
}
.mobile-drawer-divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-3) var(--space-4);
}
.mobile-drawer-label {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}
.mobile-drawer-foot {
    padding: var(--space-4);
    border-top: 1px solid var(--color-border);
    padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
}
.mobile-drawer-hotline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 700;
    color: var(--color-primary);
}
/* Bottom nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-bottom-nav);
    display: flex;
    align-items: stretch;
    height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
body.is-checkout .mobile-bottom-nav,
body.cart-open .mobile-bottom-nav,
body.lookup-otp-active .mobile-bottom-nav,
body.is-pdp .mobile-bottom-nav {
    display: none;
}
.mobile-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: var(--touch-min);
    min-height: var(--bottom-nav-h);
    padding: var(--space-1) var(--space-2);
    border: none;
    background: transparent;
    color: var(--color-muted);
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    touch-action: manipulation;
}
.mobile-bottom-nav-item.is-active {
    color: var(--color-primary);
}
.mobile-bottom-nav-icon {
    display: block;
}
/* Search overlay */
.mobile-search-overlay {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-drawer) + 1);
    background: var(--color-surface);
    padding-top: env(safe-area-inset-top);
}
.mobile-search-overlay.is-open {
    display: block !important;
}
.mobile-search-panel {
    padding: var(--space-4);
}
.mobile-search-head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.mobile-search-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-surface-muted);
    border-radius: var(--radius-md);
    padding: 0 var(--space-3);
    min-height: var(--touch-min);
}
.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    min-height: var(--touch-min);
    outline: none;
}
.mobile-search-hint {
    margin-top: var(--space-3);
    font-size: var(--text-small);
    color: var(--color-muted);
}

/* Page offset under fixed header */
html {
    scroll-padding-top: calc(var(--header-actual-h, var(--header-mobile-height, 84px)) + env(safe-area-inset-top) + 8px);
}

body.storefront-layout > main {
    padding-top: calc(var(--header-actual-h, var(--header-mobile-height, 84px)) + env(safe-area-inset-top));
}

/* Zalo float — cách mép phải 16px, trên bottom nav 16px */
.zalo-float {
    position: fixed;
    right: 16px;
    bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 16px);
    z-index: var(--z-float);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-min);
    height: var(--touch-min);
    padding: 0;
    background: #0068ff;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 104, 255, 0.35);
    transition: opacity 0.25s, transform 0.25s;
}
.zalo-float-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zalo-float-icon .paw-icon {
    stroke: #fff;
}
.zalo-float-text {
    display: none !important;
}
body.cart-open .zalo-float,
body.lookup-otp-active .zalo-float,
body.is-checkout .zalo-float,
body.is-pdp .zalo-float {
    display: none;
}
.zalo-float.zalo-float--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}
/* Toast — mobile position above nav/sticky */
@media (max-width: 767px) {
.toast-notification {
        bottom: calc(var(--float-bottom, 64px) + 8px);
        z-index: calc(var(--z-drawer) + 2);
    }
body.is-pdp .toast-notification,
    body.is-checkout .toast-notification,
    body.lookup-otp-active .toast-notification {
        bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom) + 12px);
    }
body.cart-open .toast-notification {
        bottom: calc(var(--space-4) + env(safe-area-inset-bottom));
    }

}
.product-grid,
.hero-picks-grid,
.related-grid,
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(148px, 1fr));
    gap: var(--space-3);
    padding-bottom: 0;
}
/* Chỉ thêm padding-bottom khi có bottom nav (trang chủ, shop, danh mục) */
body.has-bottom-nav .product-grid,
body.has-bottom-nav .hero-picks-grid,
body.has-bottom-nav .related-grid,
body.has-bottom-nav .search-results-grid {
    padding-bottom: calc(var(--bottom-nav-h) + var(--space-5));
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.product-card-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}
.product-card-hit:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.wishlist-btn,
.quick-add-btn {
    z-index: 4;
}
.product-image-wrapper.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--color-surface-muted) 0%, var(--color-surface-soft) 100%);
}
.product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    color: var(--color-muted);
    text-align: center;
    padding: var(--space-3);
}
.product-placeholder-brand {
    font-size: var(--text-caption);
    font-weight: 800;
    letter-spacing: 0.08em;
}
.product-placeholder-note {
    font-size: 0.72rem;
    font-weight: 600;
}
.size-guide-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
}
.size-guide-table th,
.size-guide-table td {
    white-space: nowrap; /* Prevent awkward wrapping inside cells */
}
.product-card--no-image {
    opacity: 0.92;
}
.section-title {
    font-size: var(--text-h2);
    line-height: 1.15;
}
.policy-page h1,
.about-page h1,
.category-header h1,
.lookup-page h1 {
    font-size: var(--text-h1);
    line-height: 1.15;
}
.category-filter-btn {
    min-height: var(--touch-min);
    min-width: var(--touch-min);
    padding: var(--space-2) var(--space-3);
}
.close-cart-btn {
    min-width: var(--touch-min);
    min-height: var(--touch-min);
}
.lookup-page {
    max-width: 820px;
    margin: 0 auto !important;
    padding: var(--space-4) var(--space-3) var(--space-5) !important;
    min-height: 0 !important;
}
.lookup-page--compact {
    padding-top: var(--space-3) !important;
}
.lookup-hero--compact {
    margin: 0 0 var(--space-4);
}
.lookup-hero--compact h1 {
    margin: 0 0 var(--space-2);
    font-size: var(--text-h2) !important;
}
.lookup-lead {
    color: var(--color-muted);
    font-size: var(--text-small);
    margin-bottom: var(--space-3);
}
/* About compact */
.about-page--compact .about-inner {
    padding: var(--space-4) var(--space-3);
}
.about-hero {
    margin-bottom: var(--space-5);
}
.about-lead {
    color: var(--color-muted);
    margin: var(--space-2) 0 var(--space-4);
    line-height: 1.55;
}
.about-cta {
    width: 100%;
    min-height: var(--touch-min);
}
.about-block {
    margin-bottom: var(--space-5);
}
.about-block h2 {
    font-size: var(--text-h3);
    margin-bottom: var(--space-2);
}
.about-steps,
.about-list {
    padding-left: var(--space-4);
    color: var(--color-muted);
    line-height: 1.55;
}
.about-foot-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-5);
}
.about-foot-cta .btn {
    width: 100%;
    min-height: var(--touch-min);
}
/* Order success compact */
.order-success-hero--compact {
    padding: var(--space-3) var(--space-3) var(--space-2);
    max-height: none;
}
.order-success-hero--compact h1 {
    font-size: var(--text-h2);
}
.order-code-box--compact {
    width: 100%;
    max-width: 100%;
    padding: var(--space-3);
}
.order-code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.order-code-row strong,
.order-code-row .order-code-value {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
}
.order-copy-btn {
    min-height: var(--touch-min);
    flex-shrink: 0;
}
.order-success-actions--stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: 0 var(--space-3) var(--space-3);
}
.order-success-actions--stack .btn {
    width: 100%;
    min-height: 48px;
}
.order-success-note {
    padding: 0 var(--space-3) var(--space-3);
    font-size: var(--text-small);
    color: var(--color-muted);
    text-align: center;
}
/* Size guide — HTML first on mobile */
.sg-banner--optional {
    display: none;
}
.size-guide-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.size-guide-table {
    font-size: var(--text-small);
    line-height: 1.5;
}
/* P2: Footer compact + link targets */
.btn:focus-visible,
.mobile-header-btn:focus-visible,
.mobile-bottom-nav-item:focus-visible,
.footer-accordion-trigger:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.btn:active:not(:disabled) {
    transform: scale(0.98);
}
.btn:disabled,
.btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}
.social-link:active {
    background: var(--color-surface-muted);
}
/* Product card — khung 4:5, cover (crop viền xám mockup, fill khung) */
.product-card__media,
.product-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f3f3f3;
    overflow: hidden;
    flex-shrink: 0;
}
.product-card__media .product-media-layer,
.product-card__media picture,
.product-image-wrapper picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.product-card__media img,
.product-card .product-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    padding: 0;
    box-sizing: border-box;
}
.product-image-wrapper.is-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: paw-shimmer 1.2s infinite;
}
.product-info {
    padding: var(--space-2) var(--space-2) var(--space-3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex-shrink: 0;
}
.related-grid .product-image-wrapper {
    max-height: 200px;
}
@keyframes paw-shimmer {
    0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}

.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    min-height: 2.7em;
}
/* Hero mobile compact */
.hero {
    display: flex;
    flex-direction: column;
    padding: 12px 12px 28px;
    min-height: auto;
    gap: 16px;
}
.hero-visual {
    order: 2;
    width: 100%;
}
.hero-media--desktop {
    display: none;
}
.hero-media--mobile {
    position: relative;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    background: var(--color-surface-muted);
}
.hero-media--mobile img,
.hero-media--mobile picture,
.hero-media--mobile .hero-mobile-product {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.hero-secondary-link {
    display: none;
    text-align: center;
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--color-muted);
}
.hero-subtitle {
    font-size: var(--text-hero-eyebrow, 0.6875rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent, var(--color-primary));
    margin-bottom: var(--space-2);
}
.hero-title {
    font-size: var(--text-hero-title, clamp(2.25rem, 4.5vw, 2.375rem));
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}
.hero-desc {
    font-size: var(--text-body);
    color: var(--color-muted);
    line-height: 1.45;
    margin-bottom: var(--space-2);
}
.hero-meta-line {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin: 0 0 var(--space-3);
    opacity: 0.85;
}
.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    scroll-margin-bottom: calc(var(--bottom-nav-h) + var(--space-3));
}
.hero-cta-row .btn {
    width: 100%;
    min-height: 48px;
}
/* Trust strip — horizontal scroll */
.trust-strip {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-3) var(--space-3) var(--space-4);
    scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar {
    display: none;
}
.trust-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-small);
    font-weight: 600;
    white-space: nowrap;
}
.trust-chip .paw-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}
/* Category cards grid */
.category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    padding: 0 var(--space-3);
}
.category-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    text-decoration: none;
    color: inherit;
}
/* Collection card — khung riêng, contain (cover khi có cover_image chuẩn) */
.collection-card__image,
.category-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f3f3f3;
    overflow: hidden;
}
.collection-card__image picture,
.category-card-media picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.collection-card__image img,
.category-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 0;
    box-sizing: border-box;
}
.category-card-body {
    padding: var(--space-3);
    line-height: 1.35;
}
.category-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-body);
    margin: 0 0 var(--space-1);
    line-height: 1.25;
}
.category-card-sub {
    font-size: var(--text-small);
    color: var(--color-muted);
    margin: 0;
    line-height: 1.4;
}
/* Footer mobile — nền đen, accordion */
.site-footer--mobile,
.footer-mobile {
    display: block;
    flex-shrink: 0;
    margin-top: 32px;
    background: #111111;
    color: #ffffff;
    padding: 36px 20px calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 20px);
    border-top: none;
}
.footer-desktop-wrap {
    display: none;
}
.footer-mobile-brand {
    margin-bottom: 8px;
}
.footer-mobile-brand .footer-logo {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.footer-mobile-brand .footer-tagline {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 8px;
}
.footer-social-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #b8b8b8 !important;
}
.footer-social-pill:hover {
    color: #ff2026 !important;
    border-color: rgba(255, 32, 38, 0.4);
}
.footer-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: #ffffff;
    letter-spacing: 0.04em;
}
.footer-accordion-chevron {
    stroke: #888;
    transition: transform 0.2s ease;
}
.footer-accordion-trigger[aria-expanded="true"] .footer-accordion-chevron {
    transform: rotate(180deg);
}
.footer-accordion-panel {
    display: none;
    padding-bottom: 12px;
}
.footer-accordion-panel.is-open {
    display: block;
}
.footer-accordion-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-accordion-panel li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #b8b8b8 !important;
    min-height: 0;
}
.footer-accordion-panel li a:hover {
    color: #ff2026 !important;
}
.footer-accordion-panel .footer-contact-muted {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #888;
}
.footer-bottom--mobile {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}
.footer-bottom--mobile p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    line-height: 1.6;
}
.footer-bottom--mobile p + p {
    margin-top: 4px;
}
/* Cart empty */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-6) var(--space-4);
    flex: 1;
}
.cart-empty-state .paw-icon {
    color: var(--color-muted);
    margin-bottom: var(--space-4);
    width: 56px;
    height: 56px;
}
.cart-empty-state h4 {
    font-size: var(--text-h3);
    margin-bottom: var(--space-2);
}
.cart-empty-state p {
    color: var(--color-muted);
    font-size: var(--text-body);
    margin-bottom: var(--space-4);
}
.cart-drawer.is-empty .cart-drawer-footer,
.cart-drawer.is-empty .cart-coupon-box {
    display: none !important;
}
/* PDP mobile */
body.is-pdp {
    overflow-x: hidden;
}
.color-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}
.color-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border: 2px solid rgba(0, 0, 0, 0.14);
    flex-shrink: 0;
    box-sizing: border-box;
}
.color-dot.color-dot--light {
    border-color: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.color-dot.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(255, 27, 27, 0.2);
}
/* Inline size picker — compact + collapsible on PDP */
.size-block {
    min-height: var(--touch-min);
    min-width: var(--touch-min);
}
/* Sticky bar — chưa chọn size: nút THÊM GIỎ mờ (click vẫn scroll lên size picker) */
/* Sticky bar — chưa chọn size: nút MUA NGAY đổi thành CHỌN SIZE (xám) */
body.storefront-layout.is-pdp:not(.has-pdp-sticky),
body.storefront-layout.is-checkout {
    padding-bottom: 0;
}
body.is-pdp .footer-mobile {
    padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom) + 20px);
}
body.is-checkout .footer-mobile {
    padding-bottom: calc(72px + env(safe-area-inset-bottom) + 20px);
}
@keyframes paw-shake {
    0%, 100% { transform: translateX(0); }
25% { transform: translateX(-6px); }
75% { transform: translateX(6px); }
}

/* Inner pages spacing under header */
.category-page,
.shop-page,
.about-page,
.not-found-page,
.best-sellers-page {
    padding-top: var(--space-4) !important;
    padding-bottom: calc(var(--bottom-nav-h) + var(--space-4));
}
.hero-picks {
    padding-bottom: calc(var(--bottom-nav-h) + var(--space-4));
}
.size-guide-page {
    padding: var(--space-4) 12px 48px !important;
}
.lab {
    padding: var(--space-4) 14px 64px !important;
}
.flash-sale-landing-hero {
    padding: 24px 16px 28px;
}
#wishlist-clear-btn[hidden] {
    display: none !important;
}
.wishlist-page-header #wishlist-clear-btn:not([hidden]) {
    flex-shrink: 0;
}
.order-success-page--minimal,
.lookup-page {
    padding-top: var(--space-4) !important;
}
/* Typography clamp */
.lookup-page h1,
.about-page h1,
.category-header h1 {
    font-size: var(--text-h1) !important;
    line-height: 1.15;
}
.trust-bar-desktop {
    display: none;
}
.trust-strip-section {
    display: block;
}
.shop-legacy-hidden {
    display: none !important;
}
.shop-page-search {
    margin: 0 0 var(--space-3);
}
.shop-page-search-input {
    width: 100%;
    min-height: 44px;
}
.shop-page-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-1);
}
.shop-page-chips::-webkit-scrollbar {
    display: none;
}
.shop-page .shop-chip {
    flex-shrink: 0;
    white-space: nowrap;
}
.shop-page .category-toolbar,
.category-page .category-toolbar {
    position: sticky;
    top: calc(var(--header-actual-h, var(--header-mobile-height, 84px)) + env(safe-area-inset-top) - 1px);
    z-index: 20;
    background: var(--color-surface, #fff);
    padding: var(--space-2) 0;
    margin-bottom: var(--space-2);
}
/* ── P1: Product card CTA ── */
.product-card-cta {
    width: 100%;
    margin-top: var(--space-2);
    text-align: center;
}
/* ── P1: Search results ── */
.search-results-section {
    padding: var(--space-4) var(--space-3);
}
.search-results-header,
.hero-picks-header,
.best-sellers-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
}
.best-sellers-header .btn,
.hero-picks-header .btn {
    width: 100%;
    min-height: var(--touch-min);
    text-align: center;
}
.best-sellers-page {
    padding-bottom: calc(var(--bottom-nav-h) + var(--content-pad-extra, 24px) + env(safe-area-inset-bottom));
}
.section-subline,
.search-results-meta {
    color: #666;
    font-size: 0.85rem;
    margin-top: var(--space-1);
}
.search-results-empty {
    color: var(--color-muted);
    font-size: 0.95rem;
}
/* ── P1: Social proof ── */
.social-proof-section {
    padding: var(--space-5) var(--space-3);
    background: var(--color-surface-soft);
}
.social-proof-aggregate {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-top: var(--space-1);
}
.social-proof-aggregate strong {
    color: var(--color-text);
}
.social-proof-list {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-2);
    -webkit-overflow-scrolling: touch;
}
.social-proof-card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}
.social-proof-stars {
    color: #f5a623;
    letter-spacing: -1px;
    font-size: 0.95rem;
}
.social-proof-comment {
    margin: var(--space-2) 0;
    font-size: 0.9rem;
    line-height: 1.45;
}
.social-proof-meta {
    font-size: 0.78rem;
    color: var(--color-muted);
}
.social-proof-meta a {
    color: var(--color-primary);
}
/* ── P1: Category toolbar & bottom sheet ── */
.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding: 0 var(--space-1);
}
.category-toolbar-count {
    font-size: 0.85rem;
    color: var(--color-muted);
}
.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    min-height: var(--touch-min);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
}
.category-sort-desktop {
    display: none;
}
body.cat-sheet-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
.cat-sheet-overlay[hidden],
.cat-bottom-sheet[hidden] {
    display: none !important;
}
.cat-sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-drawer);
    background: rgba(0, 0, 0, 0.45);
}
.cat-bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-drawer) + 1);
    background: var(--color-surface);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-3) var(--space-4) calc(var(--space-4) + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.12);
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.cat-sheet-handle {
    width: 40px;
    height: 4px;
    margin: 0 auto var(--space-3);
    background: var(--color-border);
    border-radius: var(--radius-full);
    border: none;
    padding: 0;
    cursor: pointer;
}
.cat-sheet-title {
    font-size: 1.1rem;
    margin: 0 0 var(--space-4);
}
.cat-sheet-section {
    border: none;
    margin: 0 0 var(--space-4);
    padding: 0;
}
.cat-sheet-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--color-muted);
    margin-bottom: var(--space-2);
}
.cat-sheet-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-height: var(--touch-min);
    padding: var(--space-2) 0;
    font-size: 0.95rem;
    cursor: pointer;
}
.cat-sheet-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-2);
}
.cat-sheet-actions .btn {
    flex: 1;
    min-height: 48px;
}
/* ── P1: Lookup OTP digits ── */
.lookup-form {
    flex-direction: column;
}
.lookup-form .btn {
    width: 100%;
    min-height: 48px;
}
.lookup-otp-digits {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    margin: var(--space-3) 0;
}
.lookup-otp-digit {
    width: 44px;
    height: 48px;
    min-width: 44px;
    min-height: 48px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}
body.lookup-otp-active {
    --content-pad-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom) + var(--content-pad-extra, 24px));
}
.lookup-otp-panel {
    padding-bottom: var(--space-4);
}
.lookup-otp-sticky {
    display: none;
}
body.lookup-otp-active .lookup-otp-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-sticky-cta);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    padding: 10px var(--space-3) calc(10px + env(safe-area-inset-bottom));
}
.lookup-otp-sticky .btn {
    width: 100%;
    min-height: 48px;
}
body.lookup-otp-active .lookup-otp-actions .lookup-verify-otp-btn {
    display: none;
}
.lookup-otp-digit:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(255, 27, 27, 0.15);
}
.lookup-otp-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.lookup-otp-actions .btn {
    min-height: 48px;
}
/* ── P1: Policy pages ── */
.policy-page {
    padding: var(--space-4) var(--space-3) calc(var(--space-6) + var(--bottom-nav-h));
}
.policy-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    margin: var(--space-4) 0;
}
.policy-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-text);
    text-align: center;
}
.policy-page h1 {
    font-size: clamp(1.35rem, 5vw, 2rem);
    line-height: 1.2;
    word-break: keep-all;
}
.policy-nav-link.is-active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-surface-soft);
}
.policy-toc {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.policy-toc a {
    font-size: 0.8rem;
    color: var(--color-primary);
}
.policy-section {
    margin-bottom: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.policy-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    min-height: var(--touch-min);
    padding: var(--space-3);
    border: none;
    background: var(--color-surface-muted);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
.policy-section-body {
    padding: var(--space-3);
}
.policy-list {
    margin: 0 0 var(--space-3);
    padding-left: 1.2rem;
}
.policy-list li {
    margin-bottom: var(--space-2);
    line-height: 1.5;
    color: var(--color-muted);
}
.policy-section-body p {
    margin: 0 0 var(--space-2);
    line-height: 1.6;
    color: var(--color-muted);
}
/* ── P1: Size guide picker top ── */
.size-guide-page .size-guide-picker:first-of-type {
    margin: var(--space-4) 0;
    padding: var(--space-3);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}
.size-guide-picker-row {
    flex-direction: column;
}
.size-guide-picker-row label {
    width: 100%;
}
.size-guide-suggest-btn {
    width: 100%;
    min-height: 48px;
}
.shop-collections-section {
    padding-top: var(--space-4);
}
/* ── P2: Wishlist + quick-add mobile ── */
.product-card {
    position: relative;
}
.wishlist-btn {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-min);
    height: var(--touch-min);
    padding: 0;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.wishlist-btn:active {
    transform: scale(0.92);
}
.wishlist-btn.is-wishlisted {
    color: var(--color-primary);
    background: var(--color-surface-soft);
}
.wishlist-btn.is-wishlisted .wishlist-icon-svg path {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}
.wishlist-btn .wishlist-icon-svg {
    display: block;
    fill: none;
    stroke: currentColor;
}
.wishlist-btn .wishlist-icon-svg path {
    fill: rgba(0, 0, 0, 0.08);
    stroke: currentColor;
    stroke-width: 1.75;
}
/* Wishlist page */
.wishlist-page-section {
    padding-top: var(--space-4);
}
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-3);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface-soft);
}
.wishlist-empty[hidden] {
    display: none !important;
}
.wishlist-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--color-muted);
    box-shadow: var(--shadow-sm);
}
.wishlist-empty-svg {
    display: block;
    stroke: currentColor;
}
.wishlist-empty-svg path {
    fill: rgba(0, 0, 0, 0.06);
    stroke: currentColor;
}
.wishlist-empty-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
}
.wishlist-empty-desc {
    margin: 0;
    max-width: 28rem;
    color: var(--color-muted);
    line-height: 1.5;
    font-size: 0.92rem;
}
.wishlist-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    width: 100%;
    margin-top: var(--space-2);
}
.wishlist-empty-actions .btn {
    min-width: 160px;
}
.wishlist-page-count {
    color: var(--color-primary);
    font-weight: 700;
}
.quick-add-btn {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-2);
    left: auto;
    width: auto;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-text);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transform: none;
    opacity: 1;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.quick-add-btn:active {
    transform: scale(0.94);
}
.quick-add-btn .quick-add-icon {
    stroke: var(--color-primary);
}
.quick-add-label {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}
.recently-viewed-section,
.wishlist-section {
    padding: var(--space-4) var(--space-3);
}
/* ── P2: Micro-animations ── */
.cat-bottom-sheet {
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-bottom-sheet.is-open {
    transform: translateY(0);
}
.cat-sheet-overlay {
    opacity: 0;
    transition: opacity 0.28s ease;
}
.cat-sheet-overlay.is-open {
    opacity: 1;
}
.product-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:active {
    transform: scale(0.985);
}
.paw-recent-card,
.paw-wishlist-card {
    animation: paw-fade-up 0.35s ease both;
}
@keyframes paw-fade-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.storefront-layout.page-enter main {
        animation: none;
    }
.mobile-drawer,
    .mobile-drawer-overlay,
    .mobile-search-overlay,
    .cat-bottom-sheet,
    .cat-sheet-overlay,
    .product-card,
    .toast-notification,
    .paw-recent-card,
    .paw-wishlist-card {
        transition: none !important;
        animation: none !important;
    }
.product-card:active {
        transform: none;
    }
}

@media (min-width: 768px) {
    .trust-bar-desktop {
        display: block;
    }
.trust-strip-section {
        display: none;
    }
.mobile-header,
    .mobile-bottom-nav,
    .mobile-drawer,
    .mobile-drawer-overlay,
    .mobile-search-overlay,
    .footer-mobile {
        display: none !important;
    }
.desktop-header {
        display: block;
    }
.footer-desktop-wrap {
        display: block;
        flex-shrink: 0;
        margin-top: auto;
        background: #111111;
    }
body.storefront-layout.has-bottom-nav:not(.is-checkout):not(.cart-open):not(.lookup-otp-active),
    body.storefront-layout.is-pdp:not(.has-pdp-sticky),
    body.storefront-layout.is-checkout {
        --content-pad-bottom: 0;
    }
.hero-picks,
    .category-page,
    .shop-page,
    .about-page,
    .not-found-page,
    .best-sellers-page {
        padding-bottom: 0;
    }
html {
        scroll-padding-top: calc(var(--header-desktop-h, 96px) + 8px);
    }
    body.storefront-layout > main {
        padding-top: var(--header-desktop-h, 96px);
    }
.product-grid,
    .hero-picks-grid,
    .related-grid,
    .search-results-grid,
    .wishlist-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 0;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
    }
/* Hero picks / Bestseller: cố định 4 cột trên desktop để không bị collapse */
.hero-picks-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
    }
.section {
        padding: 60px 40px 0;
        max-width: 1400px;
        margin: 0 auto;
    }
.section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
.product-image-wrapper {
        max-height: none;
        aspect-ratio: 4 / 5;
    }
.related-grid .product-image-wrapper {
        max-height: none;
    }
.product-info {
        padding: 20px;
        gap: 8px;
    }
.product-name {
        min-height: 0;
        -webkit-line-clamp: unset;
    }
.product-card:active {
        transform: none;
    }
.quick-add-btn {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 0;
        min-height: 0;
        padding: 12px;
        opacity: 1;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
.product-card:hover .quick-add-btn {
        transform: translateY(0);
    }
.recently-viewed-section,
    .wishlist-page-section {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 60px 40px 0;
    }
.wishlist-empty-actions .btn {
        width: auto;
    }
.shop-collections-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 40px 0;
    }
.category-cards {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
        gap: 30px;
    }
.zalo-float {
        right: 24px;
        bottom: 24px;
        width: auto;
        height: auto;
        padding: 10px 14px;
        border-radius: var(--radius-full);
    }
.zalo-float-text {
        display: inline;
    }
.sg-banner--optional {
        display: block;
    }
.best-sellers-header,
    .hero-picks-header,
    .search-results-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
.best-sellers-header .btn,
    .hero-picks-header .btn {
        width: auto;
    }
.policy-nav {
        display: flex;
        flex-wrap: wrap;
    }
.hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 40px 40px 60px;
        min-height: 80vh;
        max-width: 1400px;
        margin: 0 auto;
    }
.hero-visual {
        order: 0;
        width: 100%;
        align-self: stretch;
        display: flex;
        align-items: center;
    }
.hero-media--desktop {
        display: flex;
    }
.hero-media--mobile {
        display: none;
    }
.hero-secondary-link {
        display: inline;
    }
.hero-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
.hero-cta-row .btn {
        width: auto;
    }
.cat-bottom-sheet,
    .cat-sheet-overlay {
        display: none !important;
    }
.category-filter-btn {
        display: none;
    }
.category-sort-desktop {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-2);
        justify-content: flex-end;
    }
.category-sort-link {
        padding: var(--space-1) var(--space-3);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--color-text);
    }
.category-sort-link.is-active {
        border-color: var(--color-primary);
        color: var(--color-primary);
        background: var(--color-surface-soft);
    }
.lookup-form {
        flex-direction: row;
    }
.lookup-form .btn {
        width: auto;
    }
.size-guide-picker-row {
        flex-direction: row;
    }
.size-guide-suggest-btn {
        width: auto;
    }
.social-proof-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }
.social-proof-card {
        flex: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-grid,
    .hero-picks-grid,
    .related-grid,
    .search-results-grid,
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}


/* ===== MOBILE PRODUCT CARD OVERRIDES ===== */
@media (max-width: 767px) {
    .product-grid,
    .hero-picks-grid,
    .related-grid,
    .search-results-grid,
    .home-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 10px !important;
    }
}

@media (max-width: 360px) {
    .product-grid,
    .hero-picks-grid,
    .related-grid,
    .search-results-grid,
    .home-product-grid {
        gap: 12px 8px !important;
    }
}

@media (max-width: 767px) {
.product-card {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
.product-card .product-image-wrapper,
    .product-card__media {
        aspect-ratio: 4 / 5 !important;
        background: #f3f3f2 !important;
        border-radius: 4px !important;
        overflow: hidden !important;
    }
.product-card .wishlist-btn {
        width: 36px !important;
        height: 36px !important;
        top: 8px !important;
        right: 8px !important;
    }
.product-info {
        padding: 10px 2px 2px !important;
    }
.product-name {
        font-size: 0.9rem !important; /* 14.4px */
        line-height: 1.25 !important;
        min-height: 36px !important;
        margin-bottom: 6px !important;
    }
.product-price-wrap {
        margin-bottom: 10px !important;
    }
.product-price {
        font-size: 1rem !important; /* 16px */
    }
.product-card-cta {
        font-size: 0.72rem !important; /* 11.5px */
    }
.product-card .product-image-wrapper,
.product-card__media {
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}
.product-card .product-image-wrapper img,
.product-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
