.catalogPage {
  padding: 8px 0 12px;
}

.catalogViewport {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: 12px;
}

.catalogShell {
  padding: 0;
  background: #ffffff;
}

.catalogShellViewport {
  height: calc(100vh - var(--storefront-header-height, 132px) - 28px);
  min-height: 620px;
  overflow: hidden;
}

.catalogLayout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  height: 100%;
  min-height: 0;
}

.sidebarCard,
.contentCard,
.subcategoriesCard {
  border: 1px solid rgba(23, 37, 58, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 26, 36, 0.04);
}

.sidebarCard {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 0.85rem;
}

.contentCard {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  padding: 0.95rem 0.95rem 1rem;
  overflow: hidden;
}

.sidebarHeader {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(23, 37, 58, 0.08);
}

.sidebarEyebrow {
  color: #36507a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebarTitle {
  margin: 0;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.1;
}

.sectionHeaderWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(23, 37, 58, 0.08);
}

.sectionHeaderMeta {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.resultsScroll {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.3rem;
}

.categoriesList {
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.categoryLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(23, 37, 58, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.categoryLink:hover {
  color: var(--site-theme-text-strong, #17253a);
  border-color: rgba(23, 37, 58, 0.18);
  box-shadow: 0 8px 18px rgba(18, 26, 36, 0.05);
}

.categoryCount {
  color: #98a2b3;
  font-size: 0.84rem;
}

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

@media (max-width: 1399px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.subcategoriesCard {
  padding: 0.85rem;
  margin-bottom: 0.8rem;
}

.subcategoriesTitle {
  margin: 0 0 0.6rem;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.92rem;
  font-weight: 800;
}

.subcategoriesRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.subcategoryPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 37, 58, 0.1);
  background: #ffffff;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.8rem;
  font-weight: 700;
}

[data-product-card].card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(23, 37, 58, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 26, 36, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

[data-product-card].card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 37, 58, 0.14);
  box-shadow: 0 18px 38px rgba(18, 26, 36, 0.08);
}

[data-product-card] .mediaLink {
  display: block;
  color: inherit;
  text-decoration: none;
}

[data-product-card] .mediaSurface {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  padding: 0.75rem;
  border: 1px solid #edf1f5;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

[data-product-card] .rotator {
  position: relative;
  width: 100%;
  height: 100%;
}

[data-product-card] .rotatorImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 420ms ease, transform 520ms ease;
}

[data-product-card] .rotatorImageActive {
  opacity: 1;
  transform: scale(1);
}

[data-product-card] .imageIndicators {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  z-index: 2;
  display: flex;
  gap: 0.25rem;
  transform: translateX(-50%);
}

[data-product-card] .imageDot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(23, 37, 58, 0.18);
}

[data-product-card] .imageDotActive {
  width: 0.8rem;
  background: rgba(23, 37, 58, 0.72);
}

[data-product-card] .thumbStrip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  min-height: 34px;
  overflow-x: auto;
}

[data-product-card] .thumbChip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e4e9ef;
  background: #ffffff;
  padding: 0.15rem;
}

[data-product-card] .thumbChipActive,
[data-product-card] .thumbChip:hover {
  border-color: rgba(23, 37, 58, 0.28);
  box-shadow: 0 0 0 2px rgba(23, 37, 58, 0.1);
}

[data-product-card] .thumbChipImage {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

[data-product-card] .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.65rem;
}

