.shop-page {
  display: grid;
  gap: 2rem;
}

body.shop-layout-width-wide .container,
body.shop-layout-width-wide #main > .inner {
  max-width: 1440px;
}

body.shop-layout-width-full .container,
body.shop-layout-width-full #main > .inner {
  width: min(100%, 1920px);
  max-width: 100%;
}

body.shop-header-variant-compact #header.section,
body.shop-header-variant-compact header#header.section {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

body.shop-header-variant-compact .navbar {
  min-height: 56px;
}

body.shop-header-variant-compact .shop-header-icon {
  width: 40px;
  height: 40px;
}

body.shop-card-style-compact .shop-product-card {
  gap: 0.75rem;
  padding: 0.85rem;
}

body.shop-card-style-compact .shop-product-card__body {
  gap: 0.75rem;
}

body.shop-card-style-compact .shop-product-card__title {
  font-size: 1rem;
  line-height: 1.25;
}

body.shop-card-style-compact .shop-product-card__excerpt,
body.shop-card-style-compact .shop-meta {
  font-size: 0.92rem;
}

.shop-intro {
  margin-bottom: 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.shop-grid--desktop-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-grid--desktop-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-grid--desktop-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-grid--desktop-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.is-hidden {
  display: none !important;
}

.shop-infinite-scroll {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.shop-infinite-scroll__status {
  min-height: 1.25rem;
  text-align: center;
}

.shop-infinite-scroll__retry {
  display: inline-flex;
}

.shop-infinite-scroll__sentinel {
  width: 100%;
  height: 1px;
}

.shop-product-card,
.shop-surface {
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
  padding: 1rem;
}

:root[data-theme='dark'] .shop-product-card,
:root[data-theme='dark'] .shop-surface {
  background: rgba(255, 255, 255, 0.04);
}

.shop-product-card {
  display: grid;
  gap: 1rem;
}

.shop-product-card__media,
.shop-product-hero {
  display: block;
  width: 100%;
}

.shop-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(20, 115, 230, 0.05);
}

.shop-product-hero-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(20, 115, 230, 0.05);
}

.shop-product-card__image,
.shop-cart-image {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.shop-product-card__image {
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.9rem;
}

.shop-product-hero {
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1.25rem;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.shop-product-gallery-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-gallery-thumb:hover {
  transform: translateY(-1px);
}

.shop-gallery-thumb.is-active {
  border-color: var(--q2-accent, #8428DF);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--q2-accent, #8428DF) 22%, transparent);
}

.shop-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 7px;
  object-fit: contain;
  padding: 0.55rem;
}

.shop-product-card__body,
.shop-product-details,
.shop-order-summary,
.shop-checkout-form,
.shop-add-form {
  display: grid;
  gap: 1rem;
}

.shop-product-section,
.shop-faq-list,
.shop-product-inquiry-form,
.shop-faq-answer {
  display: grid;
  gap: 1rem;
}

.shop-product-card__title,
.shop-order-summary h2 {
  margin: 0;
}

.shop-product-card__title {
  font-size: 1.15rem;
  line-height: 1.2;
}

.shop-product-card__title a,
.shop-cart-title {
  color: inherit;
  text-decoration: none;
}

.shop-product-card__excerpt,
.shop-meta {
  margin: 0;
  opacity: 0.75;
}

.shop-attribute-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-attribute-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface, rgba(255, 255, 255, 0.72)) 88%, transparent);
  font-size: 0.85rem;
  line-height: 1.2;
}

.shop-form-section {
  display: grid;
  gap: 1rem;
}

.shop-checkout-sidebar-actions {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.shop-checkout-shipping-fields {
  display: grid;
  gap: 1rem;
}

.shop-checkout-shipping-fields.is-hidden {
  display: none;
}

.shop-form-section h2 {
  margin: 0;
  font-size: 1.1rem;
}

.shop-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.shop-price {
  font-size: 1.2rem;
}

.shop-price-compare {
  text-decoration: line-through;
  opacity: 0.65;
}

.shop-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(20, 115, 230, 0.1);
  color: #1473e6;
  font-size: 0.85rem;
}

.shop-product,
.shop-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  align-items: start;
}

.shop-product {
  grid-template-areas:
    "media details"
    "accordion details";
}

.shop-product-media {
  grid-area: media;
}

.shop-product-details {
  grid-area: details;
}

.shop-product-accordion,
.shop-accordion-body,
.shop-review-list {
  display: grid;
  gap: 1rem;
}

.shop-product-accordion {
  grid-area: accordion;
}

.shop-product--columns .shop-product-gallery-columns .shop-product-hero-frame {
  aspect-ratio: 1;
}

.shop-product-bottom-sidebar {
  display: flex;
  justify-content: flex-end;
}

.shop-sidebar-posts--accordion {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shop-post-teaser-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.16));
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
}

:root[data-theme='dark'] .shop-post-teaser-card {
  background: rgba(255, 255, 255, 0.04);
}

.shop-post-teaser-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.06);
}

.shop-post-teaser-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.9rem;
}

.shop-post-teaser-card__placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.7rem;
  width: 100%;
  height: 100%;
  padding: 1.1rem 1.15rem;
  color: var(--color-text, inherit);
  background:
    linear-gradient(135deg, rgba(20, 115, 230, 0.1), rgba(132, 40, 223, 0.05)),
    radial-gradient(circle at top right, rgba(132, 40, 223, 0.1), transparent 42%),
    rgba(20, 115, 230, 0.04);
  text-align: left;
  line-height: 1.4;
}

.shop-post-teaser-card__placeholder-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(132, 40, 223, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--q2-accent, #8428DF);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-post-teaser-card__placeholder-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.shop-post-teaser-card__placeholder-lines {
  display: grid;
  gap: 0.35rem;
  width: min(12rem, 100%);
}

.shop-post-teaser-card__placeholder-lines i {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.1);
}

.shop-post-teaser-card__placeholder-lines i:nth-child(2) {
  width: 78%;
}

.shop-post-teaser-card__placeholder-lines i:nth-child(3) {
  width: 58%;
}

