/** Shopify CDN: Minification failed

Line 19:20 Unexpected "{"
Line 19:32 Expected ":"
Line 19:36 Unexpected "{"
Line 21:12 Expected identifier but found whitespace
Line 21:14 Unexpected "{"
Line 21:23 Expected ":"
Line 21:78 Unexpected "{"
Line 21:87 Expected ":"
Line 21:142 Expected ":"
Line 22:21 Expected identifier but found whitespace
... and 59 more hidden warnings

**/


/* CSS from section stylesheet tags */
.badge-row-section-{{ section_id }} {
    width: 100%;
    padding: {{ section.settings.section_padding_vertical | default: 3 }}rem {{ section.settings.section_padding_horizontal | default: 2 }}rem;
    background-color: {{ section.settings.background_color | default: 'transparent' }};
  }

  .badge-row__container {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
  }

  .badge-row__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: {{ section.settings.alignment | default: 'center' }};
    align-items: flex-start;
    gap: {{ section.settings.badge_gap | default: 2 }}rem;
  }

  .badge-row__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    min-width: 0;
  }

  .badge-row__image-wrapper {
    width: {{ section.settings.image_size | default: 120 }}px;
    height: {{ section.settings.image_size | default: 120 }}px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
  }

  .badge-row__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .badge-row__text {
    margin: 0;
    font-size: {{ section.settings.text_size | default: 1.0 }}rem;
    color: {{ section.settings.text_color | default: 'inherit' }};
    line-height: 1.4;
    max-width: 150px;
  }

  /* Desktop: Single row */
  @media (min-width: 769px) {
    .badge-row__grid {
      flex-wrap: nowrap;
      justify-content: {{ section.settings.alignment | default: 'center' }};
    }

    .badge-row__badge {
      flex: 1 1 0;
      min-width: 0;
    }

    .badge-row__text {
      max-width: none;
    }
  }

  /* Mobile: Smart wrapping with balanced rows */
  @media (max-width: 768px) {
    .badge-row-section-{{ section_id }} {
      padding: {{ section.settings.section_padding_vertical_mobile | default: 2 }}rem {{ section.settings.section_padding_horizontal_mobile | default: 1 }}rem;
    }

    .badge-row__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: {{ section.settings.badge_gap_mobile | default: 1.5 }}rem;
      justify-items: center;
    }

    .badge-row__badge {
      width: 100%;
      max-width: 120px;
    }

    .badge-row__image-wrapper {
      width: {{ section.settings.image_size_mobile | default: 80 }}px;
      height: {{ section.settings.image_size_mobile | default: 80 }}px;
    }

    .badge-row__text {
      font-size: {{ section.settings.text_size_mobile | default: 0.9 }}rem;
      max-width: 120px;
    }
  }
.bullet-view {
    padding: clamp(2rem, 4vw, 4rem) 0;
  }

  .bullet-view__grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  @media (min-width: 980px) {
    .bullet-view__grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: stretch;
    }
  }

  .bullet-view__media {
    position: relative;
  }

  .bullet-view__image-wrapper {
    position: relative;
    width: 100%;
    border-radius: clamp(18px, 3vw, 28px);
    overflow: hidden;
  }

  .bullet-view__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .bullet-view__image--placeholder {
    width: 100%;
    height: auto;
  }

  .bullet-view__points {
    position: absolute;
    inset: 0;
  }

  .bullet-view__point {
    --marker-size: clamp(44px, 5vw, 60px);
    position: absolute;
    transform: translate(-50%, -50%);
    width: var(--marker-size);
    height: var(--marker-size);
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.9);
    background: var(--marker-color);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .bullet-view__point:hover,
  .bullet-view__point:focus {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  }

  .bullet-view__point.is-active {
    background: var(--marker-active);
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(0,0,0,0.25);
    transform: translate(-50%, -50%) scale(1.12);
  }

  .bullet-view__point-label {
    pointer-events: none;
  }

  .bullet-view__details {
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: clamp(18px, 3vw, 28px);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow: 0 18px 40px rgba(15, 15, 15, 0.18);
    display: grid;
    gap: clamp(1.2rem, 2.5vw, 1.75rem);
  }

  .bullet-view__detail-media {
    margin: 0;
    border-radius: clamp(14px, 2vw, 22px);
    overflow: hidden;
  }

  .bullet-view__detail-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .bullet-view__detail-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
  }

  .bullet-view__detail-description {
    color: rgba(22, 22, 22, 0.78);
    line-height: 1.6;
    min-height: 3rem;
    transition: opacity 0.3s ease;
  }

  .bullet-view__detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .bullet-view__detail-button:hover {
    opacity: 0.88;
    transform: translateY(-2px);
  }

  .bullet-view__empty {
    margin: 0;
    color: rgba(18,18,18,0.6);
    text-align: center;
  }