[data-product-card] .brand {
  color: #758191;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-product-card] .variantBadge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--site-theme-primary, #3f8d95) 24%, transparent);
  color: var(--site-theme-primary-deep, #2f747b);
  background: color-mix(in srgb, var(--site-theme-primary, #3f8d95) 8%, white);
  font-size: 0.72rem;
  font-weight: 700;
}

[data-product-card] .title {
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-product-card] .title:hover {
  color: var(--site-theme-primary-deep, #2f747b);
}

[data-product-card] .singleFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: auto;
}

[data-product-card] .priceBlock {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

[data-product-card] .priceValue {
  color: var(--site-theme-text-strong, #17253a);
  font-size: 1rem;
  font-weight: 900;
}

[data-product-card] .comparePrice {
  color: #8c97a4;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: line-through;
}

[data-product-card] .cartButton,
[data-product-card] .viewButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

[data-product-card] .cartButton {
  min-width: 104px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--site-theme-primary-deep, #2f747b);
  background: linear-gradient(180deg, var(--site-theme-primary, #3f8d95) 0%, var(--site-theme-primary-deep, #2f747b) 100%);
  color: #ffffff;
}

[data-product-card] .viewButton {
  min-width: 104px;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(23, 37, 58, 0.12);
  background: #ffffff;
  color: var(--site-theme-text-strong, #17253a);
  text-decoration: none;
}

[data-product-card] .cartButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.productDetailContainer {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-inline: 10px;
}

.pageShell {
  --amazon-link: var(--site-theme-primary-deep, #2f747b);
  --amazon-link-strong: color-mix(in srgb, var(--site-theme-primary-deep, #2f747b) 88%, black);
  --amazon-border: #d9e2ef;
  --amazon-text: var(--site-theme-text-strong, #17253a);
  --amazon-muted: var(--site-theme-text-muted, #596373);
  --amazon-yellow: var(--site-theme-primary-deep, #2f747b);
  display: block;
}

.pageShell .summaryColumn,
.pageShell .buyColumn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pageShell .galleryStage {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.8rem;
}

.pageShell .thumbRail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pageShell .thumbButton {
  width: 72px;
  height: 72px;
  padding: 0.25rem;
  border: 1px solid var(--amazon-border);
  border-radius: 7px;
  background: #fff;
}

.pageShell .thumbButtonActive,
.pageShell .thumbButton:hover {
  border-color: var(--site-theme-primary-deep, #2f747b);
  box-shadow: 0 0 0 2px rgba(23, 37, 58, 0.12);
}

.pageShell .thumbImage {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.pageShell .mediaFrame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 0.85rem;
  width: 100%;
  border: 1px solid #ede7e8;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.pageShell .mainImage {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.pageShell .zoomBadge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(23, 37, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--amazon-link);
  font-size: 0.82rem;
  font-weight: 700;
}

.pageShell .optionCard,
.pageShell .buyPanel,
.pageShell .detailCard,
.pageShell .sideLinksCard,
.pageShell .featureSummary {
  padding: 0.8rem;
  border: 1px solid var(--amazon-border);
  border-radius: 8px;
  background: #fff;
}

.pageShell .title {
  color: var(--amazon-text);
  font-size: clamp(1.28rem, 1.35vw, 1.7rem);
  line-height: 1.28;
  font-weight: 500;
}

.pageShell .brandText,
.pageShell .buyPrice,
.pageShell .buyAvailability,
.pageShell .centerPriceValue {
  color: var(--amazon-link);
}

.pageShell .topMetaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.pageShell .metaPill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--amazon-border);
  background: #fff;
  color: var(--amazon-link);
  font-size: 0.76rem;
  font-weight: 600;
}

.pageShell .infoGrid {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.pageShell .infoRow {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.5rem;
}

.pageShell .optionThumbGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0.7rem;
}

.pageShell .optionThumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem;
  border: 1px solid var(--amazon-border);
  border-radius: 8px;
  background: #fff;
}

.pageShell .optionThumbActive,
.pageShell .optionThumb:hover {
  border-color: var(--site-theme-primary-deep, #2f747b);
  box-shadow: 0 0 0 2px rgba(23, 37, 58, 0.1);
}

.pageShell .optionThumbMedia {
  width: 58px;
  height: 58px;
}

.pageShell .optionThumbImage,
.pageShell .selectedVariantThumbImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pageShell .selectedVariantPreview {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--amazon-border);
  border-radius: 12px;
  background: #f7f9fc;
}

.pageShell .selectedVariantThumb {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
}

.pageShell .buyButton,
.pageShell .primaryLink,
.pageShell .secondaryLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border-radius: 999px;
}

.pageShell .buyButton,
.pageShell .primaryLink {
  border: 1px solid var(--amazon-link);
  background: var(--amazon-yellow);
  color: #fff;
}

.pageShell .secondaryLink {
  border: 1px solid var(--amazon-border);
  background: #f8fafc;
  color: var(--amazon-text);
}

.pageShell .lightboxOverlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 17, 17, 0.84);
}

.pageShell .lightboxPanel {
  position: relative;
  width: min(92vw, 1180px);
  min-height: min(84vh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
  border-radius: 20px;
  background: #fff;
}

.pageShell .lightboxImage {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.pageShell .lightboxClose,
.pageShell .lightboxNav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 37, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--amazon-link);
}

.pageShell .lightboxNav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.pageShell .lightboxNavPrev {
  left: 20px;
}

.pageShell .lightboxNavNext {
  right: 20px;
}

@media (max-width: 1399px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .catalogPage,
  .catalogShellViewport {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .catalogLayout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sidebarCard,
  .contentCard {
    position: static;
    height: auto;
    overflow: visible;
  }

  .resultsScroll {
    overflow: visible;
    padding-right: 0;
  }

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

  .pageShell .galleryStage {
    grid-template-columns: 1fr;
  }

  .pageShell .thumbRail {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .catalogViewport {
    padding-inline: 10px;
  }

  .contentCard,
  .subcategoriesCard,
  .sidebarCard {
    border-radius: 16px;
  }

  .sectionHeaderWrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid,
  .pageShell .optionThumbGrid {
    grid-template-columns: 1fr;
  }

  [data-product-card] .singleFooter {
    flex-direction: column;
    align-items: stretch;
  }

  .pageShell .infoRow {
    grid-template-columns: 1fr;
  }
}

.pageShell .galleryColumn,
.pageShell .summaryColumn,
.pageShell .buyColumn {
  position: relative;
}

.pageShell .summaryColumn {
  padding-inline: clamp(0.35rem, 0.9vw, 1rem);
}

.pageShell .buyColumn {
  padding-left: clamp(0.1rem, 0.4vw, 0.4rem);
}

.pageShell .galleryShell {
  width: 100%;
}

.pageShell .summaryCard,
.pageShell .optionCard,
.pageShell .buyPanel,
.pageShell .detailCard,
.pageShell .sideLinksCard,
.pageShell .featureSummary {
  border: 1px solid #e6d7d6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.pageShell .summaryCard {
  padding: 0;
  border: 0;
}

.pageShell .eyebrow,
.pageShell .sectionEyebrow {
  margin: 0 0 0.5rem;
  color: var(--site-theme-text-muted, #596373);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pageShell .titleBlock {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e7e7e7;
}

.pageShell .brandText {
  margin-top: 0.35rem;
  color: var(--amazon-link);
  font-size: 0.92rem;
}

.pageShell .centerPriceBlock {
  padding: 0.9rem 0 0.85rem;
  border-bottom: 1px solid #e7e7e7;
}

.pageShell .centerPriceValue {
  font-size: 1.85rem;
  line-height: 1;
  color: var(--amazon-link);
}

.pageShell .centerComparePrice {
  margin-top: 0.4rem;
  color: var(--site-theme-text-muted, #596373);
  font-size: 0.9rem;
}

.pageShell .priceSubText,
.pageShell .lead,
.pageShell .buyDeliveryText,
.pageShell .buyPanelNote,
.pageShell .buyMessage,
.pageShell .descriptionText,
.pageShell .infoDescription,
.pageShell .featureList li,
.pageShell .buyMetaValue {
  text-align: justify;
  text-justify: inter-word;
}

.pageShell .priceSubText {
  margin-top: 0.45rem;
  color: var(--site-theme-text-muted, #596373);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pageShell .lead {
  margin: 0.85rem 0 0;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pageShell .infoTerm {
  margin: 0;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.92rem;
  font-weight: 700;
}

.pageShell .optionLabel,
.pageShell .controlLabel,
.pageShell .buyMetaLabel {
  display: block;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.84rem;
  font-weight: 700;
}

.pageShell .optionLabel {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.pageShell .optionThumbLabel {
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.pageShell .featureSummary {
  padding: 0.95rem 1rem;
}

.pageShell .featureSummaryTitle,
.pageShell .sectionTitle {
  margin: 0 0 0.75rem;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
}

.pageShell .featureList {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--site-theme-text-strong, #17253a);
}

.pageShell .buyPanel {
  padding: 0.8rem;
}

.pageShell .buyPanelHeader {
  margin-top: 0.6rem;
}

.pageShell .selectedVariantTextGroup {
  min-width: 0;
}

.pageShell .selectedVariantLabel {
  color: var(--site-theme-text-muted, #596373);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pageShell .selectedVariantValue {
  margin-top: 0.15rem;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.pageShell .buyDeliveryText,
.pageShell .buyPanelNote,
.pageShell .buyMessage {
  margin: 0.6rem 0 0;
  color: var(--site-theme-text-muted, #596373);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pageShell .controlBlock {
  margin-top: 0.75rem;
}

.pageShell .controlLabel,
.pageShell .buyMetaLabel {
  margin-bottom: 0.3rem;
}

.pageShell .controlSelect {
  min-height: 38px;
  border: 1px solid #e6d7d6;
  border-radius: 8px;
  background-color: #f6f3f3;
  box-shadow: none;
}

.pageShell .buyMetaRow {
  display: grid;
  gap: 0.7rem;
  margin: 0.8rem 0;
}

.pageShell .buyMetaItem {
  padding: 0.65rem 0.75rem;
  border: 1px solid #e6d7d6;
  border-radius: 8px;
  background: #ffffff;
}

.pageShell .sideLinksCard {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.8rem;
}

.pageShell .lightboxMedia {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageShell .descriptionText {
  margin: 0;
  color: var(--site-theme-text-strong, #17253a);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 1200px) {
  .pageShell .buyColumn {
    position: sticky;
    top: 96px;
    align-self: start;
    max-width: 280px;
    margin-left: auto;
  }

  .pageShell .summaryColumn {
    min-width: 0;
  }
}
