/* MY-MobileX v2 — consistency, responsive polish and motion system */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --content-gutter: clamp(16px, 3vw, 30px);
  --control-height: 48px;
  --control-height-sm: 40px;
  --control-height-lg: 54px;
  --section-y: clamp(54px, 6vw, 82px);
  --section-y-sm: clamp(38px, 4.5vw, 56px);
  --card-padding: clamp(20px, 2.5vw, 30px);
  --ease-standard: cubic-bezier(.2, .7, .2, 1);
  --ease-emphasis: cubic-bezier(.16, 1, .3, 1);
  --shadow-float: 0 18px 55px rgba(3, 37, 100, .13);
}

html { scroll-padding-top: 190px; }
body {
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 16%, rgba(18, 75, 139, .035), transparent 26%),
    radial-gradient(circle at 92% 78%, rgba(252, 116, 6, .035), transparent 24%),
    var(--background);
}
.container,
.container-fluid { --bs-gutter-x: calc(var(--content-gutter) * 2); }
main { min-height: 52vh; }
p:last-child { margin-bottom: 0; }
.section-space { padding-block: var(--section-y); }
.section-space-sm { padding-block: var(--section-y-sm); }
.section-head { margin-bottom: clamp(24px, 3vw, 38px); }
.section-head > div { min-width: 0; }
.section-title { letter-spacing: -.025em; }
.section-copy { margin-top: var(--space-3); line-height: 1.75; }
.section-eyebrow { margin-bottom: var(--space-2); line-height: 1.35; }
.surface-card { box-shadow: 0 8px 30px rgba(3, 37, 100, .065); }

/* Predictable vertical rhythm */
.surface-card > :first-child,
.filter-card > :first-child,
.summary-card > :first-child,
.article-content > :first-child { margin-top: 0; }
.surface-card > :last-child,
.filter-card > :last-child,
.summary-card > :last-child,
.article-content > :last-child { margin-bottom: 0; }
.row { --bs-gutter-x: 24px; }
.row.g-2 { --bs-gutter-x: 12px; --bs-gutter-y: 12px; }
.row.g-3 { --bs-gutter-x: 18px; --bs-gutter-y: 18px; }
.row.g-4 { --bs-gutter-x: 28px; --bs-gutter-y: 28px; }
.row.g-5 { --bs-gutter-x: 40px; --bs-gutter-y: 40px; }