.collections-grid {
    padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 4rem);
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    max-width: 1200px;
    margin: 0 auto;
  }

  .collections-grid__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .collections-grid__header--left {
    text-align: left;
    align-items: flex-start;
  }

  .collections-grid__header--right {
    text-align: right;
    align-items: flex-end;
  }

  .collections-grid__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
  }

  .collections-grid__description {
    max-width: 60ch;
    color: rgba(18,18,18,0.7);
    line-height: 1.6;
    margin: 0 auto;
  }

  .collections-grid__header--left .collections-grid__description,
  .collections-grid__header--right .collections-grid__description {
    margin: 0;
  }

  .collections-grid__wrapper {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
    grid-template-columns: repeat(var(--columns-desktop), minmax(0, 1fr));
  }

  @media (max-width: 1100px) {
    .collections-grid__wrapper {
      grid-template-columns: repeat(var(--columns-tablet), minmax(0, 1fr));
    }
  }

  @media (max-width: 720px) {
    .collections-grid__wrapper {
      grid-template-columns: 1fr;
    }
  }

  .collection-card {
    display: grid;
    gap: 1.1rem;
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px -20px rgba(15,15,15,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -24px rgba(15,15,15,0.45);
  }

  .collection-card__media {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
  }

  .collection-card__media:hover .collection-card__image {
    transform: scale(1.05);
  }

  .collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35));
    pointer-events: none;
  }

  .collections-grid__image--ratio-square {
    aspect-ratio: 1 / 1;
  }

  .collections-grid__image--ratio-portrait {
    aspect-ratio: 3 / 4;
  }

  .collections-grid__image--ratio-landscape {
    aspect-ratio: 4 / 3;
  }

  .collections-grid__image--ratio-widescreen {
    aspect-ratio: 16 / 9;
  }

  .collection-card__info {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: grid;
    gap: 0.6rem;
  }

  .collection-card__title {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
  }

  .collection-card__title a {
    text-decoration: none;
    color: inherit;
  }

  .collection-card__count {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(18,18,18,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .collection-card__excerpt {
    margin: 0;
    color: rgba(18,18,18,0.7);
    line-height: 1.6;
  }

  .collection-card__cta {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .collection-card__cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
  }

  .collections-grid__empty {
    text-align: center;
    color: rgba(18,18,18,0.6);
  }
.content-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: {{ section.settings.padding_top }}px 2rem {{ section.settings.padding_bottom }}px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Full height option - takes full viewport height */
  .content-section--full-height {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .content-section__background-image,
  .content-section__background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .content-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .content-section__wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
  }
  
  .content-section__content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .content-section__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
  }
  
  .content-section__divider {
    width: 120px;
    height: 2px;
    margin: 1.5rem auto 2rem;
    display: block;
  }
  
  .content-section__content[style*="left"] .content-section__divider {
    margin-left: 0;
    margin-right: auto;
  }
  
  .content-section__content[style*="right"] .content-section__divider {
    margin-left: auto;
    margin-right: 0;
  }
  
  .content-section__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
  }
  
  .content-section__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
  }
  
  .content-section__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .content-section {
      padding: 80px 28px;
      min-height: 420px;
    }
    
    .content-section__wrapper {
      width: 100%;
      padding: 0;
    }
    
    .content-section__content {
      max-width: 100%;
    }
    
    .content-section__heading {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    
    .content-section__divider {
      width: 80px;
      margin: 1rem auto 1.25rem;
    }
    
    .content-section__text {
      font-size: 1rem;
      line-height: 1.65;
      margin-bottom: 1.75rem;
    }
    
    .content-section__button {
      padding: 0.875rem 2rem;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .content-section {
      padding: 64px 20px;
      min-height: 380px;
    }
    
    .content-section__heading {
      font-size: 1.5rem;
    }
    
    .content-section__text {
      font-size: 0.95rem;
    }
    
    .content-section__button {
      padding: 0.75rem 1.75rem;
      font-size: 0.85rem;
    }
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    height: 70vh;
    max-height: 800px;
    overflow: visible;
    padding-left: var(--hero-pad-x, 0px);
    padding-right: var(--hero-pad-x, 0px);
  }
  
  /* Image background */
  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease;
  }
  
  .hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Video background */
  .hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1; /* Show immediately for debugging */
  }
  
  .hero__video--loaded {
    opacity: 1;
  }
  
  /* Shopify video element */
  .hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  /* YouTube video iframe */
  .hero__video--youtube {
    pointer-events: none;
  }
  
  .hero__youtube-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  /* Content wrapper - uses grid system like header/footer */
  .hero__content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: var(--content-margin) var(--content-width) var(--content-margin);
    width: 100%;
    height: 100%;
  }
  
  /* Content overlay - constrained to center column */
  .hero__content {
    grid-column: 2;
    display: flex;
    padding: var(--hero-content-pad-y, 2rem) 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Vertical alignment options */
  .hero[data-vertical-align="top"] .hero__content {
    align-items: flex-start;
  }
  
  .hero[data-vertical-align="center"] .hero__content {
    align-items: center;
  }
  
  .hero[data-vertical-align="bottom"] .hero__content {
    align-items: flex-end;
  }
  
  /* Horizontal alignment options */
  .hero[data-horizontal-align="left"] .hero__content {
    justify-content: flex-start;
  }
  
  .hero[data-horizontal-align="center"] .hero__content {
    justify-content: center;
  }
  
  .hero[data-horizontal-align="right"] .hero__content {
    justify-content: flex-end;
  }
  
  /* Text alignment based on horizontal alignment */
  .hero__content[data-text-align="left"] {
    text-align: left;
  }
  
  .hero__content[data-text-align="center"] {
    text-align: center;
  }
  
  .hero__content[data-text-align="right"] {
    text-align: right;
  }
  
  .hero__content-inner {
    max-width: 800px;
    width: 100%;
  }
  
  .hero__heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
  }
  
  .hero__subheading {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 600px;
  }
  
  /* Subheading alignment within content */
  .hero__content[data-text-align="left"] .hero__subheading {
    margin-left: 0;
    margin-right: auto;
  }
  
  .hero__content[data-text-align="center"] .hero__subheading {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__content[data-text-align="right"] .hero__subheading {
    margin-left: auto;
    margin-right: 0;
  }
  
  /* Buttons */
  .hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Button alignment based on text alignment */
  .hero__content[data-text-align="left"] .hero__buttons {
    justify-content: flex-start;
  }

  .hero__content[data-text-align="center"] .hero__buttons {
    justify-content: center;
  }

  .hero__content[data-text-align="right"] .hero__buttons {
    justify-content: flex-end;
  }

  .hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem; /* Slightly smaller text */
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-align: center;
    min-width: 140px; /* Reduced from 160px */
    background: var(--hero-btn-bg);
    border: 1px solid var(--hero-btn-border); /* Thinner border */
    color: var(--hero-btn-color, #ffffff);
    padding: 12px 28px; /* Hardcoded smaller padding overriding inline vars if needed, or I can trust the user settings but default smaller */
    /* Using !important to override inline styles if user hasn't adjusted from defaults which were 16px/32px */
    padding: var(--hero-btn-pad-y, 12px) var(--hero-btn-pad-x, 24px); 
  }

  .hero__button:hover {
    /* No box-shadow glow or lift */
    opacity: 0.85; 
  }

  /* Tags - positioned below buttons */
  .hero__tags {
    margin-top: 2rem;
    display: flex !important;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero__content[data-text-align="left"] .hero__tags {
    justify-content: flex-start;
  }

  .hero__content[data-text-align="center"] .hero__tags {
    justify-content: center;
  }

  .hero__content[data-text-align="right"] .hero__tags {
    justify-content: flex-end;
  }

  .hero__tag {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--tag-color, #ffffff) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero__tag-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .hero__tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .hero__tag-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--tag-color, #ffffff) !important;
  }
  
  /* Dark overlay for better text readability */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .hero {
      min-height: 550px; /* Force minimum height */
      height: auto;
      padding-bottom: 60px;
    }
    
    .hero__heading {
      font-size: 2.5rem;
      /* Add top margin on mobile to prevent overlap with sticky header */
      padding-top: 100px; 
      margin-bottom: 1.5rem;
    }
    
    .hero__subheading {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }
    
    .hero__buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 100%;
    }
    
    .hero__button {
      width: 100%;
      max-width: 320px;
      padding: 14px 20px;
    }
    
    /* Hide video on mobile for performance (unless setting is enabled) */
    .hero[data-mobile-video="false"] .hero__video,
    .hero:not([data-mobile-video="true"]) .hero__video {
      display: none;
    }

    .hero__tags {
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      min-height: 500px;
      padding-bottom: 40px;
    }
    
    .hero__content {
      padding: 1rem 0;
    }
    
    .hero__heading {
      font-size: 1.9rem; /* Smaller font on very small screens */
      padding-top: 110px; /* More clearance for header */
      line-height: 1.25;
    }
    
    .hero__subheading {
      font-size: 1rem;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
  }
.product-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pc-title {
  margin-bottom: 1rem;
  padding-left: var(--pc-gap, 24px);
  font-size: 1.75rem;
  font-weight: 600;
}

.pc-track {
  display: flex;
  gap: var(--pc-gap, 1.5rem);
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: visible;
  padding-left: var(--pc-gap, 24px);
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -ms-overflow-style: none;
}
.pc-track::-webkit-scrollbar { display: none; }

/* Product card within carousel */
.pc-track .product-card {
  flex: 0 0 calc(25% - var(--pc-gap, 1.5rem));
  scroll-snap-align: start;
  touch-action: auto;
  min-width: 0;
}
@media (max-width: 1024px) {
  .pc-track .product-card { flex: 0 0 calc(33.33% - var(--pc-gap, 1.5rem)); }
}
@media (max-width: 768px) {
  .pc-track .product-card { flex: 0 0 80%; }
}

/* Override product card title/price with carousel custom sizes */
.pc-track .product-card__title,
.pc-track .product-card__title a {
  font-size: var(--pc-title-size, 13px);
  color: var(--pc-title-color, #333);
}
.pc-track .product-card__price {
  font-size: var(--pc-price-size, 14px);
  color: var(--pc-price-color, #595959);
}

/* NAV BUTTONS */
.pc-nav {
  display: none;
}
@media (min-width: 1025px) {
  .pc-nav {
    display: block;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    transition: all 0.2s ease;
  }
  .pc-nav:hover {
    background: #f9f9f9;
    border-color: #bbb;
    transform: translateY(-50%) scale(1.05);
  }
  .pc-prev { left: 12px; }
  .pc-next { right: 12px; }
}
/* TileBar-inspired Collection Grid */
  .collection-grid {
    padding: 0 50px 40px 50px;
    max-width: 1600px;
    margin: 0 auto;
  }

  /* ============================================
     COLLECTION BANNER - Desktop: 50/50 split
     Mobile: Background image with overlay
     ============================================ */
  .collection-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    min-height: 280px;
  }

  .collection-banner__image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
  }

  .collection-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .collection-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    background: #fafafa;
  }

  .collection-banner__title {
    margin: 0 0 16px 0;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
  }

  .collection-banner__description {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .collection-banner__count {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Mobile/Tablet: Background image with overlay */
  @media (max-width: 1024px) {
    .collection-grid {
      padding: 0 0 20px 0;
    }

    .collection-banner {
      display: block;
      position: relative;
      min-height: 320px;
      margin-bottom: 24px;
    }

    .collection-banner__image-wrapper {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .collection-banner__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .collection-banner__content {
      position: relative;
      z-index: 2;
      min-height: 320px;
      padding: 40px 20px;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 100%
      );
      justify-content: flex-end;
      align-items: flex-start;
    }

    .collection-banner__title {
      color: #fff;
      font-size: 1.75rem;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .collection-banner__description {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      max-width: none;
    }

    .collection-banner__count {
      color: rgba(255, 255, 255, 0.8);
      font-size: 12px;
    }
  }

  /* No-image header fallback */
  .collection-grid__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 40px 0 20px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .collection-grid__header--no-image {
    padding-top: 40px;
  }

  .collection-grid__header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
  }

  .collection-grid__title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .collection-grid__description {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    max-width: 600px;
  }

  .collection-grid__count {
    color: #666;
    font-size: 13px;
  }

  /* Toolbar wrapper for filters and sort */
  .collection-grid__toolbar-wrapper {
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
  }

  @media (max-width: 768px) {
    .collection-grid__toolbar-wrapper {
      padding: 16px 15px;
      overflow-x: auto;
    }

    .collection-grid__header--no-image {
      padding: 20px 15px;
      margin: 0;
    }
  }

  /* Toolbar with Filters and Sort */
  .collection-grid__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .collection-grid__filters-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
  }

  .collection-grid__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .collection-grid__filter-dropdown {
    position: relative;
  }

  .collection-grid__filter-select {
    appearance: none;
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") right 10px center no-repeat;
    font-size: 13px;
    cursor: pointer;
    min-width: 120px;
  }

  .collection-grid__filter-select:hover {
    border-color: #999;
  }

  .collection-grid__filter-select:focus {
    outline: none;
    border-color: #333;
  }

  /* Price Range Dropdown */
  .collection-grid__filter-dropdown--price {
    position: relative;
  }

  .collection-grid__price-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
  }

  .collection-grid__price-trigger:hover {
    border-color: #999;
  }

  .collection-grid__price-active {
    color: #c00;
    font-size: 16px;
    line-height: 1;
  }

  .collection-grid__price-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .collection-grid__filter-dropdown--price:focus-within .collection-grid__price-popup,
  .collection-grid__price-popup.is-open {
    display: block;
  }

  .collection-grid__price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .collection-grid__price-input {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    font-size: 13px;
  }

  .collection-grid__price-sep {
    color: #999;
  }

  .collection-grid__price-apply {
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
  }

  .collection-grid__price-apply:hover {
    background: #000;
  }

  /* Active Filters Tags */
  .collection-grid__active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #ddd;
  }

  .collection-grid__active-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0f0f0;
    font-size: 12px;
    text-decoration: none;
    color: #333;
  }

  .collection-grid__active-tag:hover {
    background: #e0e0e0;
  }

  .collection-grid__clear-all {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
  }

  .collection-grid__clear-all:hover {
    color: #000;
  }

  /* Sort Dropdown */
  .collection-grid__sort-wrapper {
    flex-shrink: 0;
  }

  .collection-grid__sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .collection-grid__sort-label {
    font-size: 13px;
    color: #666;
  }

  .collection-grid__sort-select {
    appearance: none;
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") right 10px center no-repeat;
    font-size: 13px;
    cursor: pointer;
  }

  /* TileBar-style Product Grid - Full Width, No Sidebar */
  .collection-grid__product-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--columns-desktop), 1fr);
  }

  @media (max-width: 1100px) {
    .collection-grid__product-list {
      grid-template-columns: repeat(var(--columns-tablet), 1fr);
    }
  }

  @media (max-width: 700px) {
    .collection-grid {
      padding: 20px 15px;
    }
    .collection-grid__product-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .collection-grid__header {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* ============================================
     CUSTOM PAGINATION - pg-* classes
     ============================================ */
  .pg-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    padding: 20px 0;
  }

  .pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .pg-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
  }

  .pg-num {
    min-width: 40px;
  }

  .pg-current {
    background: #333;
    color: #fff;
    border-color: #333;
    cursor: default;
  }

  .pg-current:hover {
    background: #333;
    border-color: #333;
  }

  .pg-prev,
  .pg-next {
    min-width: 40px;
    padding: 0;
  }

  .pg-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .pg-disabled:hover {
    background: #fff;
    border-color: #ddd;
  }

  .pg-ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    min-width: 24px;
    padding: 0;
  }

  .pg-ellipsis:hover {
    background: transparent;
    border: none;
  }

  /* ============================================
     TILEBAR-INSPIRED PRODUCT CARD STYLES
     ============================================ */

  .product-card {
    position: relative;
  }

  .product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
  }

  .product-card__link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-card__image {
    transform: scale(1.03);
  }

  .product-card__placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
  }

  /* Badges */
  .product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
  }

  .product-card__badge--soldout {
    background: #888;
    color: #fff;
  }

  .product-card__badge--sale {
    background: #c00;
    color: #fff;
  }

  /* Hover Action Buttons */
  .product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.25s ease;
    z-index: 3;
  }

  .product-card__media:hover .product-card__actions {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card__btn {
    width: 100%;
    height: 36px;
    border: none;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }

  .product-card__btn--quick-add {
    background: #000;
    color: #fff;
  }

  .product-card__btn--quick-add:hover {
    background: #222;
  }

  .product-card__btn--quick-add:disabled {
    background: #888;
    cursor: not-allowed;
  }

  /* TileBar tan sample button */
  .product-card__btn--sample {
    background: #D8D5C6;
    color: #333;
  }

  .product-card__btn--sample:hover {
    background: #ccc9ba;
  }

  /* Card Info - TileBar Typography */
  .product-card__info {
    padding: 12px 8px 0 8px;
    text-align: left;
  }

  @media (max-width: 768px) {
    .product-card__info {
      padding: 12px 10px 8px 10px;
    }
  }

  .product-card__vendor {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 4px;
  }

  .product-card__title {
    margin: 0 0 6px 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
  }

  .product-card__title a {
    color: #333;
    text-decoration: none;
  }

  .product-card__title a:hover {
    text-decoration: underline;
  }

  .product-card__price {
    font-size: 13px;
    color: #595959;
  }

  .product-card__price-current {
    color: #595959;
  }

  .product-card__price-compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 6px;
    font-size: 12px;
  }

  .collection-grid__no-results {
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 60px 20px;
  }