:root[data-theme='dark'] .shop-post-teaser-card__placeholder {
  background:
    linear-gradient(135deg, rgba(20, 115, 230, 0.14), rgba(132, 40, 223, 0.1)),
    radial-gradient(circle at top right, rgba(132, 40, 223, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

:root[data-theme='dark'] .shop-post-teaser-card__placeholder-chip {
  background: rgba(18, 23, 33, 0.82);
}

:root[data-theme='dark'] .shop-post-teaser-card__placeholder-lines i {
  background: rgba(255, 255, 255, 0.14);
}

.shop-post-teaser-card__body {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  align-content: start;
}

.shop-post-teaser-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.76;
}

.shop-post-teaser-card__meta a {
  color: inherit;
  text-decoration: none;
}

.shop-post-teaser-card__meta a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-post-teaser-card__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.shop-post-teaser-card__title a {
  color: inherit;
  text-decoration: none;
}

.shop-post-teaser-card__title a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-post-teaser-card__excerpt {
  margin: 0;
  opacity: 0.82;
  line-height: 1.55;
}

.shop-post-teaser-card--sidebar {
  grid-template-columns: 120px minmax(0, 1fr);
}

.shop-post-teaser-card--sidebar .shop-post-teaser-card__media {
  aspect-ratio: 1;
  min-height: 0;
}

.shop-post-teaser-card--sidebar .shop-post-teaser-card__body,
.shop-post-teaser-card--accordion .shop-post-teaser-card__body {
  padding: 0.95rem 1rem;
}

.shop-post-teaser-card--accordion .shop-post-teaser-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-sidebar-posts--stack .shop-post-teaser-card--sidebar {
  grid-template-columns: 1fr;
}

.shop-sidebar-posts--stack .shop-post-teaser-card--sidebar .shop-post-teaser-card__media {
  width: 100%;
}

.shop-sidebar-posts--stack .shop-post-teaser-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-listing .card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.05);
}

.blog-listing .card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1rem;
}

.shop-accordion-item {
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
  padding: 1rem 1.1rem;
}

:root[data-theme='dark'] .shop-accordion-item {
  background: rgba(255, 255, 255, 0.04);
}

.shop-accordion-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.shop-accordion-item summary::-webkit-details-marker {
  display: none;
}

.shop-accordion-body {
  padding-top: 0.85rem;
}

.shop-product-inquiry > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-product-inquiry > summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.shop-product-inquiry[open] > summary::after {
  transform: rotate(225deg) translateY(1px);
}

.shop-product-inquiry__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.shop-product-inquiry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  opacity: 0.72;
}

.shop-product-inquiry__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.shop-product-inquiry__body {
  padding-top: 0.85rem;
}

.shop-sidebar-widget {
  padding: 1.15rem;
  border-radius: 8px;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.16));
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
}

:root[data-theme='dark'] .shop-sidebar-widget {
  background: rgba(255, 255, 255, 0.04);
}

.shop-sidebar-widget h4 {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.shop-sidebar-menu {
  display: grid;
  gap: 0.35rem;
}

.shop-sidebar-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-left: calc(var(--shop-sidebar-depth, 0) * 1rem);
  color: inherit;
  text-decoration: none;
}

.shop-sidebar-menu a.is-active,
.shop-sidebar-menu a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-sidebar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  background: color-mix(in srgb, var(--color-surface, rgba(255, 255, 255, 0.72)) 90%, transparent);
}

.shop-sidebar-tag small {
  opacity: 0.7;
}

.shop-sidebar-tag.is-active,
.shop-sidebar-tag:hover {
  border-color: var(--q2-accent, #8428DF);
  color: var(--q2-accent, #8428DF);
}

.shop-sidebar-posts,
.shop-sidebar-products {
  display: grid;
  gap: 1rem;
}

.shop-sidebar-post-card,
.shop-sidebar-product-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.shop-sidebar-post-card__media,
.shop-sidebar-product-card__media {
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.05);
}

.shop-sidebar-post-card__media img,
.shop-sidebar-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.65rem;
}

.shop-sidebar-post-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.35;
}

.shop-sidebar-post-card__body,
.shop-sidebar-product-card__body {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.shop-sidebar-post-card__body h5,
.shop-sidebar-product-card__body h5 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.shop-sidebar-post-card__body h5 a,
.shop-sidebar-product-card__body h5 a {
  color: inherit;
  text-decoration: none;
}

.shop-sidebar-post-card__body h5 a:hover,
.shop-sidebar-product-card__body h5 a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.shop-post-tags {
  justify-content: center;
}

.shop-post-category {
  white-space: nowrap;
}

.shop-sidebar-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.76;
}

.shop-sidebar-post-card__meta a {
  color: inherit;
  text-decoration: none;
}

.shop-sidebar-post-card__meta a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-blog-filter-state {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.shop-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.shop-blog-hero__body {
  display: grid;
  gap: 1rem;
}

.shop-blog-hero__body h1 {
  margin: 0;
}

.shop-blog-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.8;
}

.shop-blog-hero__content > *:last-child {
  margin-bottom: 0;
}

.shop-blog-hero__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
}

.shop-blog-hero__media img,
.shop-post-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.shop-post-layout,
.shop-blog-layout {
  align-items: start;
}

.shop-blog-main,
.shop-post-article {
  min-width: 0;
}

.shop-post-hero-media {
  margin: 0 0 1.5rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
}

.shop-post-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.shop-post-header {
  max-width: 58rem;
  margin-inline: auto;
}

.shop-post-title {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 1.04;
  text-wrap: balance;
}

.shop-post-header .shop-post-title {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.blog-grid--single {
  grid-template-columns: minmax(0, 34rem);
}

.shop-empty-state h3 {
  margin-top: 0;
}

.shop-review-item {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.16));
}

.shop-review-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.shop-review-item__header,
.shop-review-item__identity,
.shop-review-summary__score,
.shop-home-review-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shop-review-item__header,
.shop-home-review-card__top {
  justify-content: space-between;
}

.shop-review-title {
  margin: 0;
  font-size: 1rem;
}

.shop-review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(20, 115, 230, 0.08);
  color: #1473e6;
  font-size: 0.78rem;
  font-weight: 600;
}

.shop-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: rgba(15, 23, 42, 0.18);
  font-size: 0.95rem;
}

.shop-review-stars__item.is-active {
  color: #f59e0b;
}

.shop-review-summary {
  display: grid;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.shop-review-summary__score strong {
  font-size: 1.75rem;
  line-height: 1;
}

.shop-field,
.shop-consent,
.shop-order-line,
.shop-order-item {
  display: grid;
  gap: 0.45rem;
}

.shop-field input,
.shop-field textarea,
.shop-field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 6px;
  background: transparent;
}

.shop-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-variant-list {
  display: grid;
  gap: 1rem;
}

.shop-faq-item {
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
  padding: 1rem;
  background: rgba(128, 128, 128, 0.04);
}

.shop-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.shop-faq-item summary::-webkit-details-marker {
  display: none;
}

.shop-faq-answer {
  padding-top: 0.75rem;
}

.shop-variant-row {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

.shop-product-addons {
  display: grid;
  gap: 1rem;
}

.shop-addon-group {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

.shop-addon-group legend {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0 0.25rem;
  font-weight: 700;
}

.shop-addon-group legend small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.68;
}

.shop-addon-options {
  display: grid;
  gap: 0.5rem;
}

.shop-addon-option {
  display: grid !important;
  grid-template-columns: auto 52px minmax(0, 1fr) 5.75rem;
  gap: 0.65rem;
  align-items: center;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  min-height: 64px;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.18));
  border-radius: 8px;
  cursor: pointer;
  box-sizing: border-box;
}