/* Buttons: every label is mathematically centred */
.btn {
  display: inline-flex;
  min-height: var(--control-height);
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  line-height: 1.15;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 9px;
  box-shadow: none;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.btn-sm,
.btn-group-sm > .btn { min-height: var(--control-height-sm); padding: 0 16px; font-size: .82rem; }
.btn-lg,
.btn-group-lg > .btn { min-height: var(--control-height-lg); padding: 0 28px; font-size: 1rem; }
.btn::after {
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -45%;
  width: 36%;
  height: 260%;
  content: "";
  background: rgba(255, 255, 255, .16);
  transform: rotate(18deg) translateX(-240%);
  transition: transform .65s var(--ease-emphasis);
}
.btn:hover::after { transform: rotate(18deg) translateX(520%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn i { line-height: 1; }
.btn-link { min-height: auto; padding: 2px 0; overflow: visible; }
.btn-link::after { display: none; }
.icon-btn {
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  line-height: 1;
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, transform .24s var(--ease-emphasis), box-shadow .24s ease;
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(3, 37, 100, .15); }

/* Forms */
.form-control,
.form-select,
.input-group-text {
  min-height: var(--control-height);
  padding-block: 10px;
  line-height: 1.35;
}
.form-label { margin-bottom: 7px; line-height: 1.35; }
textarea.form-control { min-height: 132px; resize: vertical; }
.input-group > .btn { min-height: var(--control-height); }
.form-check { min-height: 24px; }
.form-check-input { width: 18px; height: 18px; margin-top: .18em; }
.form-check-label { padding-left: 3px; }
.accordion-button { min-height: 62px; padding: 18px 22px; color: var(--ink); font-weight: 800; line-height: 1.35; }
.accordion-button:not(.collapsed) { color: var(--brand-navy); background: var(--brand-blue-soft); box-shadow: none; }
.accordion-body { padding: 20px 22px 24px; line-height: 1.75; }
.accordion-item { overflow: hidden; border-color: var(--border); }
.accordion-item + .accordion-item { margin-top: 12px; border-top: 1px solid var(--border); }

/* Header */
.site-header {
  will-change: box-shadow;
  transition: box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 32px rgba(3, 37, 100, .13); }
.announcement-bar .container { min-height: 36px; }
.main-header .container { min-height: 86px; }
.main-header { background: rgba(255, 255, 255, .98); }
.brand-crop { flex-basis: 205px; width: 205px; height: 74px; }
.header-search .form-control { height: 50px; padding-left: 50px; padding-right: 114px; line-height: 1.2; }
.header-search > i { top: 50%; left: 20px; transform: translateY(-50%); }
.header-search .btn { top: 4px; right: 4px; min-height: 42px; height: 42px; padding-inline: 24px; }
.header-actions { gap: 12px; }
.category-nav { min-height: 64px; border-bottom: 1px solid rgba(226, 232, 240, .8); }
.category-nav .container,
.category-nav .nav { min-height: 64px; }
.category-nav .container { position: relative; }
.category-nav .nav { gap: 2px; }
.category-nav .nav-link {
  display: inline-flex;
  min-height: 56px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  border: 0;
}
.category-nav button.nav-link { font-family: inherit; }
.category-nav .all-categories-btn {
  min-width: 164px;
  min-height: 46px;
  padding-inline: 16px !important;
  border-radius: 8px;
}
.mega-chevron { transition: transform .25s ease; }
.category-trigger[aria-expanded="true"] .mega-chevron { transform: rotate(180deg); }
.category-nav .mega-menu-host { position: static !important; }
.mega-menu {
  top: calc(100% + 1px);
  display: block;
  width: min(920px, calc(100vw - 2 * var(--content-gutter)));
  min-height: 310px;
  padding: 34px 32px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 16px 16px;
  transform: translateY(-8px) scale(.985);
  transform-origin: top left;
  transition: opacity .22s ease, transform .28s var(--ease-emphasis), visibility .22s;
}
.mega-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 15px;
  content: "";
}
.mega-menu > .row { min-height: 240px; }
.nav-item:hover > .mega-menu { display: block; }
.mega-menu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.mega-title { margin-bottom: 8px; }
.mega-link { padding: 6px 0; line-height: 1.35; transition: color .2s ease, transform .2s ease; }
.search-suggestions { top: calc(100% + 10px); padding: 10px; border-radius: 14px; }
.suggestion-item { min-height: 64px; padding: 10px 12px; }

/* Page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 214px;
  padding: clamp(44px, 5vw, 62px) 0;
  background: linear-gradient(118deg, #032564 0%, #0b3b7a 46%, #1b68ad 100%);
}
.page-hero::before,
.page-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}
.page-hero::before { top: -150px; right: 8%; width: 360px; height: 360px; }
.page-hero::after { right: 20%; bottom: -175px; width: 290px; height: 290px; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 860px; margin: 12px 0 10px; letter-spacing: -.025em; line-height: 1.12; }
.page-hero p { max-width: 760px; font-size: clamp(.95rem, 1.5vw, 1.08rem); line-height: 1.65; }
.breadcrumb { line-height: 1.3; }

/* Home hero */
.hero-section { padding-top: 24px; }
#heroCarousel,
.hero-section .carousel-inner,
.hero-slide { border-radius: 24px; }
#heroCarousel,
.hero-section .carousel-inner {
  overflow: hidden;
  isolation: isolate;
}
.hero-slide { min-height: 470px; box-shadow: 0 16px 48px rgba(3, 37, 100, .14); }
.hero-slide::before {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  animation: orbitPulse 7s ease-in-out infinite;
}
.hero-content { display: flex; width: min(66%, 720px); min-height: 470px; padding: clamp(44px, 6vw, 82px); flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-title { width: 100%; max-width: 13ch; overflow-wrap: break-word; letter-spacing: -.045em; text-wrap: balance; }
.hero-text { width: 100%; max-width: 50ch; margin-bottom: 28px; line-height: 1.7; text-wrap: pretty; }
.hero-visual { animation: floatVisual 5.5s ease-in-out infinite; }
.carousel-indicators { margin-bottom: 18px; }
.carousel-fade .carousel-item { transition: opacity .68s cubic-bezier(.22, 1, .36, 1); }
.hero-carousel-control {
  top: 50%;
  bottom: auto;
  width: 46px;
  height: 46px;
  opacity: 1;
  transform: translateY(-50%);
  z-index: 5;
}
.carousel-control-prev.hero-carousel-control { left: 18px; }
.carousel-control-next.hero-carousel-control { right: 18px; }
.hero-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #032564;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(2, 28, 75, .18);
  backdrop-filter: blur(10px);
  transition: color .2s ease, background-color .2s ease, box-shadow .25s ease, transform .25s var(--ease-emphasis);
}
.hero-carousel-control:hover .hero-arrow,
.hero-carousel-control:focus-visible .hero-arrow {
  color: #fff;
  background: #032564;
  box-shadow: 0 14px 32px rgba(2, 28, 75, .28);
  transform: scale(1.07);
}

/* Cards */
.category-card,
.product-card,
.support-card,
.testimonial-card,
.blog-card,
.brand-pill,
.dashboard-stat,
.cart-item,
.filter-card,
.summary-card,
.article-content {
  border-color: rgba(203, 213, 225, .78);
}
.category-card { padding: 24px 14px 22px; }
.category-icon { margin-bottom: 16px; }
.product-card { border-radius: 18px; }
.product-media { overflow: hidden; }
.product-body { padding: 18px; }
.product-title {
  display: -webkit-box;
  min-height: 46px;
  margin: 7px 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.45;
}
.product-rating { min-height: 22px; margin-bottom: 10px; }
.product-card .add-cart { margin-top: 16px; }
.product-actions { top: 14px; right: 14px; gap: 9px; }
.product-actions .icon-btn { width: 40px; min-width: 40px; height: 40px; min-height: 40px; }
.product-card:hover { transform: translateY(-7px); }
.product-card:hover .product-media img { transform: scale(1.055) rotate(-.4deg); }
.support-card {
  display: flex;
  min-height: 190px;
  padding: var(--card-padding);
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 18px;
  transition: color .25s ease, border-color .25s ease, transform .3s var(--ease-emphasis), box-shadow .3s ease;
}
.support-card i { display: inline-grid; width: 50px; height: 50px; margin-bottom: 18px; place-items: center; background: var(--brand-blue-soft); border-radius: 14px; transition: transform .3s var(--ease-emphasis), color .25s ease, background-color .25s ease; }
.support-card h3 { margin: 0 0 8px; line-height: 1.35; }
.support-card p { line-height: 1.65; }
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.support-card:hover i { color: #fff; background: var(--brand-blue); transform: rotate(-5deg) scale(1.06); }
.testimonial-card { padding: var(--card-padding); border-radius: 18px; }
.testimonial-card p { line-height: 1.75; }
.blog-card { border-radius: 18px; transition: transform .3s var(--ease-emphasis), box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.blog-cover { min-height: 210px; }
.blog-cover i { transition: transform .45s var(--ease-emphasis); }
.blog-card:hover .blog-cover i { transform: scale(1.12) rotate(-5deg); }
.blog-card-body { padding: 24px; }
.brand-pill { min-height: 88px; border-radius: 16px; transition: transform .28s var(--ease-emphasis), box-shadow .28s ease, color .2s ease, border-color .2s ease; }
.brand-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.trust-strip { padding-block: 26px; }
.trust-item { min-height: 58px; }
.promo-card { min-height: 270px; padding: 38px; }
.compatible-finder { padding: clamp(28px, 4vw, 48px); }

/* Catalog, product and commerce */
.filter-card { padding: 24px; }
.filter-group + .filter-group { padding-top: 22px; margin-top: 22px; }
.shop-toolbar { min-height: 64px; padding: 12px 18px; }
.product-main-image { min-height: 520px; }
.gallery-thumb { transition: border-color .2s ease, transform .25s var(--ease-emphasis), box-shadow .2s ease; }
.gallery-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.delivery-card { padding: 20px; }
.choice-btn { display: inline-flex; min-width: 56px; min-height: 44px; padding: 8px 14px; align-items: center; justify-content: center; text-align: center; line-height: 1.2; }
.quantity-box { height: 48px; align-items: stretch; }
.quantity-box button,
.quantity-box input { height: 46px; line-height: 1; }
.cart-item { padding: 22px; }
.summary-card { padding: 26px; }
.summary-line { min-height: 38px; align-items: center; }
.checkout-step { margin-bottom: 24px !important; }
.checkout-step-number { flex: 0 0 36px; width: 36px; height: 36px; }
.account-nav a { min-height: 52px; padding: 13px 18px; line-height: 1.25; }
.dashboard-stat { min-height: 132px; padding: 24px; }
.article-content { padding: clamp(26px, 5vw, 56px); }
.article-content p,
.article-content li { line-height: 1.78; }
.article-content h2 { margin-top: 38px; margin-bottom: 14px; }
.empty-state { padding: clamp(52px, 8vw, 84px) 24px; }

/* Footer */
.newsletter-band { padding-block: 38px; }
.newsletter-form { min-height: 52px; }
.newsletter-form input { min-height: 52px; padding-inline: 18px; }
.newsletter-form .btn { min-height: 52px; }
.footer-main { padding: 64px 0 44px; }
.footer-title { margin-bottom: 18px; }
.footer-link {
  display: flex;
  width: fit-content;
  min-height: 31px;
  padding: 4px 0;
  align-items: center;
  line-height: 1.4;
}
.footer-link + .footer-link { margin-top: 2px; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; }

/* Overlays */
.cookie-banner { width: min(360px, calc(100vw - 32px)); padding: 22px; border-radius: 16px; }
.cookie-banner .btn { min-height: 40px; }
.toast { border-radius: 12px; box-shadow: var(--shadow-float); }

/* Scroll and load motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .72s var(--ease-standard) var(--reveal-delay, 0ms),
    transform .72s var(--ease-emphasis) var(--reveal-delay, 0ms);
}
.motion-ready .reveal.reveal-left { transform: translateX(-28px); }
.motion-ready .reveal.reveal-right { transform: translateX(28px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.page-hero .breadcrumb,
.page-hero h1,
.page-hero p { animation: heroContentIn .7s var(--ease-emphasis) both; }
.page-hero h1 { animation-delay: .06s; }
.page-hero p { animation-delay: .12s; }

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatVisual {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(.7deg); }
}
@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* Tablet */
@media (max-width: 1199.98px) {
  .row.g-4 { --bs-gutter-x: 22px; --bs-gutter-y: 22px; }
  .main-header .container { min-height: 80px; }
  .brand-crop { flex-basis: 184px; width: 184px; }
  .category-nav .nav-link { padding-inline: 9px; font-size: .79rem; }
  .all-categories-btn { min-width: 150px; }
  .mega-menu { width: min(860px, calc(100vw - 2 * var(--content-gutter))); }
  .hero-slide,
  .hero-content { min-height: 430px; }
  .hero-content { width: 68%; padding-inline: 48px; }
}

/* Mobile navigation breakpoint */
@media (max-width: 991.98px) {
  :root { --section-y: 58px; --section-y-sm: 40px; }
  html { scroll-padding-top: 136px; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .main-header .container { min-height: 70px; }
  .brand-crop { flex-basis: 152px; width: 152px; height: 58px; }
  .mobile-search-row { padding-bottom: 14px; }
  .mobile-search-row .header-search .form-control { height: 46px; }
  .mobile-search-row .header-search .btn { height: 38px; min-height: 38px; }
  .mega-menu { display: none !important; }
  .page-hero { min-height: 190px; }
  .hero-slide,
  .hero-content { min-height: 420px; }
  .hero-content { width: 74%; max-width: 74%; }
  .product-gallery { position: static; }
  .account-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
  }
  .account-nav a { min-width: max-content; border: 0; border-radius: 8px; }
  .account-nav a:last-child { border: 0; }
  .mobile-bottom-nav { min-height: 66px; }
  .mobile-bottom-nav a { min-height: 66px; gap: 3px; }
  .mobile-bottom-nav a i { font-size: 1.25rem; }
  .cookie-banner { bottom: calc(80px + env(safe-area-inset-bottom)); }
  .back-to-top { bottom: calc(82px + env(safe-area-inset-bottom)); }
  .footer-main { padding-bottom: 48px; }
}

/* Phones */
@media (max-width: 767.98px) {
  :root { --section-y: 48px; --section-y-sm: 34px; --card-padding: 22px; }
  .row { --bs-gutter-x: 18px; }
  .row.g-3,
  .row.g-4,
  .row.g-5 { --bs-gutter-x: 16px; --bs-gutter-y: 16px; }
  .announcement-bar .container { min-height: 32px; }
  .page-hero { min-height: 178px; padding-block: 36px; }
  .page-hero h1 { margin-top: 10px; }
  .hero-section { padding-top: 14px; }
  #heroCarousel,
  .hero-section .carousel-inner,
  .hero-slide { border-radius: 18px; }
  .hero-slide { min-height: 490px; }
  .hero-content { width: 100%; min-height: 490px; max-width: none; padding: 38px 24px 195px; align-items: center; justify-content: flex-start; text-align: center; }
  .hero-kicker { justify-content: center; }
  .hero-title { margin-top: 8px; }
  .hero-text { margin-bottom: 22px; }
  .hero-visual { right: 16%; bottom: -34px; width: 68%; height: 240px; }
  .hero-actions { width: 100%; justify-content: center; }
  .hero-carousel-control,
  .hero-arrow { width: 40px; height: 40px; }
  .carousel-control-prev.hero-carousel-control { left: 10px; }
  .carousel-control-next.hero-carousel-control { right: 10px; }
  .section-head { margin-bottom: 24px; }
  .category-card { padding: 20px 10px; }
  .category-icon { width: 56px; height: 56px; margin-bottom: 13px; }
  .trust-strip { padding-block: 20px; }
  .trust-item { padding-block: 8px; }
  .promo-card { min-height: 236px; padding: 28px; }
  .compatible-finder { padding: 28px 22px; }
  .product-main-image { min-height: 370px; }
  .product-main-image img { max-height: 340px; }
  .product-detail-title { margin-top: 8px; }
  .cart-item { padding: 16px; }
  .summary-card { padding: 22px; }
  .shop-toolbar { min-height: auto; padding: 14px; }
  .support-card { min-height: 174px; }
  .newsletter-band { padding-block: 32px; }
  .newsletter-form { margin-top: 20px; }
  .footer-main { padding-top: 48px; }
  .footer-bottom { padding-block: 16px; }
  .article-content { padding: 26px 20px; }
}

/* Small phones */
@media (max-width: 575.98px) {
  :root { --content-gutter: 15px; --control-height: 46px; --control-height-lg: 50px; }
  .main-header .container { gap: 8px !important; }
  .brand-crop { flex-basis: 130px; width: 130px; }
  .header-actions { gap: 6px; }
  .header-actions .icon-btn,
  .main-header > .container > .icon-btn { width: 40px; min-width: 40px; height: 40px; min-height: 40px; }
  .header-search .form-control { padding-right: 52px; }
  .header-search .btn { width: 38px; min-width: 38px; padding: 0; }
  .hero-slide,
  .hero-content { min-height: 470px; }
  .hero-content { width: 100%; padding: 32px 18px 178px; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .hero-actions { gap: 10px !important; }
  .hero-actions .btn { min-width: 0; padding-inline: 14px; font-size: .88rem; }
  .hero-visual { right: 10%; width: 80%; height: 220px; }
  .section-title { font-size: 1.55rem; }
  .product-body { padding: 13px; }
  .product-title { min-height: 50px; font-size: .86rem; }
  .product-card .add-cart { min-height: 42px; padding-inline: 8px; font-size: .78rem; }
  .product-actions { top: 9px; right: 9px; gap: 6px; }
  .product-actions .icon-btn { width: 36px; min-width: 36px; height: 36px; min-height: 36px; }
  .product-badge { top: 9px; left: 9px; max-width: calc(100% - 56px); padding: 4px 7px; }
  .sale-price { font-size: 1rem; }
  .price-row { gap: 5px; }
  .choice-btn { min-width: 50px; padding-inline: 10px; }
  .product-purchase-actions .btn { flex: 1 1 100%; }
  .cart-item { align-items: flex-start !important; }
  .cart-image { width: 78px; height: 78px; flex-basis: 78px; }
  .newsletter-form { border-radius: 10px; }
  .newsletter-form input { min-width: 0; padding-inline: 13px; font-size: .84rem; }
  .newsletter-form .btn { padding-inline: 14px; font-size: .78rem; }
  .cookie-banner { right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); left: 12px; width: auto; }
}

@media (max-width: 359.98px) {
  .brand-crop { flex-basis: 112px; width: 112px; }
  .header-actions .icon-btn { width: 38px; min-width: 38px; height: 38px; min-height: 38px; }
  #productGrid > [data-product],
  .row > .col-6:has(.product-card) { width: 100%; }
  .product-media { aspect-ratio: 1.15 / 1; }
}

@media (hover: none) {
  .product-actions { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal,
  .page-hero .breadcrumb,
  .page-hero h1,
  .page-hero p,
  .hero-visual,
  .hero-slide::before {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