.product-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pc-title {
  margin-bottom: 1rem;
  padding-left: var(--pc-gap, 24px);
  font-size: 1.75rem;
  font-weight: 600;
}

.pc-track {
  display: flex;
  gap: var(--pc-gap, 1.5rem);
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: visible;
  padding-left: var(--pc-gap, 24px);
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -ms-overflow-style: none;
}
.pc-track::-webkit-scrollbar { display: none; }

.pc-card {
  flex: 0 0 calc(25% - var(--pc-gap, 1.5rem));
  scroll-snap-align: start;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: inherit;
  touch-action: auto;
}
@media (max-width: 1024px) {
  .pc-card { flex: 0 0 calc(33.33% - var(--pc-gap, 1.5rem)); }
}
@media (max-width: 768px) {
  .pc-card { flex: 0 0 80%; }
}

.pc-image-wrap {
  position: relative;
  overflow: hidden;
}
.pc-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.pc-buy-now {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease;
}
.pc-image-wrap:hover .pc-buy-now {
  opacity: 1;
}

.pc-title-text {
  font-size: var(--pc-title-size, 1rem);
  font-weight: 500;
  margin-top: .75rem;
  color: var(--pc-title-color, inherit);
  text-decoration: none;
}
.pc-price {
  font-size: var(--pc-price-size, 0.95rem);
  color: var(--pc-price-color, inherit);
  opacity: .8;
  text-decoration: none;
}