.shop-addon-group .shop-addon-option {
  width: 100% !important;
  min-inline-size: 0;
}

.shop-addon-option.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.shop-addon-option > input[type='radio'],
.shop-addon-option > input[type='checkbox'] {
  display: block;
  position: static;
  flex: 0 0 auto;
  width: 1.1rem;
  min-width: 1.1rem;
  max-width: 1.1rem;
  height: 1.1rem;
  margin: 0 !important;
  align-self: center;
  justify-self: center;
}

.shop-addon-option__media {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(20, 115, 230, 0.05);
  cursor: pointer;
}

.shop-addon-option__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.shop-addon-option__body {
  display: grid;
  align-content: center;
  gap: 0.18rem;
  width: 100%;
  min-width: 0;
  max-height: 52px;
  overflow: hidden;
}

.shop-addon-option__title {
  --shop-addon-title-lines: 1;
  display: block;
  display: -webkit-box;
  margin: 0 !important;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--shop-addon-title-lines);
  cursor: pointer;
}

.shop-addon-option__variant {
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.74;
}

.shop-addon-option__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.74;
}

.shop-addon-option__quantity {
  display: grid;
  justify-items: end;
  align-items: center;
  gap: 0.22rem;
  min-width: 0;
  font-size: 0.74rem;
  line-height: 1.1;
  text-align: right;
}

.shop-addon-option__quantity label,
.shop-addon-option__quantity span {
  display: block;
  margin: 0 !important;
  overflow: hidden;
  max-width: 100%;
  color: inherit;
  font-size: 0.74rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.7;
}

.shop-addon-option__quantity input[type='number'] {
  width: 4.4rem;
  max-width: 100%;
  margin: 0;
  padding: 0.34rem 0.45rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 6px;
  background: transparent;
  text-align: right;
}

.shop-addon-option__quantity--fixed strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 1.9rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.18));
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1;
}

.shop-field-full {
  grid-column: 1 / -1;
}

.shop-product-personalization {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

.shop-product-personalization h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.shop-personalization-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.shop-personalization-fields .shop-field {
  margin: 0;
}

.shop-personalization-fieldset {
  padding: 0;
  border: 0;
}

.shop-personalization-fieldset legend {
  margin: 0 0 0.45rem;
  padding: 0;
  font-weight: 700;
}

.shop-personalization-fields .shop-field small,
.shop-personalization-fieldset small {
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.68;
}

.shop-personalization-fields .shop-field em,
.shop-personalization-fieldset em {
  display: block;
  margin-top: -0.2rem;
  color: inherit;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.25;
  opacity: 0.7;
}

.shop-personalization-choice-list {
  display: grid;
  gap: 0.35rem;
}

.shop-personalization-choice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-weight: 500;
}

.shop-personalization-choice input {
  flex: 0 0 auto;
}

.shop-personalization-summary {
  display: grid;
  gap: 0.15rem;
  margin: 0.35rem 0 0;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.25;
}

.shop-personalization-summary div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.shop-personalization-summary dt {
  font-weight: 700;
}

.shop-personalization-summary dd {
  margin: 0;
  opacity: 0.78;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-actions--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 1.25rem;
}

.shop-actions--split > .button,
.shop-actions--split > button.button {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  justify-content: center;
  white-space: nowrap;
}

.shop-actions--split > a.button:not(.secondary) {
  color: var(--q2-accent-contrast);
  background: var(--q2-accent);
  border: 0;
  border-radius: var(--q2-radius);
  box-shadow: var(--q2-shadow-hl);
  text-decoration: none;
}

.shop-actions--split > a.button:not(.secondary):hover {
  opacity: 0.9;
  color: var(--q2-accent-contrast);
  text-decoration: none;
}

.shop-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

details.shop-search-menu,
details.shop-account-menu {
  margin: 0;
  padding: 0;
  overflow: visible;
}

.shop-header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--q2-radius-pill, 999px);
  background: var(--q2-bg-elev, var(--color-surface, rgba(255, 255, 255, 0.72)));
  color: var(--q2-text-strong, inherit);
  box-shadow: var(--q2-shadow-card, 0 8px 24px rgba(15, 23, 42, 0.08));
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.shop-header-icon:hover,
.shop-header-icon:focus-visible {
  transform: translateY(-1px);
  background: var(--q2-bg-muted, rgba(255, 255, 255, 0.9));
}

.shop-home__stack {
  display: grid;
  gap: 3rem;
}

.shop-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.shop-home-section--hero-slider {
  gap: 0;
}

.shop-home-hero--slide {
  min-height: 100%;
}

.shop-home-hero--overlay {
  display: block;
  min-height: clamp(420px, 54vw, 720px);
}

.shop-home-hero__content,
.shop-home-hero__media,
.shop-category-tile,
.shop-manufacturer-card {
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

:root[data-theme='dark'] .shop-home-hero__content,
:root[data-theme='dark'] .shop-home-hero__media,
:root[data-theme='dark'] .shop-category-tile,
:root[data-theme='dark'] .shop-manufacturer-card {
  background: rgba(255, 255, 255, 0.04);
}

.shop-home-hero__content {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
}

.shop-home-hero__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1473e6;
}

.shop-home-hero__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.shop-home-hero__text,
.shop-home-section__heading p {
  margin: 0;
  opacity: 0.8;
}

.shop-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-home-hero__media {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 320px;
  background: rgba(20, 115, 230, 0.05);
}

.shop-home-hero--overlay .shop-home-hero__media {
  position: relative;
  min-height: inherit;
  background: #111111;
}

.shop-home-hero--overlay.shop-home-hero--has-content .shop-home-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-home-hero--overlay.shop-home-hero--align-left .shop-home-hero__media::after {
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.72) 0%, rgba(15, 15, 15, 0.44) 40%, rgba(15, 15, 15, 0.14) 100%);
}

.shop-home-hero--overlay.shop-home-hero--align-center .shop-home-hero__media::after {
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.4) 0%, rgba(15, 15, 15, 0.58) 50%, rgba(15, 15, 15, 0.4) 100%);
}

.shop-home-hero--overlay.shop-home-hero--align-right .shop-home-hero__media::after {
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.14) 0%, rgba(15, 15, 15, 0.44) 60%, rgba(15, 15, 15, 0.72) 100%);
}

.shop-home-hero--overlay .shop-home-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(100%, 720px);
  max-width: calc(100% - 3rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ffffff;
}

.shop-home-hero--overlay.shop-home-hero--align-left .shop-home-hero__content {
  justify-self: start;
  text-align: left;
}