/* NAV BUTTONS */
.pc-nav {
  display: none;
}
@media (min-width: 1025px) {
  .pc-nav {
    display: block;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
  }
  .pc-prev { left: 0; }
  .pc-next { right: 0; }
}
.product-showcase {
  display: grid;
  gap: var(--showcase-pad, 0px);
  padding: var(--showcase-pad, 0px);
  margin: 0;
  background: var(--showcase-bg, transparent);
  width: 100%;
  max-width: 100%;
}

.product-showcase__grid {
  display: grid;
  width: 100%;
  gap: var(--showcase-pad, 0px);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

@media (min-width: 768px) {
  .product-showcase__grid {
    grid-template-columns: repeat(var(--cards-per-row), 1fr);
  }
}

/* --- CARD WRAPPER --- */
.ps-card {
  background: var(--card-bg, #1b1b1b);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  color: var(--font);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* --- PRICE TAG --- */
.ps-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  z-index: 3;
}

/* --- IMAGE ZONE --- */
 .ps-card__image-wrapper {
   position: relative;
   width: 100%;
  height: clamp(220px, 28vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .ps-card__image-wrapper img {
   position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 2;
 }

/* --- CONTENT AREA --- */
 .ps-card__content {
   padding: 1.75rem;
   display: flex;
   flex-direction: column;
   gap: 1.75rem;
 }
 
 /* SECTION SPLIT: LEFT / RIGHT */
 .ps-columns {
   display: grid;
   grid-template-columns: 1fr;
   gap: 1.75rem;
 }
 
 @media (min-width: 768px) {
   .ps-columns {
     grid-template-columns: minmax(0, 1.2fr) 2px minmax(0, 1fr);
     column-gap: 1.75rem;
   }
 }

.ps-columns--single {
  grid-template-columns: 1fr !important;
}

.ps-columns--single .ps-divider,
.ps-columns--single .ps-right-column {
  display: none;
}
 
 .ps-divider {
   background: linear-gradient(to bottom, transparent, var(--primary), transparent);
   width: 2px;
   height: 100%;
 }

.ps-title {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.ps-desc {
  color: var(--font);
  opacity: 0.85;
  font-size: 0.95rem;
}

.ps-stars-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  width: 100%;
}
.ps-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.ps-stars span {
  font-size: 1.2rem;
}

/* --- BUTTON --- */
 .ps-button {
   margin: 0;
   width: 100%;
   background: var(--primary);
   border-radius: 40px;
   padding: 0.9rem;
   text-align: center;
   font-weight: 700;
   color: #fff;
   text-decoration: none;
   transition: opacity 0.2s ease;
   display: inline-block;
 }

.ps-button:hover {
  opacity: 0.8;
}
/* Hide third-party sample widget */
  .product-samples-widget__trigger,
  .product-samples-button {
    display: none !important;
  }

  .product-detail {
    position: relative;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
  }

  .product-detail__form {
    position: relative;
    display: block;
  }

  .product-detail__blocks {
    position: relative;
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .product-block {
    position: relative;
    z-index: 1;
  }

  .product-block--background {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: clamp(18px, 3vw, 28px);
    pointer-events: none;
  }

  .product-block--thumbnails {
    display: flex;
    flex-direction: column;
    gap: var(--thumb-gap, 12px);
  }

  .product-thumbnails {
    display: flex;
    gap: var(--thumb-gap, 12px);
    flex-wrap: wrap;
  }

  .product-thumbnails--column {
    flex-direction: column;
  }

  .product-thumbnail {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    outline: 0;
    width: var(--thumb-size, 72px);
    height: var(--thumb-size, 72px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .product-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-thumbnail.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid currentColor;
    border-radius: inherit;
  }

  .product-image {
    display: block;
  }

  .product-image__stage {
    position: relative;
    width: 100%;
    border-radius: clamp(18px, 3vw, 28px);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.04);
  }

  .product-image__stage--ratio-square { aspect-ratio: 1 / 1; }
  .product-image__stage--ratio-portrait { aspect-ratio: 3 / 4; }
  .product-image__stage--ratio-landscape { aspect-ratio: 4 / 3; }
  .product-image__stage--ratio-widescreen { aspect-ratio: 16 / 9; }

  .product-image__stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin: 0;
  }

  .product-description__text {
    color: rgba(20, 20, 20, 0.85);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-description__text[data-description-expanded="true"] {
    -webkit-line-clamp: initial !important;
    overflow: visible;
  }

  .product-description__toggle {
    margin-top: 0.75rem;
    background: transparent;
    border: none;
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
  }

  .product-price {
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }

  .product-price__compare {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.6;
  }

  .product-variants fieldset {
    border: none;
    padding: 0;
    margin: 0 0 1rem;
  }

  .product-variants label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
  }

  .product-variants select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.14);
    background-color: #fff;
  }

  .product-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 200px;
  }

  .product-quantity input {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.14);
    background-color: #fff;
  }

  .product-actions {
    display: grid;
    gap: 0.75rem;
  }

  .product-actions__submit {
    padding: 1.2rem 4rem;
    border-radius: 2px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .product-actions__submit:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
  }

  .product-actions__submit:not(:disabled):hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  .product-review {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(20, 20, 20, 0.85);
  }

  .product-review__stars {
    display: inline-flex;
    gap: 0.1rem;
    color: #ffb400;
    font-size: 1.1rem;
  }