.shop-home-hero--overlay.shop-home-hero--align-center .shop-home-hero__content {
  justify-self: center;
  text-align: center;
}

.shop-home-hero--overlay.shop-home-hero--align-right .shop-home-hero__content {
  justify-self: end;
  text-align: right;
}

.shop-home-hero--overlay .shop-home-hero__title,
.shop-home-hero--overlay .shop-home-hero__text {
  color: #ffffff;
}

.shop-home-hero--overlay .shop-home-hero__text {
  opacity: 0.92;
}

.shop-home-hero--overlay.shop-home-hero--align-center .shop-home-hero__actions {
  justify-content: center;
}

.shop-home-hero--overlay.shop-home-hero--align-right .shop-home-hero__actions {
  justify-content: flex-end;
}

.shop-home-hero__picture,
.shop-home-hero__image,
.shop-home-hero__placeholder {
  width: 100%;
  height: 100%;
}

.shop-home-hero__picture {
  display: block;
}

.shop-home-hero__image {
  display: block;
  object-fit: contain;
  padding: 1rem;
}

.shop-home-hero--overlay .shop-home-hero__image,
.shop-home-hero--overlay .shop-home-hero__placeholder {
  min-height: inherit;
}

.shop-home-hero--overlay .shop-home-hero__image {
  object-fit: cover;
  padding: 0;
}

.shop-home-hero__placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(20, 115, 230, 0.14), transparent 45%),
    radial-gradient(circle at bottom right, rgba(20, 115, 230, 0.1), transparent 42%);
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 600;
}

.shop-home-section {
  display: grid;
  gap: 1.25rem;
}

.shop-home-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.shop-home-section__heading h2 {
  margin: 0 0 0.35rem;
}

.shop-home-section__link,
.shop-category-tile__cta {
  font-weight: 600;
  text-decoration: none;
}

.shop-home-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shop-home-section__grid--desktop-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-home-section__grid--desktop-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-home-section__grid--desktop-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-home-section__grid--desktop-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shop-category-tile {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.shop-category-tile__media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.06);
}

.shop-category-tile__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 0.85rem;
}

.shop-category-tile__placeholder,
.shop-manufacturer-card__initial {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #1473e6;
}

.shop-category-tile__body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.shop-category-tile__body h2,
.shop-manufacturer-card__title {
  margin: 0;
}

.shop-category-tile__body p {
  margin: 0;
  opacity: 0.8;
}

.shop-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.shop-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 8px;
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
  color: var(--q2-text-strong, var(--q2-text, #111827));
  cursor: pointer;
}

.shop-carousel__nav svg {
  display: none;
}

.shop-carousel__nav::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.shop-carousel__nav--prev::before {
  transform: rotate(-135deg);
  margin-left: 0.2rem;
}

.shop-carousel__nav--next::before {
  transform: rotate(45deg);
  margin-right: 0.2rem;
}

.shop-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 28%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  padding-bottom: 0.5rem;
}

.shop-carousel__track--logos {
  grid-auto-columns: minmax(180px, 18%);
}

.shop-carousel__track--posts {
  grid-auto-columns: minmax(280px, 31%);
}

.shop-carousel__track--hero {
  grid-auto-columns: 100%;
  gap: 0;
}

.shop-carousel--overlay-nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.shop-carousel--overlay-nav > .shop-carousel__track,
.shop-carousel--overlay-nav .shop-carousel__nav {
  grid-column: 1;
  grid-row: 1;
}

.shop-carousel--overlay-nav .shop-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  background: color-mix(in srgb, var(--color-surface, rgba(255, 255, 255, 0.72)) 82%, transparent);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shop-carousel--overlay-nav .shop-carousel__nav--prev {
  left: 0.75rem;
}

.shop-carousel--overlay-nav .shop-carousel__nav--next {
  right: 0.75rem;
}

.shop-carousel--overlay-nav .shop-carousel__track {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.shop-carousel--overlay-nav .shop-carousel__track--hero {
  padding-bottom: 0;
}

.shop-carousel__slide {
  scroll-snap-align: start;
}

.shop-manufacturer-card {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  padding: 1rem;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.shop-manufacturer-card__media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(20, 115, 230, 0.05);
  overflow: hidden;
}

.shop-manufacturer-card__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 1rem;
}

.shop-home-copy {
  margin: 0;
}

.shop-home-reviews {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2fr);
  align-items: start;
}

.shop-home-reviews__summary,
.shop-home-review-card {
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
  background: var(--color-surface, rgba(255, 255, 255, 0.72));
}

:root[data-theme='dark'] .shop-home-reviews__summary,
:root[data-theme='dark'] .shop-home-review-card {
  background: rgba(255, 255, 255, 0.04);
}