.search-section {
    width: 100%;
    padding: 40px 20px;
  }

  .search-section__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-section__header {
    margin-bottom: 40px;
  }

  .search-section__title {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 20px 0 24px 0;
    text-align: center;
  }

  .search-section__form {
    max-width: 600px;
    margin: 0 auto;
  }

  .search-section__form-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .search-section__form-group:focus-within {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
  }

  .search-section__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
  }

  .search-section__input::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

  .search-section__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin-right: 0.5rem;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .search-section__clear:hover {
    color: rgba(0, 0, 0, 0.8);
  }

  .search-section__submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1.5rem;
    border: none;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .search-section__submit:hover {
    background: #333;
    transform: translateY(-1px);
  }

  .search-section__submit:active {
    transform: translateY(0);
  }

  .search-section__submit svg {
    flex-shrink: 0;
  }

  .search-section__submit-text {
    display: none;
  }

  @media (min-width: 768px) {
    .search-section__submit-text {
      display: inline;
    }
  }

  .search-section__tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .search-section__tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
  }

  .search-section__tab:hover {
    color: rgba(0, 0, 0, 0.8);
  }

  .search-section__tab--active {
    color: #111;
    border-bottom-color: #111;
  }

  .search-section__tab-count {
    font-size: 0.875rem;
    opacity: 0.7;
  }

  .search-section__controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .search-section__sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .search-section__sort-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  .search-section__sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .search-section__sort-select:hover {
    border-color: rgba(0, 0, 0, 0.3);
  }

  .search-section__sort-select:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
  }

  .search-section__summary {
    margin-bottom: 1.5rem;
  }

  .search-section__summary-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
  }

  .search-section__results {
    margin-bottom: 2rem;
  }

  .search-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-mobile, 2), 1fr);
    gap: 24px;
    margin-bottom: 2rem;
    align-items: start;
  }

  @media (min-width: 768px) {
    .search-section__grid {
      grid-template-columns: repeat(var(--grid-tablet, 3), 1fr);
    }
  }

  @media (min-width: 1024px) {
    .search-section__grid {
      grid-template-columns: repeat(var(--grid-desktop, 4), 1fr);
    }
  }

  @media (max-width: 767px) {
    .search-section__grid {
      gap: 16px;
    }
    .search-section {
      padding: 20px 15px;
    }
  }

  /* Article card enhancements for search */
  .search-section__grid .article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
  }

  .search-section__grid .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .search-section__grid .article-card__image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
  }

  .search-section__grid .article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-section__grid .article-card:hover .article-card__image {
    transform: scale(1.03);
  }

  .search-section__grid .article-card__content {
    padding: 16px;
  }

  .search-section__grid .article-card__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
  }

  .search-section__grid .article-card__title a {
    color: #111;
    text-decoration: none;
  }

  .search-section__grid .article-card__title a:hover {
    text-decoration: underline;
  }

  .search-section__grid .article-card__meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
  }

  .search-section__grid .article-card__excerpt {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
  }

  /* ============================================
     CUSTOM PAGINATION - pg-* classes
     ============================================ */
  .pg-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .pg-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
  }

  .pg-num {
    min-width: 40px;
  }

  .pg-current {
    background: #333;
    color: #fff;
    border-color: #333;
    cursor: default;
  }

  .pg-current:hover {
    background: #333;
    border-color: #333;
  }

  .pg-prev,
  .pg-next {
    min-width: 40px;
    padding: 0;
  }

  .pg-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .pg-disabled:hover {
    background: #fff;
    border-color: #ddd;
  }

  .pg-ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    min-width: 24px;
    padding: 0;
  }

  .pg-ellipsis:hover {
    background: transparent;
    border: none;
  }

  .search-section__empty {
    padding: 4rem 2rem;
    text-align: center;
  }

  .search-section__empty-content {
    max-width: 500px;
    margin: 0 auto;
  }

  .search-section__empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: rgba(0, 0, 0, 0.3);
  }

  .search-section__empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: rgba(0, 0, 0, 0.8);
  }

  .search-section__empty-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 1.5rem;
    line-height: 1.6;
  }

  .search-section__empty-suggestions {
    text-align: left;
    background: rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
  }

  .search-section__empty-suggestions-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: rgba(0, 0, 0, 0.8);
  }

  .search-section__empty-suggestions-list {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
  }

  .search-section__initial {
    padding: 4rem 2rem;
    text-align: center;
  }

  .search-section__initial-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
  }