.shop-home-reviews__summary {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.shop-home-reviews__score {
  font-size: 2.5rem;
  line-height: 1;
}

.shop-home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-home-review-card {
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1rem;
}

.shop-home-review-card h3,
.shop-home-review-card p {
  margin: 0;
}

@media (max-width: 1100px) {
  .shop-home-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-carousel__track {
    grid-auto-columns: minmax(250px, 40%);
  }

  .shop-carousel__track--hero {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .shop-carousel__track--logos {
    grid-auto-columns: minmax(180px, 24%);
  }

  .shop-home-reviews {
    grid-template-columns: 1fr;
  }

  .shop-home-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .shop-home-section--hero-slider {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .shop-home-section--hero-slider .shop-carousel--hero,
  .shop-home-section--hero-slider .shop-carousel__track--hero,
  .shop-home-section--hero-slider .shop-carousel__slide,
  .shop-home-section--hero-slider .shop-home-hero--slide {
    width: 100%;
    max-width: 100%;
  }

  .shop-home-hero {
    grid-template-columns: 1fr;
  }

  .shop-home-hero--overlay {
    min-height: clamp(340px, 112vw, 520px);
  }

  .shop-home-hero--overlay .shop-home-hero__content {
    width: auto;
    max-width: none;
    padding: 1.25rem;
  }

  .shop-home-section--hero-slider .shop-home-hero__media,
  .shop-home-section--hero-slider .shop-home-hero__placeholder {
    border-radius: 0;
    border-inline: 0;
  }

  .shop-home-section__heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-carousel__nav {
    display: none;
  }

  .shop-carousel__track {
    grid-auto-columns: minmax(240px, 78%);
  }

  .shop-carousel__track--hero {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .shop-carousel__track--logos {
    grid-auto-columns: minmax(180px, 46%);
  }
}

@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid--mobile-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-home-section__grid {
    grid-template-columns: 1fr;
  }

  .shop-home-section__grid--mobile-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-home-reviews__grid {
    grid-template-columns: 1fr;
  }

  .shop-account-stats,
  .shop-account-addresses {
    grid-template-columns: 1fr;
  }

  .shop-account-document {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.shop-header-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-header-icon.is-idle {
  opacity: 0.72;
}

.shop-header-icon__badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: #1473e6;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2rem;
  text-align: center;
}

.shop-search-menu,
.shop-account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
  vertical-align: middle;
}

.shop-search-menu summary,
.shop-account-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  list-style: none;
  margin: 0;
  inline-size: 44px;
  block-size: 44px;
  line-height: 1;
  vertical-align: middle;
  appearance: none;
}

.shop-search-menu summary::-webkit-details-marker,
.shop-account-menu summary::-webkit-details-marker {
  display: none;
}

.shop-search-menu summary::marker,
.shop-account-menu summary::marker {
  display: none;
  content: '';
}

.shop-search-menu summary::after,
.shop-account-menu summary::after {
  display: none !important;
  content: none !important;
}

.shop-search-menu > summary.shop-header-icon,
.shop-search-menu > summary.shop-header-icon:hover,
.shop-search-menu > summary.shop-header-icon:focus-visible,
.shop-search-menu[open] > summary.shop-header-icon,
.shop-account-menu > summary.shop-header-icon,
.shop-account-menu > summary.shop-header-icon:hover,
.shop-account-menu > summary.shop-header-icon:focus-visible,
.shop-account-menu[open] > summary.shop-header-icon {
  transform: none;
  margin: 0;
}

.shop-search-menu > summary.shop-header-icon svg,
.shop-account-menu > summary.shop-header-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
}

.shop-search-menu__panel,
.shop-account-menu__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 20;
  width: min(420px, calc(100vw - 1rem));
  min-width: 220px;
  padding: 0.9rem;
  display: grid;
  gap: 0.35rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 8px;
  background: var(--color-surface, rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.shop-search-menu[open] > .shop-search-menu__panel,
.shop-account-menu[open] > .shop-account-menu__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.shop-search-menu__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.shop-search-menu__form input[type='search'] {
  margin: 0;
}

.shop-search-menu__form .button {
  margin: 0;
  white-space: nowrap;
}

.shop-account-menu__panel a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  line-height: 1.35;
}

.shop-account-menu__panel a:hover,
.shop-account-menu__panel a:focus-visible {
  background: rgba(20, 115, 230, 0.08);
}

.shop-account-menu__meta {
  display: grid;
  gap: 0.25rem;
  padding: 0.3rem 0.8rem 0.7rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--color-border, rgba(128, 128, 128, 0.15));
}

.shop-account-menu__meta span {
  font-size: 0.85rem;
  line-height: 1.35;
  opacity: 0.78;
}

.shop-mobile-account-links {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.75rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

.shop-mobile-account-links__meta {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}

.shop-mobile-account-links__meta span {
  font-size: 0.9rem;
  opacity: 0.78;
}

.shop-mobile-account-links a {
  display: block;
  width: 100%;
  padding: 0.4rem 0;
  color: var(--q2-text-strong, inherit);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.shop-mobile-account-links a:hover,
.shop-mobile-account-links a:focus-visible {
  color: var(--q2-link, #1473e6);
}

.shop-mobile-account-links__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.shop-mobile-account-links__action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.7rem 1rem !important;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.22));
  border-radius: var(--q2-radius-pill, 999px);
  background: var(--q2-bg-elev, rgba(255, 255, 255, 0.72));
  box-shadow: var(--q2-shadow-card, 0 8px 24px rgba(15, 23, 42, 0.08));
  font-size: 0.98rem !important;
  line-height: 1 !important;
}

.shop-mobile-account-links__action svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-mobile-account-links__action:hover,
.shop-mobile-account-links__action:focus-visible {
  background: var(--q2-bg-muted, rgba(255, 255, 255, 0.9));
  color: var(--q2-text-strong, inherit);
}

.shop-empty {
  padding: 2rem 1rem;
  text-align: center;
  border: 1px dashed var(--color-border, rgba(128, 128, 128, 0.35));
  border-radius: 8px;
}

.shop-cart-table {
  display: grid;
  gap: 1rem;
}

.shop-cart-head,
.shop-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) 100px 110px 100px 68px;
  gap: 1rem;
  align-items: center;
}

.shop-cart-head {
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

.shop-cart-row--addon {
  position: relative;
  margin-left: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border, rgba(128, 128, 128, 0.22));
}

.shop-cart-row--addon .shop-cart-thumb {
  width: 60px;
}

.shop-cart-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.shop-cart-product > div {
  min-width: 0;
}

.shop-cart-thumb {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.05);
  text-decoration: none;
}

.shop-cart-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.6rem;
}

.shop-cart-cell {
  display: grid;
  gap: 0.35rem;
}

.shop-cart-cell-label {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.72;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-cart-cell--actions {
  justify-items: start;
}

.shop-cart-remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border-radius: var(--q2-radius-pill, 999px);
}

.shop-cart-remove-button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-cart-title {
  display: block;
  line-height: 1.35;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

.shop-cart-row input[type='number'] {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 6px;
  background: transparent;
}

.shop-order-items {
  display: grid;
  gap: 0.75rem;
}

.shop-order-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.14));
}

.shop-order-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.shop-order-item__media {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 115, 230, 0.05);
}

.shop-order-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
}

.shop-order-item__content {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.shop-order-item__title {
  line-height: 1.35;
}

.shop-order-item__title a {
  color: inherit;
  text-decoration: none;
}

.shop-order-item__title a:hover {
  color: var(--q2-accent, #8428DF);
}

.shop-order-item__total {
  white-space: nowrap;
}

.shop-order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.shop-order-line--total {
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

.shop-order-line__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

.shop-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.shop-success-meta {
  display: grid;
  gap: 0.4rem;
}

.shop-success-meta p {
  margin: 0;
}

.shop-product-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 6px;
  background: rgba(128, 128, 128, 0.08);
  color: inherit;
  opacity: 0.7;
}

.shop-media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  text-align: center;
  line-height: 1.35;
  color: inherit;
  opacity: 0.72;
}

.shop-media-placeholder--hero {
  padding: 1.5rem;
  font-size: 0.95rem;
}

.shop-shipping-list {
  display: grid;
  gap: 0.85rem;
}

.shop-shipping-option,
.shop-selected-shipping {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.25));
  border-radius: 8px;
}

.shop-shipping-option__content {
  display: grid;
  gap: 0.2rem;
}

.shop-selected-shipping {
  grid-template-columns: minmax(0, 1fr);
}

.shop-account-header,
.shop-account-meta,
.shop-account-layout,
.shop-stack,
.shop-account-stats,
.shop-account-orders,
.shop-account-orders__head,
.shop-account-orders__row,
.shop-account-invoices,
.shop-account-documents,
.shop-account-document,
.shop-account-addresses,
.shop-account-address-card,
.shop-account-profile,
.shop-section-heading,
.shop-order-detail__grid,
.shop-order-documents,
.shop-address {
  display: grid;
}