.side-by-side-media {
    width: 100%;
  }
  
  .side-by-side-media__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  
  .side-by-side-media__item {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .side-by-side-media__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .side-by-side-media__item:hover .side-by-side-media__image {
    transform: scale(1.1);
  }
  
  .side-by-side-media__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .side-by-side-media__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    color: white;
  }
  
  .side-by-side-media__heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    color: white;
  }
  
  .side-by-side-media__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .side-by-side-media__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Mobile responsive - stack vertically */
  @media (max-width: 768px) {
    .side-by-side-media__grid {
      grid-template-columns: 1fr;
    }
    
    .side-by-side-media__item {
      min-height: 400px;
    }
    
    .side-by-side-media__heading {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    
    .side-by-side-media__content {
      padding: 1.5rem;
    }
  }
  
  /* Tablet - maintain 2 columns */
  @media (min-width: 769px) and (max-width: 1024px) {
    .side-by-side-media__item {
      min-height: 450px;
    }
  }

/* CSS from block stylesheet tags */
.background-block {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
.columns {
    display: flex;
    width: 100%;
  }

  .columns > * {
    flex: 1 1 0;
    padding: var(--col-padding-y) var(--col-padding-x);
  }

  @media (max-width: 800px) {
    .columns {
      flex-direction: column;
    }
  }
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding);
  }

  /* Fix for all blocks in vertical groups to ensure they stretch */
  .group--vertical > * {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
  }

  @media (max-width: 768px) {
    .group--vertical {
      padding: 0 !important;
    }
  }
.image-block {
    width: 100%;
  }

  .image-block__inner {
    position: relative;
    width: 100%;
  }

  .image-block__inner img {
    display: block;
    object-fit: var(--fit);
  }

  .image-block__link {
    display: inline-block;
    line-height: 0; /* remove inline-gap around images */
  }
.product-block--accordion {
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
    width: 100%;
    align-self: stretch;
  }

  .accordion-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
  }
  
  .accordion-header::-webkit-details-marker {
    display: none;
  }

  .accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
  }

  .accordion-icon::before,
  .accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }

  .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  details[open] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .accordion-content {
    padding-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .product-specs__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .product-specs__label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-specs__value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222;
  }
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Sample Section */
  .sample-section {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .sample-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .sample-text {
    display: flex;
    flex-direction: column;
  }

  .sample-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.05em;
  }

  .sample-sub {
    font-size: 0.75rem;
    color: #666;
  }

  .btn-sample {
    background: #d4c4a8; /* TileBar-ish Tan/Beige */
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .btn-sample:hover {
    background: #c3b397;
  }

  /* Add to Cart */
  .product-actions__submit {
    width: 100%;
    padding: 1rem;
    background: #111;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
  }

  .product-actions__submit:hover {
    opacity: 0.9;
  }

  .product-actions__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #999;
  }

  .dynamic-checkout-wrapper {
    margin-top: 0.5rem;
  }

  /* Shipping Info */
  .shipping-info {
    text-align: center;
    font-size: 0.8rem;
    color: #008a00; /* Green for availability/shipping */
    font-weight: 600;
    margin-top: 0.25rem;
  }