.shop-account-header {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.shop-account-meta {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.shop-account-layout,
.shop-stack,
.shop-account-stats,
.shop-account-documents,
.shop-account-addresses,
.shop-account-profile {
  gap: 1rem;
}

.shop-account-layout {
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
}

.shop-stack,
.shop-surface {
  min-width: 0;
}

.shop-section-heading {
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.shop-section-heading h2,
.shop-section-heading p {
  margin: 0;
}

.shop-account-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.shop-account-stat,
.shop-account-address-card,
.shop-account-document {
  padding: 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

.shop-account-stat strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.shop-account-orders {
  gap: 0.85rem;
}

.shop-account-orders__head,
.shop-account-orders__row {
  grid-template-columns: minmax(110px, 1.35fr) minmax(92px, 0.95fr) minmax(92px, 0.9fr) minmax(92px, 0.9fr) minmax(88px, 0.85fr) minmax(110px, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.shop-account-orders__head {
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  font-size: 0.82rem;
}

.shop-account-orders__row {
  padding: 0.9rem 0;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.12));
  font-size: 0.92rem;
}

.shop-order-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.shop-order-detail {
  display: grid;
  gap: 1.5rem;
}

.shop-order-detail__grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.shop-order-detail__grid strong,
.shop-address div + div {
  margin-top: 0.25rem;
}

.shop-order-documents {
  gap: 0.75rem;
}

.shop-address {
  gap: 0.2rem;
}

.shop-account-invoices {
  gap: 0.5rem;
  justify-items: start;
}

.shop-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

.shop-icon-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-account-orders__row > span,
.shop-account-orders__head > span {
  min-width: 0;
}

.shop-account-orders__row > span:not(.shop-account-invoices) {
  overflow-wrap: anywhere;
}

.shop-account-invoices .button {
  white-space: nowrap;
}

.shop-account-document {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.shop-account-addresses {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-account-address-card {
  align-content: start;
  gap: 0.75rem;
}

.shop-note {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(128, 128, 128, 0.08);
}

.shop-seller-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.shop-seller-stat {
  margin: 0.25rem 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.shop-staff-table {
  display: grid;
  gap: 0.5rem;
}

.shop-staff-table__head,
.shop-staff-table__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(180px, 1.4fr) minmax(120px, 0.8fr) minmax(100px, 0.8fr) minmax(180px, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.shop-staff-table__head {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary, rgba(15, 23, 42, 0.72));
}

.shop-staff-table__row {
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

.shop-staff-table__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.shop-inline-form {
  display: inline-flex;
  margin: 0;
}

.shop-staff-form {
  display: grid;
  gap: 1rem;
}

.shop-payment-options {
  display: grid;
  gap: 0.75rem;
}

.shop-payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  border-radius: 8px;
}

.shop-payment-option__content {
  display: grid;
  gap: 0.25rem;
}

.shop-settings-channel {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

.shop-settings-channel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-settings-channel h3 {
  margin: 0;
}

.shop-settings-channel__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.shop-settings-channel__summary::-webkit-details-marker {
  display: none;
}

.shop-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.shop-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.shop-seller-table {
  display: grid;
  gap: 0.5rem;
}

.shop-seller-table__head,
.shop-seller-table__row {
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.shop-seller-table--contractors .shop-seller-table__head,
.shop-seller-table--contractors .shop-seller-table__row {
  grid-template-columns: minmax(160px, 1.1fr) minmax(180px, 1fr) minmax(90px, 0.7fr) minmax(140px, 0.9fr) minmax(140px, 0.9fr) minmax(120px, 0.8fr);
}

.shop-seller-table--products .shop-seller-table__head,
.shop-seller-table--products .shop-seller-table__row {
  grid-template-columns: minmax(180px, 1.2fr) minmax(120px, 0.8fr) minmax(100px, 0.8fr) minmax(80px, 0.6fr) minmax(100px, 0.8fr) minmax(180px, 1fr);
}

.shop-seller-table__head {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary, rgba(15, 23, 42, 0.72));
}

.shop-seller-table__row {
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
}

:root[data-theme='dark'] .shop-header-icon,
:root[data-theme='dark'] .shop-search-menu__panel,
:root[data-theme='dark'] .shop-account-menu__panel {
  background: rgba(18, 23, 33, 0.95);
}

@media (max-width: 980px) {
  .shop-product-gallery-columns {
    grid-template-columns: 1fr;
  }

  .shop-product,
  .shop-split {
    grid-template-columns: 1fr;
  }

  .shop-blog-hero {
    grid-template-columns: 1fr;
  }

  .shop-product {
    grid-template-areas:
      "media"
      "details"
      "accordion";
  }

  .shop-product-bottom-sidebar {
    justify-content: stretch;
  }

  .shop-sidebar-post-card,
  .shop-sidebar-product-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .shop-sidebar-post-card__media,
  .shop-sidebar-product-card__media {
    width: 84px;
  }

  .shop-post-teaser-card--sidebar {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .shop-account-header {
    grid-template-columns: 1fr;
  }

  .shop-account-stats,
  .shop-account-addresses {
    grid-template-columns: 1fr 1fr;
  }

  .shop-account-orders__head {
    display: none;
  }

  .shop-account-orders__row {
    grid-template-columns: 1fr;
  }

  .shop-staff-table__head {
    display: none;
  }

  .shop-seller-table__head {
    display: none;
  }

  .shop-staff-table__row {
    grid-template-columns: 1fr;
    padding: 1rem;
    border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
    border-radius: 8px;
  }

  .shop-seller-table__row {
    grid-template-columns: 1fr;
    padding: 1rem;
    border: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
    border-radius: 8px;
  }

  .shop-header-actions {
    justify-content: center;
  }

  .mobile-menu .shop-header-actions {
    justify-content: flex-end;
  }

  .shop-cart-head {
    display: none;
  }

  .shop-cart-row {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border, rgba(128, 128, 128, 0.2));
  }

  .shop-cart-row--addon {
    margin-left: 0.75rem;
  }

  .shop-addon-option {
    grid-template-columns: auto 46px minmax(0, 1fr) 4.85rem;
    gap: 0.5rem;
  }

  .shop-addon-option__media {
    width: 46px;
  }

  .shop-addon-option__body {
    max-height: 46px;
  }

  .shop-addon-option__quantity input[type='number'] {
    width: 4rem;
  }

  .shop-personalization-fields {
    grid-template-columns: 1fr;
  }

  .shop-cart-cell-label {
    display: block;
  }

  .shop-order-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .shop-order-item__total {
    grid-column: 2;
  }

  .shop-shipping-option,
  .shop-selected-shipping {
    grid-template-columns: auto 1fr;
  }

  .blog-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-post-title,
  .shop-post-header .shop-post-title {
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .shop-account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shop-addon-option {
    grid-template-columns: auto 42px minmax(0, 1fr) 4.35rem;
    gap: 0.45rem;
    min-height: 56px;
    padding: 0.4rem 0.45rem;
  }

  .shop-addon-option__media {
    width: 42px;
  }

  .shop-addon-option__body {
    max-height: 42px;
  }

  .shop-addon-option__quantity {
    font-size: 0.68rem;
  }

  .shop-addon-option__quantity input[type='number'] {
    width: 3.75rem;
    padding-inline: 0.35rem;
  }

  .shop-form-grid {
    grid-template-columns: 1fr;
  }

  .shop-field-full {
    grid-column: auto;
  }

  .mobile-menu .shop-header-actions {
    gap: 0.45rem;
  }

  .mobile-menu .shop-header-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .mobile-menu .shop-search-menu__panel,
  .mobile-menu .shop-account-menu__panel {
    position: fixed;
    top: calc(14px + 2.5rem + 0.75rem);
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    min-width: 0;
  }

  .mobile-menu .shop-search-menu__form {
    grid-template-columns: 1fr;
  }

  .mobile-menu .shop-search-menu__form .button {
    width: 100%;
  }
}

#shop-footer.shop-footer {
  text-align: left;
  padding-block: 3.5rem 2rem;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--q2-bg-muted) 45%, transparent) 0%, transparent 12rem),
    var(--q2-bg);
  border-top: 1px solid var(--q2-divider);
}

.shop-footer__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-footer__trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--q2-divider);
  border-radius: 12px;
  background: color-mix(in oklab, var(--q2-bg-elevated) 88%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.shop-footer__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--q2-bg-muted);
  color: var(--q2-text);
  font-size: 1rem;
  font-weight: 700;
}

.shop-footer__trust-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-footer__trust-item strong,
.shop-footer__trust-item span {
  display: block;
}

.shop-footer__trust-item strong {
  color: var(--q2-text);
  font-size: 0.95rem;
}

.shop-footer__trust-item span {
  color: var(--q2-text-muted);
  font-size: 0.86rem;
  margin-top: 0.2rem;
}

.shop-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(0, 1.85fr);
  gap: 2rem;
  align-items: start;
}

.shop-footer__aside {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.shop-footer__column h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--q2-text);
}

.shop-footer__logo {
  margin-bottom: 1rem;
}

.shop-footer__brand .navbar-brand {
  display: inline-flex;
  align-items: center;
}

.shop-footer__brand .navbar-brand img {
  max-height: 2.5rem;
  width: auto;
}

.shop-footer__lead {
  max-width: 38ch;
  margin: 0 0 1.25rem;
  color: var(--q2-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.shop-footer__panel {
  min-height: 100%;
  padding: 0;
}

.shop-footer__contact {
  display: grid;
  gap: 0.9rem;
  color: var(--q2-text-muted);
}

.shop-footer__contact-group strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--q2-text);
  font-size: 0.92rem;
}

.shop-footer__contact-group address {
  margin: 0;
  font-style: normal;
}

.shop-footer__contact-group > div + div,
.shop-footer__contact-group address div + div {
  margin-top: 0.25rem;
}

.shop-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.shop-footer__column[aria-label] {
  display: block;
}

.shop-footer__column[aria-label] ul.shop-footer__links {
  display: grid;
  align-items: start;
  justify-items: start;
  margin: 0;
  padding: 0;
}

.shop-footer__column[aria-label] li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-footer__column[aria-label] li a {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.shop-footer__links a,
.shop-footer__contact a {
  color: var(--q2-text-muted);
  text-decoration: none;
}

.shop-footer__links a:hover,
.shop-footer__contact a:hover {
  color: var(--q2-text);
  text-decoration: none;
}

.shop-footer__block + .shop-footer__block {
  margin-top: 1.5rem;
}

.shop-footer__block h3 {
  margin-bottom: 0.8rem;
}

.shop-footer__socials,
.shop-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

.shop-footer__socials a,
.shop-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--q2-divider);
  border-radius: 999px;
  background: var(--q2-bg-muted);
  color: var(--q2-text);
  font-size: 0.875rem;
  text-decoration: none;
}

.shop-footer__socials a:hover {
  background: var(--q2-bg-elevated);
}

.shop-footer__socials a {
  gap: 0.5rem;
  justify-content: flex-start;
  min-width: 0;
}

.shop-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.shop-footer__social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-footer__badge {
  color: var(--q2-text-muted);
}

.shop-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--q2-divider);
  color: var(--q2-text-muted);
  font-size: 0.875rem;
}

.shop-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-footer__bottom strong {
  color: var(--q2-text);
}

@media (max-width: 1080px) {
  .shop-footer__trust {
    grid-template-columns: 1fr;
  }

  .shop-footer__grid {
    grid-template-columns: 1fr;
  }

  .shop-footer__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #shop-footer.shop-footer {
    padding-block: 2.5rem 1.5rem;
  }

  .shop-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shop-footer__aside {
    grid-template-columns: 1fr;
  }

  .shop-footer__bottom {
    flex-direction: column;
  }
}

/* Quark2 storefront polish: keep shop controls compact, neutral and theme-aware. */
.shop-page,
.shop-home,
#grav-login {
  --shop-accent: var(--q2-accent, #0f766e);
  --shop-accent-hover: var(--q2-accent-hover, #115e59);
  --shop-accent-contrast: var(--q2-accent-contrast, #ffffff);
  --shop-focus-ring: var(--q2-focus-ring, rgba(15, 118, 110, 0.28));
  --shop-surface: var(--q2-bg-elev, var(--color-surface, #ffffff));
  --shop-muted-surface: var(--q2-bg-muted, rgba(15, 118, 110, 0.06));
  --shop-line: var(--q2-divider, var(--color-border, rgba(128, 128, 128, 0.22)));
  --shop-ink: var(--q2-text-strong, var(--color-text, #111827));
  --shop-muted: var(--q2-text-muted, rgba(17, 24, 39, 0.68));
}

.shop-page h1,
.shop-page h2,
.shop-page h3,
.shop-home h1,
.shop-home h2,
.shop-home h3,
#grav-login h1,
#grav-login h2,
#grav-login h3 {
  letter-spacing: 0;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.shop-page a:not(.button):not(.shop-header-icon),
.shop-home a:not(.button):not(.shop-header-icon),
#grav-login a {
  color: var(--shop-accent);
}

.shop-page a:not(.button):not(.shop-header-icon):hover,
.shop-home a:not(.button):not(.shop-header-icon):hover,
#grav-login a:hover {
  color: var(--shop-accent-hover);
}

.shop-page .button,
.shop-home .button,
.shop-search-menu__form .button,
#grav-login button,
#grav-login .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 1px solid var(--shop-accent);
  border-radius: 6px;
  padding: 0.7rem 1.1rem;
  background: var(--shop-accent);
  color: var(--shop-accent-contrast) !important;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}

.shop-page .button:hover,
.shop-home .button:hover,
.shop-search-menu__form .button:hover,
#grav-login button:hover,
#grav-login .button:hover {
  border-color: var(--shop-accent-hover);
  background: var(--shop-accent-hover);
  color: var(--shop-accent-contrast) !important;
}

.shop-page .button.secondary,
.shop-home .button.secondary,
.shop-page button.secondary,
.shop-home button.secondary,
.shop-page a.button.secondary,
.shop-home a.button.secondary {
  border-color: var(--shop-line);
  background: var(--shop-surface);
  color: var(--shop-ink) !important;
}

.shop-page .button.secondary:hover,
.shop-home .button.secondary:hover,
.shop-page button.secondary:hover,
.shop-home button.secondary:hover,
.shop-page a.button.secondary:hover,
.shop-home a.button.secondary:hover {
  border-color: var(--shop-accent);
  background: color-mix(in srgb, var(--shop-accent) 8%, var(--shop-surface));
  color: var(--shop-ink) !important;
}

.shop-page input:focus,
.shop-page select:focus,
.shop-page textarea:focus,
#grav-login input:focus,
#grav-login select:focus,
#grav-login textarea:focus,
.shop-gallery-thumb:focus-visible,
.shop-gallery-thumb.is-active {
  border-color: var(--shop-accent) !important;
  box-shadow: 0 0 0 3px var(--shop-focus-ring) !important;
  outline: 0;
}

.shop-badge,
.shop-review-badge,
.shop-header-icon__badge {
  background: color-mix(in srgb, var(--shop-accent) 12%, var(--shop-surface));
  color: var(--shop-accent);
}

.section.shop-home {
  padding-block: clamp(1.5rem, 3vw, 2.75rem) clamp(2.5rem, 5vw, 4rem);
}

.shop-home__stack {
  gap: clamp(2rem, 4vw, 3rem);
}

.shop-home-section--hero-slider {
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.shop-home-hero--overlay {
  min-height: clamp(390px, 46vw, 620px);
}

.shop-carousel__track--hero > .shop-carousel__slide {
  height: clamp(390px, 46vw, 620px);
  overflow: hidden;
}

.shop-carousel__track--hero .shop-home-hero--slide,
.shop-carousel__track--hero .shop-home-hero__media,
.shop-carousel__track--hero .shop-home-hero__picture,
.shop-carousel__track--hero .shop-home-hero__image {
  height: 100%;
  min-height: 0;
}

.shop-home-hero--overlay .shop-home-hero__content {
  width: min(100%, 680px);
}

.shop-home-hero__title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
}

.shop-home-hero__text {
  max-width: 46rem;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.58;
}

.shop-home-hero__actions {
  align-items: center;
  gap: 0.75rem;
}

.shop-home-section__heading h2 {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.shop-home-copy {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.shop-home-copy h1,
.shop-home-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.1;
}

.shop-catalog-filters {
  padding: clamp(0.9rem, 2vw, 1.25rem);
}

.shop-catalog-filters .shop-actions {
  align-items: center;
}

.shop-catalog-filters .button {
  min-height: 2.7rem;
}

.shop-product-card {
  align-content: start;
}

.shop-product-card__media {
  background: var(--shop-muted-surface);
}

.shop-product-card__image {
  padding: 0.55rem;
}

.shop-product-card__body {
  gap: 0.75rem;
}

.shop-product-card__title {
  font-size: 1.08rem;
}

.shop-product-hero-frame,
.shop-gallery-thumb,
.shop-addon-option__media,
.shop-cart-thumb,
.shop-order-item__media {
  background: var(--shop-muted-surface);
}

.shop-product-hero {
  padding: 0.75rem;
}

.shop-product-details h1 {
  margin-bottom: 0.25rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.shop-add-form .shop-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.shop-add-form .shop-actions .button {
  width: 100%;
}

.shop-addon-option {
  background: color-mix(in srgb, var(--shop-surface) 92%, transparent);
}

body #body-wrapper:has(#grav-login) {
  padding-block: 1.5rem 2.5rem;
}

body #grav-login {
  max-width: min(100%, 30rem);
  margin: 0 auto;
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--shop-surface);
  text-align: left;
}

body #grav-login p {
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

body #grav-login .form-label-wrapper,
body #grav-login .form-data,
body #grav-login .form-input-wrapper {
  text-align: left;
}