.product-block--image-tiles {
    width: 100%;
  }

  .image-tiles__count {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
  }

  .image-tiles__grid {
    display: grid;
    grid-template-columns: repeat(var(--tiles-columns, 2), 1fr);
    gap: var(--tiles-gap, 16px);
  }

  .image-tiles__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--tiles-radius, 8px);
    background-color: rgba(0, 0, 0, 0.04);
  }

  .image-tiles__link {
    display: block;
    text-decoration: none;
    color: inherit;
    touch-action: pan-y;
  }

  .image-tiles__image-wrapper {
    position: relative;
    aspect-ratio: var(--tiles-ratio, 1 / 1);
    overflow: hidden;
  }

  .image-tiles__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--tiles-fit, cover);
    transition: transform 0.3s ease;
    touch-action: pan-y;
    -webkit-user-drag: none;
    user-drag: none;
  }

  .image-tiles__link:hover .image-tiles__image {
    transform: scale(1.05);
  }

  .image-tiles__zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    color: #333;
  }

  .image-tiles__link:hover .image-tiles__zoom-icon {
    opacity: 1;
  }

  .image-tiles__empty,
  .image-tiles__more {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    padding: 12px 0;
  }

  .image-tiles__more {
    margin-top: 12px;
  }

  /* Lightbox Styles */
  .image-tiles-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .image-tiles-lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }

  .image-tiles-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
  }

  .image-tiles-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-tiles-lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
  }

  .image-tiles-lightbox__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .image-tiles-lightbox__close:hover {
    opacity: 0.7;
  }

  .image-tiles-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .image-tiles-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .image-tiles-lightbox__nav--prev {
    left: -64px;
  }

  .image-tiles-lightbox__nav--next {
    right: -64px;
  }

  .image-tiles-lightbox__counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  @media (max-width: 768px) {
    .image-tiles-lightbox__nav--prev { left: 8px; }
    .image-tiles-lightbox__nav--next { right: 8px; }
    .image-tiles-lightbox__close { top: 8px; right: 8px; }
    .image-tiles-lightbox__counter { bottom: 16px; }
  }
.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .product-price__main {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    color: #111;
  }
  
  [data-price-current] {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #000;
  }

  .price-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    text-transform: lowercase;
  }

  .cover_value {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .cover-item-price {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
  }

  .cover-item-price small {
    font-size: 0.85rem;
    color: #888;
  }

  .product-price__compare {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
    margin-top: 0.25rem;
  }
.product-block--specs {
    background: rgba(0, 0, 0, 0.02);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(1.1rem, 2.5vw, 1.75rem);
    display: grid;
    gap: 0.75rem;
  }

  .product-specs {
    margin: 0;
    display: grid;
    gap: 0.75rem;
  }

  .product-specs__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .product-specs__label {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(18, 18, 18, 0.6);
  }

  .product-specs__value {
    margin: 0;
    color: rgba(18, 18, 18, 0.9);
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .product-block--specs {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
.total-price {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1rem 0;
  }

  .total-price .calc_price {
    font-weight: 700;
  }
.quantity-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    max-width: 100%;
  }

  .product_type {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .product_type--box {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
  }

  .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .input-separator {
    padding-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: #888;
  }

  .qty-box__input,
  .quantity-selector {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 1rem;
    text-align: center;
    color: #111;
    font-weight: 500;
  }
  
  .qty-box__input:focus,
  .quantity-selector:focus {
    border-color: #000;
    outline: none;
  }

  .quantity-selector[readonly] {
    background-color: #f7f7f7;
    border-color: #e0e0e0;
    color: #555;
  }

  .product_type label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .block-total-price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
  }
  
  .block-total-price span {
    color: #111;
  }
.simple-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid currentColor;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .simple-button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
.simple-divider {
    border: none;
    border-top: 1px solid currentColor;
    margin: 2rem 0;
  }
.simple-heading__text {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    line-height: 1.2;
  }
.simple-image {
    margin: 0;
  }

  .simple-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .simple-image__caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }
.simple-rich-text :where(p) {
    margin-top: 0;
  }
.simple-spacer {
    width: 100%;
  }
.simple-text {
    text-align: var(--simple-text-align);
  }

  .simple-text--title {
    font-size: 1.75rem;
    font-weight: 700;
  }

  .simple-text--subtitle {
    font-size: 1.3rem;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
.tile-calculator-block {
    margin: 1rem 0;
  }

  .label-wrapper {
    margin-bottom: 1rem;
  }

  .calculator {
    cursor: pointer;
  }

  .calculator-icon {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #111;
    text-decoration: underline;
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
  }

  .calculator-icon:hover {
    opacity: 0.7;
  }

  .tile-calculator-wrapper {
    display: none;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
  }

  .tile-calculator-wrapper.active {
    display: block;
  }

  .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
  }

  .close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
  }

  .close::before,
  .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .tile-calculator-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .length-type-switcher {
    display: flex;
    gap: 0.5rem;
  }

  .length-item {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #fff;
  }

  .length-item:hover {
    border-color: #111;
  }

  .length-item.active {
    background: #111;
    color: #fff;
    border-color: #111;
  }

  .calculator-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dimensions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .dimension-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .dimension-box .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
  }

  .input-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .input-box input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
  }

  .input-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
  }

  .actions {
    margin-top: 0.5rem;
  }

  .btn-calculator {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .btn-calculator:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  .btn-calculator:active {
    transform: translateY(0);
  }

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

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
.page-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .page-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .page-card__media {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f5f5f5;
  }

  .page-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    flex: 1;
  }

  .page-card__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .page-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .page-card__title a:hover {
    text-decoration: underline;
  }

  .page-card__excerpt {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
  }