body #grav-login .form-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--shop-ink);
  font-weight: 800;
}

body #grav-login .form-input {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  background: var(--shop-surface);
  color: var(--shop-ink);
}

body #grav-login .button-wrapper {
  display: grid;
  gap: 0.75rem;
}

body #grav-login .rememberme {
  float: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
}

body #grav-login .rememberme input {
  flex: 0 0 auto;
}

body #grav-login button[type='submit'] {
  width: 100%;
}

@media (min-width: 1180px) {
  .shop-grid--desktop-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section.shop-home {
    padding-top: 0;
  }

  .shop-home-hero--overlay {
    min-height: clamp(420px, 126vw, 560px);
  }

  .shop-carousel__track--hero > .shop-carousel__slide {
    height: clamp(420px, 126vw, 560px);
  }

  .shop-home-hero--overlay.shop-home-hero--align-left .shop-home-hero__media::after {
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.76) 0%, rgba(15, 15, 15, 0.5) 52%, rgba(15, 15, 15, 0.18) 100%);
  }

  .shop-home-hero__title {
    font-size: clamp(2rem, 8.7vw, 2.75rem);
  }

  .shop-home-hero__text {
    font-size: 1rem;
  }

  .shop-home-hero__actions .button {
    min-height: 2.7rem;
  }
}

@media (max-width: 720px) {
  .shop-page {
    gap: 1.5rem;
  }

  .shop-catalog-filters .shop-form-grid {
    gap: 0.75rem;
  }

  .shop-catalog-filters .shop-field {
    gap: 0.25rem;
  }

  .shop-catalog-filters .shop-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .shop-catalog-filters .shop-checkbox {
    min-height: 2.35rem;
  }

  .shop-product-card {
    padding: 0.85rem;
  }

  .shop-product-card__media {
    aspect-ratio: 4 / 3;
  }

  .shop-product-card__image {
    padding: 0.35rem;
  }

  .shop-product-details h1 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .shop-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-home-copy h1,
  .shop-home-copy h2,
  .shop-home-section__heading h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  body #grav-login {
    margin-top: 0;
  }
}
