/** Shopify CDN: Minification failed

Line 4233:2 Unexpected "}"
Line 5313:2 Unexpected "}"
Line 5800:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.error-page {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .error-page p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .error-page__link {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: var(--style-border-radius-inputs);
    font-weight: 600;
  }

  .error-page__link:hover {
    opacity: 0.9;
  }
/* Mobile-first: Base styles are for mobile */
  .about-us {
    padding: 2rem 0;
    background-color: var(--background-color, var(--color-background));
  }

  .about-us__container {
    max-width: 100%;
    margin: 0;
    padding: 0 var(--page-margin);
  }

  .about-us__image-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .about-us__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-us__content {
    width: 100%;
  }

  .about-us__content-inner {
    max-width: 100%;
  }

  .about-us__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 1rem 0;
  }

  .about-us__heading {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .about-us__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
  }

  .about-us__description p {
    margin: 0 0 1.5rem 0;
  }

  .about-us__description p:last-child {
    margin-bottom: 0;
  }

  .about-us__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .about-us__value {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--color-foreground);
  }

  .about-us__value-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .about-us__value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
  }

  .about-us__value-description p {
    margin: 0 0 0.5rem 0;
  }

  .about-us__value-description p:last-child {
    margin-bottom: 0;
  }

  .about-us__stat {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
  }

  .about-us__stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
  }

  .about-us__stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .about-us__button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
  }

  .about-us__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .about-us__button:active {
    transform: translateY(0);
  }

  .about-us__button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .about-us {
      padding: 2.5rem 0;
    }

    .about-us__features {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .about-us__content-inner {
      max-width: 100%;
      margin: 0;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .about-us {
      padding: 3rem 0;
    }

    /* Only apply grid layout when image exists */
    .about-us--image-left .about-us__container--has-image,
    .about-us--image-right .about-us__container--has-image {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    .about-us--image-right .about-us__container--has-image {
      grid-template-columns: 1fr 1fr;
    }

    .about-us--image-right .about-us__image-wrapper {
      order: 2;
    }

    .about-us--image-right .about-us__content {
      order: 1;
    }

    .about-us--image-left .about-us__image-wrapper {
      margin-bottom: 0;
    }

    .about-us--image-right .about-us__image-wrapper {
      margin-bottom: 0;
    }

    /* When no image, content should be full width */
    .about-us--image-left .about-us__container:not(.about-us__container--has-image),
    .about-us--image-right .about-us__container:not(.about-us__container--has-image),
    .about-us--text-only .about-us__container {
      display: block;
    }

    .about-us__features {
      grid-template-columns: repeat(3, 1fr);
    }

    .about-us--text-only .about-us__features {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    .about-us__button {
      transition: none;
    }

    .about-us__button:hover {
      transform: none;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .announcement-bar {
    background-color: var(--announcement-bg, #006FDD);
    color: var(--announcement-text, #FFFFFF);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    /* WCAG AA: Ensure minimum 4.5:1 contrast ratio for normal text */
    /* Using high contrast colors by default */
  }

  .announcement-bar__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
    font-size: 0.875rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .announcement-bar__text {
    margin: 0;
    color: var(--announcement-text, #FFFFFF);
    font-weight: 600;
    line-height: 1.4;
  }

  .announcement-bar__link {
    color: var(--announcement-text, #FFFFFF);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
    text-underline-offset: 2px;
  }

  .announcement-bar__link:hover {
    opacity: 0.85;
  }

  .announcement-bar__link:focus-visible {
    outline: 2px solid var(--announcement-text, #FFFFFF);
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .announcement-bar {
      padding: 0.875rem 0;
    }

    .announcement-bar__container {
      padding: 0 var(--page-margin);
      font-size: 0.9375rem;
      flex-wrap: nowrap;
      text-align: left;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .article-page {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .article-page__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .article-page__breadcrumbs {
    margin-bottom: 2rem;
  }

  .article-page__breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .article-page__breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(0, 0, 0, 0.4);
  }

  .article-page__breadcrumbs-list a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .article-page__breadcrumbs-list a:hover {
    color: var(--color-foreground);
  }

  .article-page__header {
    margin-bottom: 2rem;
  }

  .article-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .article-page__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .article-page__tag:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .article-page__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .article-page__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .article-page__date,
  .article-page__author,
  .article-page__reading-time {
    color: rgba(0, 0, 0, 0.7);
  }

  .article-page__featured-image {
    margin: 0 calc(-1 * var(--page-margin)) 3rem;
    width: calc(100% + 2 * var(--page-margin));
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0;
  }

  .article-page__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article-page__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
  }

  .article-page__content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
    color: var(--color-foreground);
  }

  .article-page__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: var(--color-foreground);
  }

  .article-page__content p {
    margin: 0 0 1.5rem;
  }

  .article-page__content ul,
  .article-page__content ol {
    margin: 0 0 1.5rem;
    padding-left: 2rem;
  }

  .article-page__content li {
    margin-bottom: 0.5rem;
  }

  .article-page__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
  }

  .article-page__content a {
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .article-page__content a:hover {
    opacity: 0.8;
  }

  .article-page__content blockquote {
    border-left: 4px solid var(--color-foreground);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
  }

  .article-page__social-sharing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
  }

  .article-page__social-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .article-page__social-buttons {
    display: flex;
    gap: 0.75rem;
  }

  .article-page__social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--color-foreground);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .article-page__social-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }

  .article-page__social-button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .article-page__comments {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .article-page__comments-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--color-foreground);
  }

  .article-page__comments-list {
    margin-bottom: 3rem;
  }

  .article-page__comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .article-page__comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
  }

  .article-page__comment-author {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

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

  .article-page__comment-content {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
  }

  .article-page__comment-form {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .article-page__comment-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--color-foreground);
  }

  .article-page__comment-form-errors {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    border-radius: 8px;
    color: #991b1b;
  }

  .article-page__comment-form-errors h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
  }

  .article-page__comment-form-success {
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 8px;
    color: #065f46;
  }

  .article-page__comment-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .article-page__comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .article-page__comment-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .article-page__comment-form-input,
  .article-page__comment-form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .article-page__comment-form-input:focus,
  .article-page__comment-form-textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .article-page__comment-form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .article-page__comment-form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-background);
    background-color: var(--color-foreground);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
  }

  .article-page__comment-form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .article-page__comment-form-submit:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .article-page__related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .article-page__related-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--color-foreground);
  }

  .article-page__related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-page__related-card {
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .article-page__related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .article-page__related-link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
  }

  .article-page__related-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .article-page__related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .article-page__related-card:hover .article-page__related-image {
    transform: scale(1.05);
  }

  .article-page__related-title-card {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 1rem 1.5rem 0.5rem;
    color: var(--color-foreground);
  }

  .article-page__related-date {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 1.5rem 1.5rem;
    display: block;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .article-page {
      padding: 3rem var(--page-margin);
    }

    .article-page__featured-image {
      border-radius: 16px;
      margin: 0 0 4rem;
      width: 100%;
    }

    .article-page__content {
      font-size: 1.25rem;
    }

    .article-page__related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .article-page {
      padding: 4rem var(--page-margin);
    }

    .article-page__container {
      max-width: 900px;
    }
  }
/* All benefit bar styling now handled in base.css for consistency */
/* Mobile-first: Base styles are for mobile */
  .best-sellers-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .best-sellers-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .best-sellers-section__header {
    margin-bottom: 3rem;
  }

  .best-sellers-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .best-sellers-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .best-sellers-section__products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .best-sellers-section__products--carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
  }

  .best-seller-card {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .best-seller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .best-seller-card__link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
  }

  .best-seller-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

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

  .best-seller-card:hover .best-seller-card__image {
    transform: scale(1.05);
  }

  .best-seller-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.875rem;
  }

  .best-seller-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .best-seller-card__vendor {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .best-seller-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

  .best-seller-card__rating {
    display: flex;
    align-items: center;
  }

  .best-seller-card__stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
  }

  .best-seller-card__price {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .best-seller-card__price--sale {
    color: #dc2626;
  }

  .best-seller-card__price--compare {
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
    color: rgba(0, 0, 0, 0.6);
  }

  .best-sellers-section__products--carousel::-webkit-scrollbar {
    height: 4px;
  }

  .best-sellers-section__products--carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
  }

  .best-sellers-section__products--carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }

  .best-sellers-section__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .best-sellers-section__prev,
  .best-sellers-section__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--color-background);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-foreground);
  }

  .best-sellers-section__prev:hover,
  .best-sellers-section__next:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .best-sellers-section__prev:focus-visible,
  .best-sellers-section__next:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .best-sellers-section__prev:disabled,
  .best-sellers-section__next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .best-sellers-section {
      padding: 4rem var(--page-margin);
    }

    .best-sellers-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .best-sellers-section__products {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .best-sellers-section__products--carousel .best-seller-card {
      flex: 0 0 calc(33.333% - 1.33rem);
    }

    .best-sellers-section__products--carousel {
      gap: 2rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .best-sellers-section {
      padding: 5rem var(--page-margin);
    }

    .best-sellers-section__products {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }

    .best-sellers-section__products--carousel .best-seller-card {
      flex: 0 0 calc(25% - 1.875rem);
    }

    .best-sellers-section__products--carousel {
      gap: 2.5rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .blog-preview-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .blog-preview-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .blog-preview-section__header {
    margin-bottom: 3rem;
  }

  .blog-preview-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .blog-preview-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }

  .blog-preview-section__view-all {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .blog-preview-section__view-all:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  .blog-preview-section__view-all:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .blog-preview-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-preview-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
  }

  .blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
  }

  .blog-preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 56px rgba(0, 0, 0, 0.15),
      0 8px 24px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
  }

  .blog-preview-card:hover::before {
    opacity: 1;
  }

  .blog-preview-card__image-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .blog-preview-card__image-wrapper {
    width: 100%;
    height: 100%;
  }

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

  .blog-preview-card:hover .blog-preview-card__image {
    transform: scale(1.05);
  }

  .blog-preview-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .blog-preview-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-preview-card__date {
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-preview-card__author {
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-preview-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

  .blog-preview-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog-preview-card__title a:hover {
    color: var(--color-foreground);
    opacity: 0.8;
  }

  .blog-preview-card__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    flex: 1;
  }

  .blog-preview-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: gap 0.2s ease;
    align-self: flex-start;
  }

  .blog-preview-card__read-more:hover {
    gap: 0.75rem;
  }

  .blog-preview-card__read-more:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .blog-preview-section {
      padding: 4rem var(--page-margin);
    }

    .blog-preview-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .blog-preview-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .blog-preview-card__content {
      padding: 2rem;
    }

    .blog-preview-card__title {
      font-size: 1.5rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .blog-preview-section {
      padding: 5rem var(--page-margin);
    }

    .blog-preview-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .blog-listing {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .blog-listing__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .blog-listing__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .blog-listing__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .blog-listing__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .blog-listing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-article-card {
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
  }

  .blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .blog-article-card__image-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .blog-article-card__image-wrapper {
    width: 100%;
    height: 100%;
  }

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

  .blog-article-card:hover .blog-article-card__image {
    transform: scale(1.05);
  }

  .blog-article-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .blog-article-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .blog-article-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: var(--color-foreground);
  }

  .blog-article-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

  .blog-article-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .blog-article-card__title a:hover {
    color: var(--color-foreground);
    opacity: 0.8;
  }

  .blog-article-card__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    flex: 1;
  }

  .blog-article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .blog-article-card__date {
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-article-card__author {
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-article-card__reading-time {
    color: rgba(0, 0, 0, 0.6);
  }

  .blog-article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: gap 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
  }

  .blog-article-card__read-more:hover {
    gap: 0.75rem;
  }

  .blog-article-card__read-more:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .blog-listing__pagination {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .blog-listing__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.125rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .blog-listing {
      padding: 3rem var(--page-margin);
    }

    .blog-listing__header {
      margin-bottom: 4rem;
    }

    .blog-listing__grid--grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .blog-listing__grid--list {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .blog-article-card__content {
      padding: 2rem;
    }

    .blog-article-card__title {
      font-size: 1.75rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .blog-listing {
      padding: 4rem var(--page-margin);
    }

    .blog-listing__grid--grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3.5rem;
    }
  }
.cart-page {
    padding: 2rem var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .cart-page__container {
    width: 100%;
  }

  .cart-page__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-page__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .cart-page__continue {
    text-decoration: none;
    color: var(--color-foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
  }

  .cart-page__continue:hover {
    opacity: 0.7;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  /* Cart Items */
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
  }

  .cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .cart-item__image a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .cart-item__image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    color: rgba(0, 0, 0, 0.2);
  }

  .cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item__info {
    flex: 1;
  }

  .cart-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

  .cart-item__title a {
    text-decoration: none;
    color: var(--color-foreground);
    transition: opacity 0.2s ease;
  }

  .cart-item__title a:hover {
    opacity: 0.7;
  }

  .cart-item__variant {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
  }

  .cart-item__option {
    display: inline-block;
    margin-right: 0.75rem;
  }

  .cart-item__selling-plan {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
  }

  .cart-item__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .cart-item__price--sale {
    color: #e74c3c;
    margin-right: 0.5rem;
  }

  .cart-item__price--compare {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
    font-weight: 400;
  }

  .cart-item__actions {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .cart-item__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-item__quantity-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
  }

  .cart-item__quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
  }

  .cart-item__quantity-button {
    padding: 0.5rem 0.75rem;
    border: none;
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 2.5rem;
  }

  .cart-item__quantity-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .cart-item__quantity-field {
    width: 60px;
    padding: 0.5rem 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
  }

  .cart-item__quantity-field::-webkit-outer-spin-button,
  .cart-item__quantity-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }

  .cart-item__total-label {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .cart-item__total-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .cart-item__total--sale {
    color: #e74c3c;
    margin-right: 0.5rem;
  }

  .cart-item__total--compare {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
    font-weight: 400;
  }

  .cart-item__remove {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .cart-item__remove:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #e74c3c;
  }

  /* Cart Note */
  .cart-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
  }

  .cart-note__label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
  }

  .cart-note__field {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
  }

  .cart-note__field:focus {
    outline: none;
    border-color: var(--color-foreground);
  }

  /* Cart Summary */
  .cart-page__summary {
    position: sticky;
    top: 6rem;
  }

  .cart-summary {
    padding: 2rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }

  .cart-summary__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
  }

  .cart-summary__details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }

  .cart-summary__row:last-child {
    margin-bottom: 0;
  }

  .cart-summary__row--discount {
    color: #e74c3c;
  }

  .cart-summary__row--total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-summary__label {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
  }

  .cart-summary__row--total .cart-summary__label {
    font-size: 1.25rem;
    color: var(--color-foreground);
  }

  .cart-summary__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .cart-summary__row--total .cart-summary__value {
    font-size: 1.25rem;
  }

  .cart-summary__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-summary__shipping {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    text-align: center;
  }

  /* Shipping Progress */
  .cart-shipping-progress {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-shipping-progress__message {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
    text-align: center;
  }

  .cart-shipping-progress__message--success {
    color: #10b981;
  }

  .cart-shipping-progress__bar {
    width: 100%;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
  }

  .cart-shipping-progress__fill {
    height: 100%;
    background-color: var(--color-foreground);
    transition: width 0.3s ease;
  }

  .cart-shipping-progress__fill--complete {
    background-color: #10b981;
  }

  /* Upsells */
  .cart-upsells {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cart-upsells__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
    text-align: center;
  }

  .cart-upsells__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .cart-upsell-card {
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cart-upsell-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .cart-upsell-card__link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
  }

  .cart-upsell-card__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

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

  .cart-upsell-card:hover .cart-upsell-card__image-element {
    transform: scale(1.05);
  }

  .cart-upsell-card__content {
    padding: 1rem;
  }

  .cart-upsell-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cart-upsell-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-foreground);
  }

  .cart-summary__checkout {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cart-summary__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .cart-summary__additional {
    margin-top: 0.5rem;
  }

  /* Empty Cart */
  .cart-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .cart-empty__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .cart-empty__text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 2rem 0;
  }

  .cart-empty__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cart-empty__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Mobile-first: Base styles are for mobile */
  .cart-page {
    padding: 1.5rem var(--page-margin);
  }

  .cart-page__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-page__summary {
    position: static;
  }

  .cart-page__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .cart-item__image {
    width: 100px;
    height: 100px;
  }

  .cart-item__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cart-item__total {
    align-items: flex-start;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .cart-page {
      padding: 3rem var(--page-margin);
    }

    .cart-page__header {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
    }

    .cart-item {
      grid-template-columns: 150px 1fr auto;
      gap: 2rem;
      padding: 1.5rem;
    }

    .cart-item__image {
      width: 150px;
      height: 150px;
    }

    .cart-item__actions {
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
    }

    .cart-item__total {
      align-items: flex-end;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .cart-page__content {
      grid-template-columns: 1fr 400px;
      gap: 4rem;
    }

    .cart-page__summary {
      position: sticky;
      top: 2rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .collection-sidebar-page {
    padding: 1.5rem var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .collection-sidebar-page__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .collection-sidebar-page__sidebar {
    order: 2;
  }

  .collection-sidebar-page__filters {
    padding: 1.5rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
  }

  .collection-sidebar-page__filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
  }

  .collection-sidebar-page__filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .collection-sidebar-page__filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .collection-sidebar-page__filter-group-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .collection-sidebar-page__filter-count {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
  }

  .collection-sidebar-page__filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .collection-sidebar-page__filter-item {
    margin: 0;
  }

  .collection-sidebar-page__filter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-foreground);
  }

  .collection-sidebar-page__filter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .collection-sidebar-page__filter-text {
    flex: 1;
  }

  .collection-sidebar-page__filter-value-count {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
  }

  .collection-sidebar-page__filter-price {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .collection-sidebar-page__filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .collection-sidebar-page__filter-price-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.9375rem;
  }

  .collection-sidebar-page__filter-price-separator {
    color: rgba(0, 0, 0, 0.6);
  }

  .collection-sidebar-page__filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .collection-sidebar-page__filter-apply {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-background);
    background-color: var(--color-foreground);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .collection-sidebar-page__filter-apply:hover {
    opacity: 0.9;
  }

  .collection-sidebar-page__filter-clear {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .collection-sidebar-page__filter-clear:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .collection-sidebar-page__filter-clear:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .collection-sidebar-page__main {
    flex: 1;
  }

  .collection-sidebar-page__header {
    margin-bottom: 2rem;
  }

  .collection-sidebar-page__banner {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-sidebar-page__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-sidebar-page__banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  }

  .collection-sidebar-page__banner-content {
    position: absolute;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 1.5rem;
  }

  .collection-sidebar-page__header-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .collection-sidebar-page__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .collection-sidebar-page__banner-content .collection-sidebar-page__title {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .collection-sidebar-page__count {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
  }

  .collection-sidebar-page__banner-content .collection-sidebar-page__count {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .collection-sidebar-page__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
  }

  .collection-sidebar-page__toolbar {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
  }

  .collection-sidebar-page__sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .collection-sidebar-page__sort-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .collection-sidebar-page__sort-select {
    padding: 0.625rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--color-background);
    color: var(--color-foreground);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .collection-sidebar-page__sort-select:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .collection-sidebar-page__products {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile, 2), 1fr);
    gap: var(--grid-gap, 20px);
  }

  .collection-sidebar-page__pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .collection-sidebar-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collection-sidebar-page__empty-text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1rem;
  }

  .collection-sidebar-page__empty-link {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.2s ease;
  }

  .collection-sidebar-page__empty-link:hover {
    opacity: 0.9;
  }

  .collection-sidebar-page__empty-link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .collection-sidebar-page__container {
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem;
    }

    .collection-sidebar-page__sidebar {
      order: 1;
      flex: 0 0 280px;
      position: sticky;
      top: 2rem;
      max-height: calc(100vh - 4rem);
      overflow-y: auto;
    }

    .collection-sidebar-page__main {
      order: 2;
      flex: 1;
    }

    .collection-sidebar-page__products {
      grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
    }

    .collection-sidebar-page__banner {
      height: 300px;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .collection-sidebar-page__sidebar {
      flex: 0 0 320px;
    }

    .collection-sidebar-page__banner {
      height: 400px;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .collection-page {
    padding: 1.5rem var(--page-margin);
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Collection Header */
  .collection-page__header {
    margin-bottom: 2rem;
  }

  .collection-page__banner {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .collection-page__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-page__banner:hover .collection-page__banner-image {
    transform: scale(1.05);
  }

  .collection-page__banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  }

  .collection-page__banner-content {
    position: absolute;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
  }

  .collection-page__header-content {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
  }

  .collection-page__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -0.03em;
    color: var(--color-foreground);
    line-height: 1.1;
  }

  .collection-page__banner-content .collection-page__title {
    color: white;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .collection-page__count {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .collection-page__banner-content .collection-page__count {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
  }

  .collection-page__description {
    font-size: 1.1875rem;
    line-height: 1.85;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.75);
    text-align: center;
    font-weight: 400;
  }

  .collection-page__description p {
    margin: 0 0 1rem 0;
  }

  .collection-page__description p:last-child {
    margin-bottom: 0;
  }

  /* Collection Intro with Collapsible Description */
  .collection-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .collection-description-short {
    font-size: 1.1875rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .collection-description-full {
    margin-top: 1rem;
  }

  .collection-description-full summary {
    cursor: pointer;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
    font-weight: 500;
    padding: 0.5rem 0;
    user-select: none;
  }

  .collection-description-full summary:hover {
    color: rgba(0, 0, 0, 0.8);
  }

  .collection-description-full .full-description-content {
    margin-top: 1rem;
    font-size: 1.1875rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.75);
    text-align: left;
  }

  .collection-description-full .full-description-content p {
    margin: 0 0 1rem 0;
  }

  .collection-description-full .full-description-content p:last-child {
    margin-bottom: 0;
  }

  /* Toolbar */
  .collection-page__toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  }

  .collection-page__sort {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .collection-page__sort-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .collection-page__sort-select {
    padding: 1rem 1.75rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 1) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-foreground);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3.5rem;
  }

  .collection-page__sort-select:hover {
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px) scale(1.01);
  }

  .collection-page__sort-select:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  /* Products Grid */
  /* Mobile-first: Use mobile columns by default */
  .collection-page__products {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: var(--grid-gap);
    margin-bottom: 3rem;
    justify-items: center;
    align-items: stretch;
  }

  .collection-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-background);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    will-change: transform, box-shadow;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .collection-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .collection-product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .collection-product-card:hover::before {
    opacity: 1;
  }

  .collection-product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    height: 100%;
  }

  .collection-product-card__image-wrapper {
    /* CRITICAL: Image wrapper handles ONLY the image and badges */
    /* Perfect 1:1 (Square) Aspect Ratio Container */
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%; /* Creates 1:1 aspect ratio */
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.02);
    display: block;
    transition: transform 0.3s ease-out;
    /* Ensure no child elements except image and badges are positioned here */
  }

  .collection-product-card:hover .collection-product-card__image-wrapper {
    transform: scale(1.05);
  }

  /* Quick Add Overlay */
  .collection-product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    z-index: 2;
  }

  .collection-product-card:hover .collection-product-card__overlay {
    opacity: 1;
    visibility: visible;
  }

  .collection-product-card__overlay .collection-product-card__quick-add-form {
    width: 100%;
    max-width: 200px;
  }

  .collection-product-card__overlay .collection-product-card__quick-add-button {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--color-accent, #FF6B6B);
    color: white;
    border: 2px solid var(--color-accent, #FF6B6B);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .collection-product-card:hover .collection-product-card__overlay .collection-product-card__quick-add-button {
    transform: translateY(0);
  }

  .collection-product-card__overlay .collection-product-card__quick-add-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-accent, #FF6B6B);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  /* Image snippet wrapper (div.image.collection-product-card__image) */
  .collection-product-card__image-wrapper .image.collection-product-card__image {
    /* CRITICAL: Absolute positioning to fill the square container */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Actual img element inside the snippet wrapper */
  .collection-product-card__image-wrapper .image.collection-product-card__image > img {
    /* CRITICAL: Absolute positioning with object-fit for perfect square cropping */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops non-square images neatly */
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .collection-product-card:hover .collection-product-card__image-wrapper .image.collection-product-card__image > img {
    transform: scale(1.12);
  }

  .collection-product-card__placeholder {
    /* Placeholder also needs absolute positioning to fill the square container */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    color: rgba(0, 0, 0, 0.2);
  }

  /* CRITICAL: Badges are the ONLY elements with absolute positioning on image */
  /* Refined: Minimalist, subtle badges positioned non-obstructively in corner */
  .collection-product-card__badge {
    position: absolute;
    /* Position in top-right corner with small gap */
    top: 10px;
    right: 10px;
    left: auto;
    /* Minimalist sizing */
    padding: 0.25rem 0.6rem;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 10;
    /* Subtle shadow for depth without distraction */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    will-change: transform;
    /* Ensure badges stay on image, not in content flow */
  }

  /* Remove hover scale for more professional, static appearance */
  .collection-product-card:hover .collection-product-card__badge {
    transform: none;
  }

  /* SALE Badge: Subtle light blue with high-contrast text */
  .collection-product-card__badge--sale {
    background: #E9F4FF;
    color: #006FDD;
    border: 1px solid rgba(0, 111, 221, 0.2);
  }

  /* NEW Badge: Neutral gray tone */
  .collection-product-card__badge--new {
    background: #F4F4F4;
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* SOLD OUT Badge: Semi-transparent, muted */
  .collection-product-card__badge--sold-out {
    background: rgba(255, 255, 255, 0.8);
    color: #999999;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* OPTIONS Badge: Keep existing blue but make more subtle */
  .collection-product-card__badge--options {
    background: #E9F4FF;
    color: #006FDD;
    border: 1px solid rgba(0, 111, 221, 0.2);
  }

  /* EXPECTED SOON Badge: Golden/orange gradient for expected arrivals */
  .collection-product-card__badge--expected {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Stack badges vertically when multiple exist - adjusted for smaller badges */
  .collection-product-card__badge--sale + .collection-product-card__badge--new,
  .collection-product-card__badge--sold-out + .collection-product-card__badge--new {
    top: 2.5rem;
  }

  .collection-product-card__badge--sale + .collection-product-card__badge--options,
  .collection-product-card__badge--sold-out + .collection-product-card__badge--options,
  .collection-product-card__badge--new + .collection-product-card__badge--options {
    top: 2.5rem;
    right: 10px;
  }

  .collection-product-card__badge--sale + .collection-product-card__badge--new + .collection-product-card__badge--options {
    top: 4rem;
  }

  .collection-product-card__badge--expected + .collection-product-card__badge--options,
  .collection-product-card__badge--sale + .collection-product-card__badge--expected,
  .collection-product-card__badge--new + .collection-product-card__badge--expected {
    top: 2.5rem;
  }



  /* Sold Out Notice - Before Variant Swatches */
  .collection-product-card__sold-out-notice {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .collection-product-card__sold-out-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* --- FIX: ENSURE VARIANT SWATCHES RENDER BELOW THE PRODUCT DETAILS --- */
  /* Variant Swatches - High Contrast & Optimized */
  .collection-product-card__swatches {
    /* CRITICAL: Use standard flow (NOT absolute positioning) */
    position: relative !important;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.375rem;
    margin: 0.5rem 0;
    padding: 0;
    /* Ensure swatches are in content flow, not over image */
    width: 100%;
    clear: both;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
  }

  .collection-product-card__swatches::-webkit-scrollbar {
    height: 4px;
  }

  .collection-product-card__swatches::-webkit-scrollbar-track {
    background: transparent;
  }

  .collection-product-card__swatches::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }

  .collection-product-card__swatches::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .collection-product-card__swatch {
    /* CRITICAL: Ensure swatches are inline-block, not absolute */
    display: inline-block;
    flex-shrink: 0;
    min-width: 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    will-change: transform;
    /* Ensure they don't try to fill image space */
    overflow: hidden;
  }

  .collection-product-card__swatch:hover {
    transform: scale(1.15);
    border-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 1;
  }

  .collection-product-card__swatch:active {
    transform: scale(1.1);
  }

  .collection-product-card__swatch:active {
    transform: scale(1.05);
  }

  .collection-product-card__swatch .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Quick View Button */
  /* Actions Container - Holds both Quick View and Add to Cart buttons */
  /* Mobile & Tablet: Stack buttons vertically */
  .collection-product-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.875rem;
    width: 100%;
    padding: 0 1.5rem 1.25rem 1.5rem;
    box-sizing: border-box;
  }

  .collection-product-card__quick-view-button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--color-foreground);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .collection-product-card__quick-view-button::before {
    content: none;
  }

  .collection-product-card__quick-view-button::after {
    content: none;
  }

  .collection-product-card__quick-view-button:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  }

  .collection-product-card__quick-view-button:hover::before {
    content: none;
  }

  .collection-product-card__quick-view-button:hover::after {
    content: none;
  }

  .collection-product-card__quick-view-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
  }

  .collection-product-card__quick-view-button:focus-visible {
    outline: 3px solid var(--color-foreground);
    outline-offset: 4px;
    border-radius: 999px;
  }

  /* Add to Cart Form */
  .collection-product-card__quick-add-form {
    flex: 1;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .collection-product-card__quick-add-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: 2px solid var(--color-foreground);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }

  .collection-product-card__quick-add-button::before,
  .collection-product-card__quick-add-button::after {
    content: none;
  }

  .collection-product-card__quick-add-button:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .collection-product-card__quick-add-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .collection-product-card__quick-add-button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .collection-product-card__quick-add-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .collection-product-card__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .collection-product-card__content {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    /* CRITICAL: Content area contains swatches in normal flow */
    position: relative;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
  }
  
  /* CRITICAL: Ensure swatches are explicitly in content, not image */
  .collection-product-card__content .collection-product-card__swatches {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0.5rem 0;
  }

  .collection-product-card__vendor {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 0 0.625rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .collection-product-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
    line-height: 1.4;
    color: var(--color-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
  }

  .collection-product-card:hover .collection-product-card__title {
    color: var(--color-foreground);
  }

  .collection-product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    letter-spacing: -0.01em;
  }

  .collection-product-card__price--sale {
    color: #e74c3c;
  }

  .collection-product-card__price--compare {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
    font-weight: 500;
  }

  .collection-product-card__price-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Empty State */
  .collection-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collection-page__empty-text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 1.5rem 0;
  }

  .collection-page__empty-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .collection-page__empty-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Load More */
  .collection-page__load-more {
    margin-top: 4rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
  }

  .collection-page__load-more-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--color-background);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .collection-page__load-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .collection-page__load-more-button:active {
    transform: translateY(0);
  }

  .collection-page__load-more-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .collection-page__load-more-text,
  .collection-page__load-more-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .collection-page__load-more-loading {
    display: none;
  }

  .collection-page__load-more-spinner {
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Tablet (min-width: 751px) */
  @media (min-width: 751px) {
    /* Keep buttons stacked on tablet */
    /* Switch to tablet columns at 751px */
    .collection-page__products {
      grid-template-columns: repeat(var(--columns-tablet), 1fr);
    }
    
    .collection-page {
      padding: 2.5rem var(--page-margin);
    }

    .collection-page__banner {
      height: 350px;
      border-radius: 24px;
    }

    .collection-page__header {
      margin-bottom: 3rem;
    }

    .collection-page__toolbar {
      margin-bottom: 2rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    /* Unstack buttons - side by side on desktop */
    .collection-product-card__actions {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    /* Smaller text and padding on desktop to fit better */
    .collection-product-card__quick-view-button {
      flex: 1 1 10rem;
      min-width: 0;
      font-size: 0.8125rem;
      padding: 0.75rem 0.875rem;
      min-height: 44px;
    }
    
    .collection-product-card__quick-add-button {
      flex: 1 1 10rem;
      min-width: 0;
      font-size: 0.875rem;
      padding: 0.75rem 1.25rem;
      letter-spacing: 0.01em;
      min-height: 44px;
    }
    
    /* Switch to desktop columns at 991px */
    .collection-page__products {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
    }
    
    .collection-page {
      padding: 3rem var(--page-margin);
    }

    .collection-page__banner {
      height: 450px;
    }

    .collection-page__banner-content {
      padding: 3rem;
    }

    .collection-page__header {
      margin-bottom: 3rem;
    }
  }

  /* Mobile styles (default) */
  .collection-page__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .collection-page__sort {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .collection-page__sort-select {
    width: 100%;
    min-width: auto;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .collection-page__toolbar {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
      padding: 1.5rem 0;
    }

    .collection-page__sort {
      flex-direction: row;
      align-items: center;
      gap: 1rem;
    }

    .collection-page__sort-select {
      width: auto;
      min-width: 200px;
    }

    .collection-product-card__content {
      padding: 1.125rem 1.25rem;
    }

    .collection-product-card__title {
      font-size: 1.0625rem;
    }

    .collection-page__banner {
      border-radius: 16px;
    }
  }

  /* Quick View Modal - Clean, Simple, Professional */
  .quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: fadeIn 0.2s ease-out;
  }

  /* When gallery modal is active, disable pointer events on quick view modal overlay */
  .quick-view-modal.gallery-modal-active .quick-view-modal__overlay {
    pointer-events: none;
  }

  /* Hide variant selector and form when gallery modal is active */
  .quick-view-modal.gallery-modal-active .product-quick-view__variants,
  .quick-view-modal.gallery-modal-active .product-quick-view__form,
  .quick-view-modal.gallery-modal-active .product-quick-view__view-full {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* Hide variant option labels/buttons when gallery modal is active in quick view */
  .quick-view-modal.gallery-modal-active .product-form__option-value,
  .quick-view-modal.gallery-modal-active .product-form__option,
  .quick-view-modal.gallery-modal-active label[for*="Option-template"],
  .quick-view-modal.gallery-modal-active [class*="Option-template"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* Gallery Modal CSS is now in assets/product-gallery-modal.css (shared component) */

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .quick-view-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .quick-view-modal__content {
    position: relative;
    background: #fff;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.25s ease-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(15px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .quick-view-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .quick-view-modal__close:hover {
    background: #fff;
    transform: scale(1.05);
  }

  .quick-view-modal__body {
    padding: 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  /* Hide unwanted elements */
  .quick-view-modal__body header,
  .quick-view-modal__body footer,
  .quick-view-modal__body .header,
  .quick-view-modal__body .footer,
  .quick-view-modal__body nav {
    display: none !important;
  }

  /* Product Quick View Section - Proper Scaling */
  .quick-view-modal__body .product-quick-view {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .quick-view-modal__body .product-quick-view__container {
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .quick-view-modal__body .product-quick-view__image {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .quick-view-modal__body .product-quick-view__content {
    gap: 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .quick-view-modal__body .product-quick-view__title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
  }

  .quick-view-modal__body .product-quick-view__price {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
  }

  /* Hide variant selector and form elements when gallery modal is active */
  .quick-view-modal.gallery-modal-active .product-quick-view__variants,
  .quick-view-modal.gallery-modal-active .product-quick-view__form,
  .quick-view-modal.gallery-modal-active .product-quick-view__content > *:not(.product-quick-view__title):not(.product-quick-view__price) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .quick-view-modal__body .product-quick-view__variants {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .quick-view-modal__body .product-quick-view__form {
    gap: 1rem;
  }

  /* Hide product-page elements if they appear */
  .quick-view-modal__body .product-page {
    padding: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .quick-view-modal__body .product-page__container {
    gap: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Quick View Footer with View Full Details Button */
  .quick-view-modal__footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }

  .quick-view-modal__view-full {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
  }

  .quick-view-modal__view-full:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--color-background);
    text-decoration: none;
  }

  .quick-view-modal__view-full:active {
    transform: translateY(-1px) scale(1);
  }

  .quick-view-modal__view-full:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 3px;
    border-radius: 50px;
  }

  /* Improve product page styling in quick view */
  .quick-view-modal__body .product-page__details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .quick-view-modal__body .product-page__details .product-tabs__panel-content {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
  }

  .quick-view-modal__body .product-page__details .product-tabs__panel-content::-webkit-scrollbar {
    width: 6px;
  }

  .quick-view-modal__body .product-page__details .product-tabs__panel-content::-webkit-scrollbar-track {
    background: transparent;
  }

  .quick-view-modal__body .product-page__details .product-tabs__panel-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  .quick-view-modal__body .product-page__details .product-tabs__panel-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  /* Ensure product gallery is properly sized in quick view */
  .quick-view-modal__body .product-gallery {
    max-width: 100%;
    width: 100%;
  }

  .quick-view-modal__body .product-gallery__main {
    max-width: 100%;
  }

  .quick-view-modal__body .product-gallery__thumbnails {
    max-width: 100%;
    overflow-x: auto;
  }

  /* Improve product info card styling in quick view */
  .quick-view-modal__body .product-info__card {
    margin-bottom: 1.5rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .quick-view-modal {
      padding: 0.75rem;
    }

    .quick-view-modal__content {
      border-radius: 12px;
      max-width: 900px;
      width: calc(100% - 2rem);
      max-height: 92vh;
      height: auto;
    }

    .quick-view-modal__body {
      padding: 2rem;
    }

    .quick-view-modal__footer {
      padding: 1.5rem 2rem;
    }

    .quick-view-modal__view-full {
      width: auto;
    }
  }

  /* Content Teaser Blocks */
  .collection-page__teaser {
    grid-column: 1 / -1;
    margin: 2rem 0;
  }

  .collection-page__teaser-banner {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .collection-page__teaser-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  }

  .collection-page__teaser-banner-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .collection-page__teaser-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
  }

  .collection-page__teaser-banner-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
  }

  .collection-page__teaser-banner-text {
    font-size: 1.125rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .collection-page__teaser-blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .collection-page__teaser-blog-image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
  }

  .collection-page__teaser-blog-image-element {
    width: 100%;
    height: auto;
    display: block;
  }

  .collection-page__teaser-blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .collection-page__teaser-blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .collection-page__teaser-blog-title a {
    color: var(--color-foreground);
    text-decoration: none;
  }

  .collection-page__teaser-blog-title a:hover {
    text-decoration: underline;
  }

  .collection-page__teaser-blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1rem 0;
  }

  .collection-page__teaser-blog-link {
    color: var(--color-foreground);
    font-weight: 600;
    text-decoration: none;
  }

  .collection-page__teaser-blog-link:hover {
    text-decoration: underline;
  }

  .collection-page__teaser-value-props {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .collection-page__value-prop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }

  .collection-page__value-prop-icon {
    font-size: 2.5rem;
    line-height: 1;
  }

  .collection-page__value-prop-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  @media (min-width: 991px) {
    .collection-page__teaser-blog {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .collection-page__teaser-value-props {
      flex-direction: row;
      gap: 2rem;
    }
  }
.collections-page {
    padding: 2rem var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .collections-page__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .collections-page__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .collections-page__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .collections-page__description p {
    margin: 0;
  }

  .collections-page__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: var(--grid-gap);
  }

  .collections-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-background);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
  }

  .collections-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .collections-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    height: 100%;
  }

  .collections-card__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .collections-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: var(--image-aspect-ratio);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.02);
  }

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

  .collections-card:hover .collections-card__image {
    transform: scale(1.05);
  }

  .collections-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    color: rgba(0, 0, 0, 0.2);
  }

  .collections-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-foreground);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .collections-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .collections-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
    line-height: 1.4;
  }

  .collections-card__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 1rem 0;
    flex-grow: 1;
  }

  .collections-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-top: auto;
    transition: gap 0.2s ease;
  }

  .collections-card:hover .collections-card__cta {
    gap: 0.75rem;
  }

  .collections-card__cta svg {
    transition: transform 0.2s ease;
  }

  .collections-card:hover .collections-card__cta svg {
    transform: translateX(2px);
  }

  .collections-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collections-page__empty-text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .collections-page {
      padding: 2rem var(--page-margin);
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .collections-page {
      padding: 3rem var(--page-margin);
    }

    .collections-page__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
    }
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .collections-page__header {
      margin-bottom: 3rem;
    }

    .collections-page__title {
      font-size: clamp(2rem, 5vw, 3rem);
    }
  }

    .collections-page__description {
      font-size: 1rem;
    }

    .collections-card__content {
      padding: 1.25rem;
    }

    .collections-card__title {
      font-size: 1.125rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .contact-page {
    padding: 2rem var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .contact-page__form-wrapper,
  .contact-page__info {
    padding: 1.5rem;
  }

  .contact-page__container {
    width: 100%;
  }

  .contact-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .contact-page__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--color-foreground);
  }

  .contact-page__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-page__content {
    display: grid;
    gap: 3rem;
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .contact-page__content--side-by-side {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .contact-page__form-wrapper {
    background: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .contact-page__form-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
  }

  .contact-form__success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #16a34a;
  }

  .contact-form__errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
  }

  .contact-form__errors h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .contact-form__errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-form__errors li {
    margin-bottom: 0.25rem;
  }

  .contact-form__errors a {
    color: #dc2626;
    text-decoration: underline;
  }

  .contact-form__fields {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
  }

  .contact-form__label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
  }

  .contact-form__required {
    color: #dc2626;
  }

  .contact-form__input,
  .contact-form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--style-border-radius-inputs);
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form__submit {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .contact-page__info {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 2rem;
  }

  .contact-page__info-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
  }

  .contact-page__info-content {
    display: grid;
    gap: 1.5rem;
  }

  .contact-page__info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-page__info-item-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .contact-page__info-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.6);
  }

  .contact-page__info-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-style: normal;
  }

  .contact-page__info-link {
    font-size: 0.9375rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-page__info-link:hover {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
  }

  .contact-page__map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .contact-page__map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .contact-page__form-wrapper,
    .contact-page__info {
      padding: 2rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .contact-page {
      padding: 3rem var(--page-margin);
    }
  }
.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;
  }
/* Mobile-first: Base styles are for mobile */
  .faq-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .faq-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .faq-section__header {
    margin-bottom: 3rem;
  }

  .faq-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .faq-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .faq-item:hover {
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  .faq-item__question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item__question:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
    color: var(--color-foreground);
  }

  .faq-item__question:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: -2px;
    border-radius: 16px;
  }

  .faq-item__question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 100%);
    color: var(--color-foreground);
  }

  .faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
  }

  .faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: var(--color-foreground);
    opacity: 0.7;
    width: 24px;
    height: 24px;
  }

  .faq-item__question:hover .faq-item__icon {
    opacity: 1;
  }

  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
  }

  .faq-item__answer[aria-expanded="true"],
  .faq-item__question[aria-expanded="true"] + .faq-item__answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-item__answer > div {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    padding-top: 0.5rem;
  }

  .faq-item__answer p {
    margin: 0 0 1rem 0;
  }

  .faq-item__answer p:last-child {
    margin-bottom: 0;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .faq-section {
      padding: 4rem var(--page-margin);
    }

    .faq-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .faq-section__list {
      gap: 1.25rem;
    }

    .faq-item__question {
      padding: 1.5rem 2rem;
      font-size: 1.125rem;
    }

    .faq-item__answer {
      padding: 0 2rem;
    }

    .faq-item__answer[aria-expanded="true"],
    .faq-item__question[aria-expanded="true"] + .faq-item__answer {
      padding: 0 2rem 2rem 2rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .faq-section {
      padding: 5rem var(--page-margin);
    }
  }
/* Mobile-first: Base styles are for mobile */
  .features-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .features-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .features-section__header {
    margin-bottom: 3rem;
  }

  .features-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .features-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .features-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
    gap: 2rem;
  }

  .feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.12),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
  }

  .feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .feature-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .feature-card__icon--svg {
    width: 80px;
    height: 80px;
  }

  .feature-card__icon--svg svg {
    width: 100%;
    height: 100%;
    color: var(--color-foreground);
  }

  .feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .feature-card__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
  }

  .feature-card__description p {
    margin: 0 0 1rem 0;
  }

  .feature-card__description p:last-child {
    margin-bottom: 0;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .features-section {
      padding: 4rem var(--page-margin);
    }

    .features-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .features-section__grid {
      grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
      gap: 2.5rem;
    }

    .feature-card {
      padding: 2.5rem 2rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .features-section {
      padding: 5rem var(--page-margin);
    }
  }
.footer {
    margin-top: 4rem;
    padding: 0;
    background-color: var(--nebula-blue-deep);
    color: #ffffff;
    border-top: 1px solid var(--nebula-blue-accent);
  }

  .footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem var(--page-margin) 2rem;
  }


  /* Footer Main Layout - 4 columns on desktop */
  .footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Column 1: Brand & Social */
  .footer__brand-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .footer__logo {
    display: flex;
    align-items: center;
  }

  .footer__logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
  }

  .footer__mission {
    margin: 0;
  }

  .footer__mission-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

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

  .footer__social-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }

  .footer__social-links,
  .footer__list-social {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .list-social__item {
    margin: 0;
  }

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

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .footer__social-link:hover {
    color: var(--rocket-boost-orange);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .footer__social-link svg {
    width: 20px;
    height: 20px;
  }

  /* Columns 2 & 3: Navigation */
  .footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.2;
  }

  @media (min-width: 751px) {
    .footer__nav-title {
      font-size: 1.25rem;
    }
  }

  .footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__nav-item {
    margin: 0;
  }

  .footer__nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .footer__nav-link:hover {
    color: #ffffff;
  }

  /* Column 4: Newsletter */
  .footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__newsletter-headline {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  @media (min-width: 751px) {
    .footer__newsletter-headline {
      font-size: 1.25rem;
    }
  }

  .footer__newsletter-subheading {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
  }

  .footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer__newsletter-input {
    width: 100%;
    padding: 1.25rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer__newsletter-input:focus {
    outline: none;
    border-color: var(--rocket-boost-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.15);
  }

  .footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer__newsletter-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: var(--rocket-boost-orange);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer__newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background-color: #e55a2b; /* Darker shade of orange */
  }

  .footer__newsletter-button:active {
    transform: translateY(0);
  }

  .footer__newsletter-button:focus-visible {
    outline: 3px solid var(--rocket-boost-orange);
    outline-offset: 2px;
  }

  .footer__newsletter-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .footer__newsletter-message {
    font-size: 0.9375rem;
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: center;
  }

  .footer__newsletter-message--success {
    background: rgba(0, 200, 0, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 200, 0, 0.3);
  }

  .footer__newsletter-message--error {
    background: rgba(200, 0, 0, 0.1);
    color: #ffffff;
    border: 1px solid rgba(200, 0, 0, 0.3);
  }

  /* Footer Bottom */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  .footer__copyright p {
    margin: 0;
  }

  .footer__copyright a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
  }

  .footer__copyright a:hover {
    opacity: 0.8;
  }

  /* Mobile-first: Base styles are for mobile, desktop styles added via min-width */
  @media (min-width: 751px) {
    .footer__main {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 3rem;
    }

    .footer__newsletter {
      grid-column: 1 / -1;
      grid-row: 1;
      padding: 2.5rem;
    }

    .footer__brand-column {
      grid-column: 1;
      grid-row: 2;
    }

    .footer__nav-column--shop {
      grid-column: 2;
      grid-row: 2;
    }

    .footer__nav-column--support {
      grid-column: 3;
      grid-row: 2;
    }

    .footer__nav-column--policies {
      grid-column: 4;
      grid-row: 2;
    }
  }

  /* Payment Icons */
  .footer__payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .footer__payment-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer__payment-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer__payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__payment-svg {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: brightness(0) invert(1); /* Make payment icons white */
  }

  .footer__payment-svg:hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .footer__payment-svg:focus-visible {
    outline: 2px solid var(--rocket-boost-orange);
    outline-offset: 2px;
    border-radius: 2px;
  }

  @media (min-width: 991px) {
    .footer__container {
      padding: 4rem var(--page-margin) 2rem;
    }

    .footer__main {
      gap: 4rem;
    }
  }
.header-icons {
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
  }

  .header-icons__container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Mobile-first: Base styles are for mobile */
  .header-icons__container {
    padding: 0 1rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .header-icons__container {
      padding: 0 var(--page-margin);
    }
  }
/* Mobile-first: Base styles are for mobile */
  .header-main {
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 100%;
  }

  /* Removed conflicting .header-main--sticky positioning rules */
  /* Positioning is now handled by .header-wrapper.header--scrolled in base.css */
  }

  .header-main__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
  }

  /* Prominent Search Bar - Hottest element for e-commerce SEO */
  .header-main__search-wrapper {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    order: 2;
  }

  .header-main__logo {
    order: 1;
    flex-shrink: 0;
  }

  .header-main__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    order: 3;
  }

  .header-main__mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .header-main__mobile-toggle:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .header-main__mobile-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
    height: 16px;
    position: relative;
    justify-content: center;
  }

  .header-main__mobile-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-foreground);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
  }

  .header-main__mobile-toggle-icon span:nth-child(1) {
    top: 0;
  }

  .header-main__mobile-toggle-icon span:nth-child(2) {
    top: 7px;
  }

  .header-main__mobile-toggle-icon span:nth-child(3) {
    bottom: 0;
  }

  .header-main__mobile-toggle[aria-expanded="true"] .header-main__mobile-toggle-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .header-main__mobile-toggle[aria-expanded="true"] .header-main__mobile-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .header-main__mobile-toggle[aria-expanded="true"] .header-main__mobile-toggle-icon span:nth-child(3) {
    bottom: 7px;
    transform: rotate(-45deg);
  }

  .header-main__mobile-toggle {
    display: flex;
  }

  .header-main__container {
    padding: 0 1rem;
  }

  /* Hide search on mobile, show icon instead */
  .header-main__search-wrapper {
    display: none;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .header-main__container {
      padding: 1rem var(--page-margin);
      gap: 2rem;
    }

    .header-main__search-wrapper {
      display: block;
      flex: 1;
      max-width: 600px;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .header-main__mobile-toggle {
      display: none !important;
    }

    .header-main__search-wrapper {
      max-width: 700px;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .how-it-works-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .how-it-works-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .how-it-works-section__header {
    margin-bottom: 3rem;
  }

  .how-it-works-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .how-it-works-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .how-it-works-section__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    counter-reset: step-counter;
  }

  .how-it-works-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .how-it-works-step:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.1),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
  }

  .how-it-works-step__number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--color-background);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 2px 8px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .how-it-works-step:hover .how-it-works-step__number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 4px 12px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .how-it-works-step__content {
    flex: 1;
    padding-top: 0.5rem;
  }

  .how-it-works-step__title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .how-it-works-step__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
  }

  .how-it-works-step__description p {
    margin: 0 0 1rem 0;
  }

  .how-it-works-step__description p:last-child {
    margin-bottom: 0;
  }

  .how-it-works-step__image {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.1),
      0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }

  .how-it-works-step:hover .how-it-works-step__image {
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
  }

  .how-it-works-step__img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .how-it-works-section {
      padding: 4rem var(--page-margin);
    }

    .how-it-works-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .how-it-works-step {
      gap: 2rem;
    }

    .how-it-works-step__number {
      width: 80px;
      height: 80px;
      font-size: 2rem;
    }

    .how-it-works-step__title {
      font-size: 1.5rem;
    }

    .how-it-works-step__description {
      font-size: 1.125rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .how-it-works-section {
      padding: 5rem var(--page-margin);
    }

    .how-it-works-section__steps {
      gap: 3.5rem;
    }

    .how-it-works-step__image {
      max-width: 500px;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .image-with-text {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .image-with-text__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .image-with-text__image-wrapper,
  .image-with-text__content {
    flex: 1 1 100%;
    width: 100%;
  }

  .image-with-text__content-inner {
    max-width: 100%;
    margin: 0;
  }

  .image-with-text__image-wrapper {
    flex: 0 0 var(--image-width);
    width: var(--image-width);
  }

  .image-with-text__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .image-with-text__placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-with-text__placeholder svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .image-with-text__content {
    flex: 0 0 var(--text-width);
    width: var(--text-width);
  }

  .image-with-text__content-inner {
    max-width: 600px;
  }

  .image-with-text--image-right .image-with-text__content-inner {
    margin-left: auto;
  }

  .image-with-text__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .image-with-text__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
  }

  .image-with-text__text p {
    margin: 0 0 1rem 0;
  }

  .image-with-text__text p:last-child {
    margin-bottom: 0;
  }

  .image-with-text__button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .image-with-text__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .image-with-text {
      padding: 3rem var(--page-margin);
    }

    .image-with-text__content-inner {
      max-width: 600px;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .image-with-text {
      padding: 4rem var(--page-margin);
    }

    .image-with-text__container {
      flex-direction: row;
      gap: 3rem;
    }

    .image-with-text--image-right .image-with-text__container {
      flex-direction: row-reverse;
    }

    .image-with-text__image-wrapper {
      flex: 0 0 var(--image-width);
      width: var(--image-width);
    }

    .image-with-text__content {
      flex: 0 0 var(--text-width);
      width: var(--text-width);
    }

    .image-with-text__content-inner {
      max-width: 600px;
    }

    .image-with-text--image-right .image-with-text__content-inner {
      margin-left: auto;
    }
  }

    .image-with-text__heading {
      font-size: 1.75rem;
    }

    .image-with-text__text {
      font-size: 1rem;
    }
  }

  /* Softer, friendlier image styling */
  .image-with-text__image img,
  .image-with-text__placeholder {
    border-radius: 40px;
  }
/* Mobile-first: Base styles are for mobile */
  .newsletter-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .newsletter-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .newsletter-section__header {
    margin-bottom: 2rem;
  }

  .newsletter-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .newsletter-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-section__description p {
    margin: 0;
  }

  .newsletter-section__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-section__form {
    margin-bottom: 2rem;
  }

  .newsletter-section__input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-section__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    display: block;
  }

  .newsletter-section__input {
    width: 100%;
    padding: 1.125rem 1.75rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    color: var(--color-foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

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

  .newsletter-section__input:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 
      0 0 0 4px rgba(0, 0, 0, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
  }

  .newsletter-section__submit {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-background);
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.2),
      0 2px 8px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }

  .newsletter-section__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .newsletter-section__submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 4px 12px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .newsletter-section__submit:hover::before {
    left: 100%;
  }

  .newsletter-section__submit:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .newsletter-section__submit:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .newsletter-section__message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9375rem;
  }

  .newsletter-section__message--success {
    background-color: rgba(0, 200, 0, 0.1);
    color: rgba(0, 150, 0, 1);
  }

  .newsletter-section__message--error {
    background-color: rgba(200, 0, 0, 0.1);
    color: rgba(150, 0, 0, 1);
  }

  .newsletter-section__social {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .newsletter-section__social-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0 0 1rem 0;
  }

  .newsletter-section__social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .newsletter-section__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-foreground);
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
  }

  .newsletter-section__social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
  }

  .newsletter-section__social-link:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .newsletter-section__social-link:hover::before {
    width: 100%;
    height: 100%;
  }

  .newsletter-section__social-link svg {
    position: relative;
    z-index: 1;
  }

  .newsletter-section__social-link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .newsletter-section {
      padding: 4rem var(--page-margin);
    }

    .newsletter-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .newsletter-section__input-wrapper {
      flex-direction: row;
      gap: 0.5rem;
    }

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

    .newsletter-section__input {
      flex: 1;
    }

    .newsletter-section__submit {
      flex-shrink: 0;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .newsletter-section {
      padding: 5rem var(--page-margin);
    }
  }
/* Mobile-first: Base styles are for mobile */
  .page-section {
    padding: 2rem var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .page-section__container {
    width: 100%;
  }

  .page-section__container--narrow {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-section__container--medium {
    max-width: 1000px;
    margin: 0 auto;
  }

  .page-section__container--wide {
    max-width: 100%;
  }

  .page-section__header {
    margin-bottom: 2rem;
  }

  .page-section__header--center {
    text-align: center;
  }

  .page-section__header--left {
    text-align: left;
  }

  .page-section__header--right {
    text-align: right;
  }

  .page-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    line-height: 1.2;
  }

  .page-section__excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-top: 0.5rem;
  }

  .page-section__header--center .page-section__excerpt {
    margin-left: auto;
    margin-right: auto;
  }

  .page-section__content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-foreground);
  }

  .page-section__content--center {
    text-align: center;
  }

  .page-section__content--left {
    text-align: left;
  }

  .page-section__content--right {
    text-align: right;
  }

  /* Style page content elements */
  .page-section__content h1,
  .page-section__content h2,
  .page-section__content h3,
  .page-section__content h4,
  .page-section__content h5,
  .page-section__content h6 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    line-height: 1.3;
  }

  .page-section__content h1 {
    font-size: 2.25rem;
  }

  .page-section__content h2 {
    font-size: 1.875rem;
  }

  .page-section__content h3 {
    font-size: 1.5rem;
  }

  .page-section__content h4 {
    font-size: 1.25rem;
  }

  .page-section__content h5 {
    font-size: 1.125rem;
  }

  .page-section__content h6 {
    font-size: 1rem;
  }

  .page-section__content p {
    margin-bottom: 1.25rem;
  }

  .page-section__content ul,
  .page-section__content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
  }

  .page-section__content ul {
    list-style-type: disc;
  }

  .page-section__content ol {
    list-style-type: decimal;
  }

  .page-section__content li {
    margin-bottom: 0.5rem;
  }

  .page-section__content a {
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .page-section__content a:hover {
    opacity: 0.7;
  }

  .page-section__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .page-section__content blockquote {
    border-left: 4px solid rgba(0, 0, 0, 0.2);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
  }

  .page-section__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow-x: auto;
    display: block;
  }

  .page-section__content table thead {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .page-section__content table th,
  .page-section__content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .page-section__content table th {
    font-weight: 600;
  }

  .page-section__content hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
  }

  .page-section__content code {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: monospace;
  }

  .page-section__content pre {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
  }

  .page-section__content pre code {
    background-color: transparent;
    padding: 0;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .page-section {
      padding: 3rem var(--page-margin);
    }

    .page-section__header {
      margin-bottom: 3rem;
    }

    .page-section__content h1 {
      font-size: 2.5rem;
    }

    .page-section__content h2 {
      font-size: 2rem;
    }

    .page-section__content h3 {
      font-size: 1.625rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .page-section {
      padding: 4rem var(--page-margin);
    }

    .page-section__content {
      font-size: 1.0625rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .product-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    color: var(--text-color, #ffffff);
  }

  .product-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

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

  .product-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
    z-index: 1;
    pointer-events: none;
  }

  .product-hero__gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .product-hero__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color, var(--color-background));
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.875rem;
    z-index: 0;
  }

  .product-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-width);
    padding: 1.5rem var(--page-margin);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-hero__content-inner {
    max-width: 600px;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .product-hero__vendor {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .product-hero__heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 
      0 2px 20px rgba(0, 0, 0, 0.6),
      0 4px 10px rgba(0, 0, 0, 0.4),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .product-hero__description {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 
      0 2px 10px rgba(0, 0, 0, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .product-hero__price {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    text-shadow: 
      0 2px 10px rgba(0, 0, 0, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .product-hero__price--sale {
    color: #ffd700;
    text-shadow: 
      0 2px 15px rgba(0, 0, 0, 0.6),
      0 1px 5px rgba(0, 0, 0, 0.4);
  }

  .product-hero__price--compare {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
  }

  .product-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-hero__quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .product-hero__quantity-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
  }

  .product-hero__quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    max-width: 120px;
  }

  .product-hero__quantity-input {
    flex: 1;
    padding: 0.5rem 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000000;
    transition: all 0.2s ease;
    width: 50px;
    min-width: 50px;
  }

  .product-hero__quantity-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background-color: #ffffff;
  }

  .product-hero__quantity-button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-hero__quantity-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05);
  }

  .product-hero__quantity-button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .product-hero__buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .product-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    min-height: 44px;
    flex: 1;
    min-width: 140px;
  }

  .product-hero__button--primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .product-hero__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
  }

  .product-hero__button--primary:active {
    transform: translateY(0);
  }

  .product-hero__button--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
  }

  .product-hero__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
  }

  .product-hero__button--outline {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .product-hero__button--outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
  }

  .product-hero__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
  }

  .product-hero__button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .product-hero__back-in-stock-date {
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    text-align: center;
  }

  @media (min-width: 751px) {
    .product-hero__back-in-stock-date {
      font-size: 0.9375rem;
    }
  }

  .product-hero--empty {
    padding: 4rem var(--page-margin);
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-hero__empty-message {
    max-width: 500px;
  }

  .product-hero__empty-message p {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    opacity: 0.7;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .product-hero {
      min-height: 500px;
    }

    .product-hero__content {
      padding: 2rem var(--page-margin);
    }

    .product-hero__content-inner {
      padding: 2rem;
      max-width: 550px;
      background: rgba(255, 255, 255, 0.7);
    }

    .product-hero__heading {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 0.875rem;
    }

    .product-hero__description {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .product-hero__price {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    .product-hero__buttons {
      flex-direction: row;
      gap: 0.5rem;
    }

    .product-hero__button {
      flex: 1;
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .product-hero {
      min-height: 600px;
    }

    .product-hero__content {
      padding: 2.5rem var(--page-margin);
    }

    .product-hero__content-inner {
      padding: 2rem;
      max-width: 600px;
      background: rgba(255, 255, 255, 0.65);
    }

    .product-hero__heading {
      margin-bottom: 1rem;
    }

    .product-hero__description {
      margin-bottom: 1rem;
    }

    .product-hero__price {
      margin-bottom: 1rem;
    }
  }
/* Mobile-first: Base styles are for mobile - Dramatically Improved */
  .product-quick-view {
    padding: 0;
    background-color: transparent;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }

  .product-quick-view__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .product-quick-view__gallery {
    width: 100%;
  }

  .product-quick-view__gallery .product-gallery {
    width: 100%;
  }

  .product-quick-view__gallery .product-gallery__main {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .product-quick-view__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-quick-view__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: var(--color-foreground);
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-quick-view__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    letter-spacing: -0.01em;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
  }

  .product-quick-view__price--sale {
    color: #dc2626;
  }

  .product-quick-view__price--compare {
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.6;
    color: rgba(0, 0, 0, 0.6);
  }

  .product-quick-view__short-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 0.75rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-quick-view__short-description p {
    margin: 0;
  }

  .product-quick-view__variants {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-quick-view__variant-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-quick-view__variant-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.9375rem;
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .product-quick-view__variant-select:hover {
    border-color: rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-quick-view__variant-select:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .product-quick-view__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-quick-view__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }

  .product-quick-view__quantity-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .product-quick-view__quantity-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.9375rem;
    width: 100px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .product-quick-view__quantity-input:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .product-quick-view__button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-background);
    background-color: var(--color-foreground);
    border: 2px solid var(--color-foreground);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .product-quick-view__button:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .product-quick-view__button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .product-quick-view__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .product-quick-view__button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .product-quick-view__view-full {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    padding: 0.625rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
  }

  .product-quick-view__view-full:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.25);
  }

  .product-quick-view__view-full:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .product-quick-view__variant-select:focus,
  .product-quick-view__quantity-input:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  /* Product Description Section */
  .product-quick-view__description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-quick-view__description-heading {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
    letter-spacing: -0.01em;
  }

  .product-quick-view__description-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-quick-view__description-content p {
    margin: 0 0 0.75rem 0;
  }

  .product-quick-view__description-content p:last-child {
    margin-bottom: 0;
  }

  /* Related Products Section */
  .product-quick-view__related {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-quick-view__related-heading {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: var(--color-foreground);
    letter-spacing: -0.01em;
    text-align: center;
  }

  .product-quick-view__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-quick-view__related-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }

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

  .product-quick-view__related-link {
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .product-quick-view__related-image {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
  }

  .product-quick-view__related-image-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Override the default .image class for this specific use case */
  .product-quick-view__related-image-element.image {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .product-quick-view__related-image-element img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-quick-view__related-image-element .image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-quick-view__related-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0.75rem 0.75rem 0.5rem 0.75rem;
    color: var(--color-foreground);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-quick-view__related-price {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0.75rem 0.75rem 0.75rem;
    color: var(--color-foreground);
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .product-quick-view__container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .product-quick-view__title {
      font-size: 1.375rem;
    }

    .product-quick-view__price {
      font-size: 1.375rem;
    }

    .product-quick-view__short-description {
      font-size: 0.9375rem;
      margin-bottom: 1rem;
    }

    .product-quick-view__description-heading {
      font-size: 1.125rem;
    }

    .product-quick-view__description-content {
      font-size: 1rem;
    }

    .product-quick-view__related-heading {
      font-size: 1.125rem;
    }

    .product-quick-view__related-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .product-quick-view__related-title {
      font-size: 0.9375rem;
    }

    .product-quick-view__related-price {
      font-size: 0.9375rem;
    }
  }
.product-page {
    padding: 1.5rem var(--page-margin);
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .product-page__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-page__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .product-page__info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Product Gallery */
  .product-gallery {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  @media (min-width: 751px) {
    .product-page {
      padding: 2rem var(--page-margin);
      overflow-x: hidden;
    }

    .product-page__container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .product-gallery {
      position: sticky;
      top: 2rem;
      max-width: 100%;
      width: 100%;
    }
    
    .product-gallery__main {
      max-width: 100%;
      width: 100%;
    }
    
    .product-gallery__image-wrapper {
      max-width: 100%;
      width: 100%;
    }

    .product-page__info {
      width: 100%;
      max-width: 100%;
    }
  }

  .product-gallery__main {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-gallery__main:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .product-gallery__slide {
    display: none;
    width: 100%;
  }

  .product-gallery__slide--active {
    display: block;
    width: 100%;
  }

  .product-gallery__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    cursor: zoom-in;
    overflow: hidden;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
  }

  /* Image snippet wrapper (div.image.product-gallery__image) */
  .product-gallery__image-wrapper .image.product-gallery__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow: hidden;
  }

  /* Actual img element inside the snippet wrapper */
  .product-gallery__image-wrapper .image.product-gallery__image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* Hover Zoom Effect */
  @media (hover: hover) and (pointer: fine) {
    .product-gallery__image-wrapper:hover .image.product-gallery__image > img {
      transform: scale(1.5);
    }
  }

  .product-gallery__zoom {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.875rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 10;
    color: #333;
    width: 48px;
    height: 48px;
  }

  .product-gallery__zoom svg {
    width: 24px;
    height: 24px;
    color: #333;
    stroke: currentColor;
    fill: none;
  }

  .product-gallery__zoom:hover svg {
    color: #000;
  }

  .product-gallery__zoom:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .product-gallery__thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 0;
  }

  .product-gallery__thumbnails::-webkit-scrollbar {
    height: 6px;
  }

  .product-gallery__thumbnails::-webkit-scrollbar-track {
    background: transparent;
  }

  .product-gallery__thumbnails::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  .product-gallery__thumbnails::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .product-gallery__thumbnail {
    flex: 0 0 70px;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    height: 70px !important;
    min-height: 70px;
    max-height: 70px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
  }

  .product-gallery__thumbnail:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }

  .product-gallery__thumbnail--active {
    border-color: var(--color-foreground, #000);
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
  }

  /* Thumbnail image snippet wrapper - Clean Square Container */
  .product-gallery__thumbnail .image.product-gallery__thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow: hidden;
    border-radius: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Actual img element inside thumbnail - Perfect Square Fill */
  .product-gallery__thumbnail .image.product-gallery__thumbnail-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: inherit;
    box-sizing: border-box;
  }

  .product-gallery__placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
  }

  .product-gallery__placeholder svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  /* Gallery Modal CSS is now in assets/product-gallery-modal.css (shared component) */

  /* Product Info */
  .product-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-info__vendor {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-info__title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.03em;
    color: var(--color-foreground);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* Decision-Making Elements Group */
  .product-info__decision-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-info__price {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-info__review-badge {
    margin: 0;
  }

  .product-info__stock {
    margin: 0;
  }

  .product-info__price--sale {
    color: #e74c3c;
  }

  .product-info__price--compare {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
    font-weight: 500;
  }

  /* Staggered Launch Dates */
  .product-info__price-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-info__staggered-launch {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .product-info__staggered-launch-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    50% {
      box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    }
  }

  .product-info__staggered-launch-date {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.4;
  }

  .product-info__staggered-launch-date time {
    font-weight: 600;
    color: var(--color-foreground);
  }

  .product-info__stock {
    margin-bottom: 1.5rem;
  }

  .product-info__stock--in-stock {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.125rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    border: 1px solid rgba(21, 87, 36, 0.2);
    box-shadow: 0 2px 4px rgba(21, 87, 36, 0.1);
  }

  .product-info__stock--out-of-stock {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
  }

  .product-info__stock--back-in-stock {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #856404;
  }

  .product-info__stock--back-in-stock-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }

  .product-info__stock--back-in-stock-message {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .product-info__stock--back-in-stock-date {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
  }

  @media (min-width: 751px) {
    .product-info__stock--back-in-stock {
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
    }

    .product-info__stock--back-in-stock-message {
      font-size: 1rem;
    }

    .product-info__stock--back-in-stock-date {
      font-size: 0.9375rem;
    }
  }

  .product-info__short-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
  }

  .product-info__short-description p {
    margin: 0;
  }

  /* Card Containers for Grouping */
  .product-info__card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-info__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .product-info__card--form {
    padding: 1.75rem;
  }

  .product-info__card--trust-badges {
    padding: 1.25rem;
  }

  .product-info__card--policy-links {
    padding: 1.25rem;
    margin-top: 0.5rem;
  }

  /* Product Form */
  .product-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-form__variants {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-form__option {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-form__option-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-form__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-form__option-values--swatches {
    gap: 0.625rem;
  }

  .product-form__option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product-form__option-value {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  /* Visual Swatches for Color/Colour */
  .product-form__option-value--swatch {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .product-form__option-value--swatch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  }

  .product-form__option-input:checked + .product-form__option-value {
    border-color: var(--color-foreground);
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--color-background);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }

  .product-form__option-input:checked + .product-form__option-value--swatch {
    border-color: var(--color-foreground, #000);
    border-width: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    transform: scale(1.15);
  }

  .product-form__option-value:hover {
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .product-form__option-value--swatch:hover {
    transform: translateY(-2px) scale(1.1);
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  }

  .product-form__quantity {
    margin-bottom: 1.5rem;
  }

  .product-form__quantity-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
  }

  .product-form__quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    max-width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .product-form__quantity-input:focus-within {
    border-color: var(--color-foreground);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .product-form__quantity-button {
    padding: 0.875rem 1.25rem;
    border: none;
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 48px;
  }

  .product-form__quantity-button:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: scale(1.1);
  }

  .product-form__quantity-button:active {
    transform: scale(0.95);
  }

  .product-form__quantity-field {
    width: 60px;
    padding: 0.75rem 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
  }

  .product-form__quantity-field::-webkit-outer-spin-button,
  .product-form__quantity-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-form__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .product-form__submit {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: 2px solid var(--color-foreground);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
    box-sizing: border-box;
    white-space: nowrap;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-form__submit:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .product-form__submit:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .product-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .product-form__submit:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .product-info__tags {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9375rem;
  }

  .product-info__tags-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--color-foreground);
  }

  .product-info__tag {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .product-info__tag:hover {
    color: var(--color-foreground);
  }

  .product-info__sharing {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9375rem;
  }

  .product-info__sharing-label {
    font-weight: 600;
    margin-right: 0.75rem;
    color: var(--color-foreground);
  }

  .product-info__share-link {
    margin-right: 1rem;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .product-info__share-link:hover {
    color: var(--color-foreground);
  }

  .product-info__meta {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .product-info__meta-item {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
  }

  .product-info__meta-label {
    font-weight: 600;
    margin-right: 0.5rem;
  }

  /* Product Tabs */
  .product-page__details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-tabs {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-tabs__header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .product-tabs__tab {
    padding: 1rem 2rem;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .product-tabs__tab:hover {
    color: var(--color-foreground);
  }

  .product-tabs__tab--active {
    color: var(--color-foreground);
    border-bottom-color: var(--color-foreground);
  }

  .product-tabs__content {
    min-height: 200px;
  }

  .product-tabs__panel {
    display: none;
  }

  .product-tabs__panel--active {
    display: block;
  }

  .product-tabs__panel-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-tabs__panel-content p {
    margin: 0 0 1.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .product-tabs__panel-content img {
    max-width: 100%;
    height: auto;
  }

  /* Heading Hierarchy in Description */
  .product-tabs__panel-content h2,
  .product-description__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem 0;
    color: var(--color-foreground);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  .product-tabs__panel-content h2:first-child,
  .product-description__content h2:first-child {
    margin-top: 0;
  }

  .product-tabs__panel-content h3,
  .product-description__content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--color-foreground);
    letter-spacing: -0.005em;
    line-height: 1.4;
  }

  .product-tabs__panel-content h4,
  .product-description__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.5;
  }

  .product-tabs__panel-content ul,
  .product-tabs__panel-content ol,
  .product-description__content ul,
  .product-description__content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }

  .product-tabs__panel-content li,
  .product-description__content li {
    margin: 0.75rem 0;
    line-height: 1.7;
  }

  .product-description {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-description__heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
  }

  .product-description__content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .product-description__content p {
    margin: 0 0 1.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .product-description__content img {
    max-width: 100%;
    height: auto;
  }

  /* Accordion Description */
  .product-description--accordion {
    max-width: 1000px;
    margin: 0 auto;
  }

  .product-description__accordion {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-background);
  }

  .product-description__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    background: var(--color-background);
    transition: background-color 0.2s ease;
  }

  .product-description__summary::-webkit-details-marker {
    display: none;
  }

  .product-description__summary:hover {
    background: rgba(0, 0, 0, 0.02);
  }

  .product-description__summary .product-description__heading {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .product-description__toggle {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
  }

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

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

  .product-description__accordion[open] .product-description__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .product-description__accordion .product-description__content {
    padding: 0 2rem 2rem 2rem;
  }

  /* Review Badge */
  .product-info__review-badge {
    margin: 1rem 0 1.5rem 0;
  }

  .review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    font-size: 0.9375rem;
  }

  .review-badge__stars {
    display: inline-flex;
    gap: 2px;
    color: #ffa500;
    font-size: 1rem;
  }

  .review-badge__star--filled {
    color: #ffa500;
  }

  .review-badge__text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  /* Trust Badges */
  .product-info__trust-badges {
    margin: 1.5rem 0;
  }

  /* Inline Trust Badges (below Price/Stock) */
  .product-info__trust-badges-inline {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .trust-badges--inline {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    font-size: 0.875rem;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .trust-badge--inline {
    flex: 0 0 auto;
    min-width: auto;
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .trust-badge__icon {
    font-size: 1.125rem;
  }

  .trust-badge--inline .trust-badge__icon {
    font-size: 1rem;
  }

  .trust-badge__text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  .trust-badge--inline .trust-badge__text {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 600;
  }

  /* Policy Links */
  .product-info__policy-links {
    margin: 1.5rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .policy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
  }

  .policy-link__text {
    flex: 1;
  }

  .policy-link__url {
    color: var(--color-foreground);
    text-decoration: underline;
    font-weight: 500;
    margin-left: 1rem;
  }

  .policy-link__url:hover {
    text-decoration: none;
  }

  /* Judge.me Reviews */
  .product-page__reviews {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    clear: both;
  }

  .product-page__reviews #judgeme_product_reviews {
    width: 100%;
  }

  /* Related Products */
  .product-page__related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
    padding-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-page__related-heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 2.5rem 0;
    text-align: center;
    color: var(--color-foreground);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .product-page__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  @media (min-width: 751px) {
    .product-page__related-grid {
      gap: 2rem;
    }
  }

  /* Sticky Mobile Add-to-Cart Bar */
  .product-form__sticky-mobile {
    display: none; /* Only show on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFFFFF; /* Clean white background */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem var(--page-margin);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-form__sticky-mobile--visible {
    transform: translateY(0);
  }

  .product-form__sticky-mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
  }

  .product-form__sticky-mobile-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nebula-blue-deep);
  }

  .product-form__sticky-mobile-button {
    flex-shrink: 0;
    padding: 0.5rem 1rem; /* Smaller padding for slim design */
    background: var(--rocket-boost-orange); /* Brand orange */
    color: #FFFFFF;
    border: none;
    border-radius: 8px; /* Less rounded for modern look */
    font-size: 0.875rem; /* Smaller font */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
  }

  .product-form__sticky-mobile-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    background: #e55a2b; /* Darker orange on hover */
  }

  .product-form__sticky-mobile-button:active:not(:disabled) {
    transform: translateY(0);
  }

  .product-form__sticky-mobile-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
  }

  /* Mobile-first: Show sticky bar on mobile by default */
  .product-form__sticky-mobile {
    display: block;
  }

  /* Tablet and up: Hide sticky bar */
  @media (min-width: 751px) {
    .product-form__sticky-mobile {
      display: none;
    }
  }

  .product-page__related {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(0, 0, 0, 0.1);
  }

  .product-page__related-heading {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 2rem 0;
    text-align: center;
    color: var(--color-foreground);
    letter-spacing: -0.02em;
  }

  .product-page__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-page__related-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-background);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-page__related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .product-page__related-link {
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-page__related-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-page__related-card:hover .product-page__related-image {
    transform: scale(1.1);
  }

  .product-page__related-title {
    padding: 1.25rem 1.5rem 0.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  .product-page__related-price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-foreground);
  }


  /* Mobile-first: Base styles are for mobile - 2 columns on all screen sizes */
  .product-page {
    padding: 1.5rem var(--page-margin);
  }


  .product-gallery {
    position: static;
  }

  .product-gallery__main {
    border-radius: 16px;
  }

  .product-gallery__thumbnails {
    gap: 0.75rem;
  }

    .product-gallery__thumbnail {
      flex: 0 0 60px;
      width: 60px;
      min-width: 60px;
      max-width: 60px;
      height: 60px !important;
      min-height: 60px;
      max-height: 60px;
      padding: 0;
    }

  .product-tabs__header {
    gap: 0;
  }

  .product-tabs__tab {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .product-page {
      padding: 3rem var(--page-margin);
      overflow-x: hidden;
    }

    .product-page__container {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 100%;
    }

    .product-gallery__main {
      border-radius: 16px;
    }
    
    .product-gallery__thumbnails {
      border-radius: 16px;
    }

    .product-gallery__thumbnails {
      gap: 1rem;
    }

    .product-gallery__thumbnail {
      flex: 0 0 80px;
      width: 80px;
      min-width: 80px;
      max-width: 80px;
      height: 80px !important;
      min-height: 80px;
      max-height: 80px;
    }

    .product-tabs__header {
      gap: 0.5rem;
    }

    .product-tabs__tab {
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }

    .product-page__related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .product-page {
      padding: 4rem var(--page-margin);
      overflow-x: hidden;
    }

    .product-page__container {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 100%;
    }

    .product-gallery {
      position: sticky;
      top: 2rem;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .product-page__related-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .quick-links-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .quick-links-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .quick-links-section__header {
    margin-bottom: 2.5rem;
  }

  .quick-links-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .quick-links-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .quick-links-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile, 2), 1fr);
    gap: 1.5rem;
  }

  .quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.25rem;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
  }

  .quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .quick-link-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.12),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--color-foreground);
  }

  .quick-link-card:hover::before {
    opacity: 1;
  }

  .quick-link-card:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .quick-link-card__icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .quick-link-card:hover .quick-link-card__icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .quick-link-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .quick-link-card__icon--svg {
    width: 80px;
    height: 80px;
  }

  .quick-link-card__icon--svg svg {
    width: 100%;
    height: 100%;
    color: var(--color-foreground);
  }

  .quick-link-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

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

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .quick-links-section {
      padding: 4rem var(--page-margin);
    }

    .quick-links-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .quick-links-section__grid {
      grid-template-columns: repeat(var(--columns-desktop, 4), 1fr);
      gap: 2rem;
    }

    .quick-link-card {
      padding: 2rem 1.5rem;
    }

    .quick-link-card__icon {
      width: 100px;
      height: 100px;
    }

    .quick-link-card__icon--svg {
      width: 100px;
      height: 100px;
    }

    .quick-link-card__title {
      font-size: 1.125rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .quick-links-section {
      padding: 5rem var(--page-margin);
    }
  }
.rich-text {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--color-background);
  }

  .rich-text__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    text-align: var(--text-alignment);
  }

  .rich-text--full {
    max-width: 100%;
  }

  .rich-text--wide {
    max-width: 1200px;
  }

  .rich-text--narrow {
    max-width: 600px;
  }

  .rich-text__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .rich-text__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
  }

  .rich-text__content p {
    margin: 0 0 1.5rem 0;
  }

  .rich-text__content p:last-child {
    margin-bottom: 0;
  }

  .rich-text__content h1,
  .rich-text__content h2,
  .rich-text__content h3,
  .rich-text__content h4,
  .rich-text__content h5,
  .rich-text__content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .rich-text__content h1:first-child,
  .rich-text__content h2:first-child,
  .rich-text__content h3:first-child {
    margin-top: 0;
  }

  .rich-text__content ul,
  .rich-text__content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }

  .rich-text__content li {
    margin-bottom: 0.5rem;
  }

  .rich-text__content a {
    color: var(--color-foreground);
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }

  .rich-text__content a:hover {
    opacity: 0.7;
  }

  .rich-text__content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
  }

  /* Mobile-first: Base styles are for mobile */
  .rich-text__container {
    padding: 0 var(--page-margin);
  }

  .rich-text__heading {
    font-size: 1.75rem;
  }

  .rich-text__content {
    font-size: 1rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .rich-text__heading {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .rich-text__content {
      font-size: 1.125rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .search-page {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .search-page__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .search-page__header {
    margin-bottom: 3rem;
    text-align: center;
  }

  .search-page__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

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

  .search-page__input-wrapper {
    display: flex;
    gap: 0.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    background-color: var(--color-background);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .search-page__input-wrapper:focus-within {
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  }

  .search-page__input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: none;
    font-size: 1rem;
    color: var(--color-foreground);
    outline: none;
  }

  .search-page__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
  }

  .search-page__submit:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }

  .search-page__submit:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .search-page__filters {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .search-page__filters-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .search-page__filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .search-page__filter-tab {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--color-background);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .search-page__filter-tab:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
  }

  .search-page__filter-tab--active {
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
  }

  .search-page__filter-tab:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .search-page__results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .search-result-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .search-result-card[data-result-type] {
    display: flex;
  }

  .search-result-card[data-result-type].search-result-card--hidden {
    display: none;
  }

  .search-result-card__image-link {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .search-result-card__image-wrapper {
    width: 100%;
    height: 100%;
  }

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

  .search-result-card:hover .search-result-card__image {
    transform: scale(1.05);
  }

  .search-result-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-result-card__type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.6);
  }

  .search-result-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

  .search-result-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .search-result-card__title a:hover {
    opacity: 0.8;
  }

  .search-result-card__excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    flex: 1;
  }

  .search-result-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .search-result-card__price--sale {
    color: #dc2626;
  }

  .search-result-card__price--compare {
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
    color: rgba(0, 0, 0, 0.6);
  }

  .search-result-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: gap 0.2s ease;
    align-self: flex-start;
  }

  .search-result-card__link:hover {
    gap: 0.75rem;
  }

  .search-result-card__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .search-page__pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

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

  .search-page__empty-message {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 2rem;
  }

  .search-page__suggestions {
    margin-top: 2rem;
  }

  .search-page__suggestions-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--color-foreground);
  }

  .search-page__suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .search-page__suggestions-list a {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .search-page__suggestions-list a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .search-page {
      padding: 3rem var(--page-margin);
    }

    .search-page__results {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .search-result-card__image-link {
      width: 150px;
      height: 150px;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .search-page {
      padding: 4rem var(--page-margin);
    }

    .search-page__results {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .seo-text {
    padding-top: var(--padding-top, 2rem);
    padding-bottom: var(--padding-bottom, 2rem);
    background-color: var(--background-color, var(--color-background));
  }

  .seo-text__container {
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: flex;
    justify-content: center;
  }

  .seo-text--align-left .seo-text__container {
    justify-content: flex-start;
  }

  .seo-text--align-center .seo-text__container {
    justify-content: center;
  }

  .seo-text--align-right .seo-text__container {
    justify-content: flex-end;
  }

  .seo-text__content {
    width: 100%;
    text-align: var(--text-align, left);
  }

  .seo-text--narrow .seo-text__content {
    max-width: 700px;
  }

  .seo-text--wide .seo-text__content {
    max-width: 1000px;
  }

  .seo-text--full .seo-text__content {
    max-width: 100%;
  }

  /* Box styles */
  .seo-text__content--plain {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .seo-text__content--outlined {
    background: transparent;
    border: var(--box-border-width, 1px) solid var(--box-border-color, rgba(0, 0, 0, 0.12));
    border-radius: var(--box-radius, 12px);
    padding: var(--box-padding, 20px);
  }

  .seo-text__content--soft {
    background: var(--box-background-color, rgba(0, 0, 0, 0.03));
    border: 0;
    border-radius: var(--box-radius, 12px);
    padding: var(--box-padding, 20px);
  }

  .seo-text__content--card {
    background: var(--box-background-color, var(--color-background));
    border: var(--box-border-width, 1px) solid var(--box-border-color, rgba(0, 0, 0, 0.08));
    border-radius: var(--box-radius, 12px);
    padding: var(--box-padding, 24px);
  }

  .seo-text__content--shadow-none {
    box-shadow: none;
  }

  .seo-text__content--shadow-soft {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .seo-text__content--shadow-medium {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  }

  .seo-text__heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
  }

  .seo-text__body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.85);
  }

  /* Proper typography for SEO content */
  .seo-text__body p {
    margin: 0 0 1.25rem 0;
  }

  .seo-text__body p:last-child {
    margin-bottom: 0;
  }

  .seo-text__body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 2rem 0 1rem 0;
    color: var(--color-foreground);
  }

  .seo-text__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 1.75rem 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .seo-text__body h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .seo-text__body h2:first-child,
  .seo-text__body h3:first-child,
  .seo-text__body h4:first-child {
    margin-top: 0;
  }

  .seo-text__body ul,
  .seo-text__body ol {
    margin: 1.25rem 0;
    padding-left: 1.75rem;
  }

  .seo-text__body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
  }

  .seo-text__body ul li {
    list-style-type: disc;
  }

  .seo-text__body ol li {
    list-style-type: decimal;
  }

  .seo-text__body a {
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .seo-text__body a:hover {
    opacity: 0.7;
  }

  .seo-text__body a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 2px;
  }

  .seo-text__body strong {
    font-weight: 600;
    color: var(--color-foreground);
  }

  .seo-text__body em {
    font-style: italic;
  }

  .seo-text__body blockquote {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(0, 0, 0, 0.2);
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
  }

  .seo-text__body img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .seo-text {
      padding-top: var(--padding-top, 3rem);
      padding-bottom: var(--padding-bottom, 3rem);
    }

    .seo-text__body {
      font-size: 1.0625rem;
      line-height: 1.85;
    }

    .seo-text__heading {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .seo-text {
      padding-top: var(--padding-top, 4rem);
      padding-bottom: var(--padding-bottom, 4rem);
    }

    .seo-text__body {
      font-size: 1.125rem;
      line-height: 1.9;
    }
  }

  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    .seo-text__body a {
      transition: none;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .rich-data-check {
    padding: 1.5rem var(--page-margin);
    background: #f8f9fa;
    border-top: 3px solid #0066cc;
    margin-top: 2rem;
  }

  .rich-data-check__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .rich-data-check__header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
  }

  .rich-data-check__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #212529;
  }

  .rich-data-check__subtitle {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
  }

  .rich-data-check__schemas {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .rich-data-check__schema {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .rich-data-check__schema-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .rich-data-check__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .rich-data-check__status--active {
    background: #d4edda;
    color: #155724;
  }

  .rich-data-check__status--inactive {
    background: #f8d7da;
    color: #721c24;
  }

  .rich-data-check__schema-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
    flex: 1;
  }

  .rich-data-check__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .rich-data-check__badge--active {
    background: #d4edda;
    color: #155724;
  }

  .rich-data-check__badge--inactive {
    background: #e2e3e5;
    color: #383d41;
  }

  .rich-data-check__schema-details {
    margin-top: 1rem;
  }

  .rich-data-check__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .rich-data-check__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #495057;
  }

  .rich-data-check__check {
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
  }

  .rich-data-check__warning {
    color: #ffc107;
    font-weight: 700;
    flex-shrink: 0;
  }

  .rich-data-check__info {
    color: #17a2b8;
    font-weight: 700;
    flex-shrink: 0;
  }

  .rich-data-check__note {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
    font-style: italic;
  }

  .rich-data-check__footer {
    padding-top: 1.5rem;
    border-top: 2px solid #dee2e6;
  }

  .rich-data-check__footer-text {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 0.9375rem;
  }

  .rich-data-check__footer-text a {
    color: #0066cc;
    text-decoration: underline;
  }

  .rich-data-check__footer-text a:hover {
    color: #0052a3;
  }

  .rich-data-check__footer-note {
    margin: 0;
    color: #6c757d;
    font-size: 0.8125rem;
    font-style: italic;
  }

  .rich-data-check__title {
    font-size: 1.25rem;
  }

  .rich-data-check__schema {
    padding: 1rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .rich-data-check {
      padding: 2rem var(--page-margin);
    }

    .rich-data-check__title {
      font-size: 1.5rem;
    }

    .rich-data-check__schema {
      padding: 1.5rem;
    }

    .rich-data-check__schema-header {
      flex-direction: row;
      align-items: center;
    }
  }
.size-selector {
    padding: 2rem var(--page-margin);
    max-width: 1200px;
    margin: 0 auto;
  }

  .size-selector__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
  }

  .size-selector__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
  }

  .size-selector__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent, #FF6B6B);
  }

  .size-selector__icon {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }

  .size-selector__item:hover .size-selector__icon {
    transform: scale(1.1);
  }

  .size-selector__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--color-foreground);
  }

  .size-selector__subtitle {
    font-size: 0.875rem;
    color: var(--color-foreground-75, rgba(0, 0, 0, 0.6));
    margin: 0;
    font-weight: 500;
  }

  /* Size-specific colors */
  .size-selector__item--small {
    --color-accent: #FF6B6B;
  }

  .size-selector__item--small:hover {
    border-color: #FF6B6B;
  }

  .size-selector__item--medium {
    --color-accent: #42A5F5;
  }

  .size-selector__item--medium:hover {
    border-color: #42A5F5;
  }

  .size-selector__item--large {
    --color-accent: #AB47BC;
  }

  .size-selector__item--large:hover {
    border-color: #AB47BC;
  }

  .size-selector__item--giant {
    --color-accent: #FF9800;
  }

  .size-selector__item--giant:hover {
    border-color: #FF9800;
  }

  /* Desktop layout */
  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .size-selector__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .size-selector__item {
      padding: 2.5rem 1.5rem;
    }

    .size-selector__title {
      font-size: 1.375rem;
    }

    .size-selector__subtitle {
      font-size: 1rem;
    }
  }

  /* Focus states for accessibility */
  .size-selector__item:focus {
    outline: 2px solid var(--color-accent, #FF6B6B);
    outline-offset: 2px;
  }
/* Mobile-first: Base styles are for mobile */
  .testimonials-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .testimonials-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .testimonials-section__header {
    margin-bottom: 3rem;
  }

  .testimonials-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .testimonials-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .testimonials-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    box-shadow: 
      0 6px 24px rgba(0, 0, 0, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
  }

  .testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
      0 20px 56px rgba(0, 0, 0, 0.12),
      0 8px 24px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.18);
  }

  .testimonial-card__rating {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
  }

  .testimonial-card__star {
    color: rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 20px;
  }

  .testimonial-card__star--filled {
    color: #fbbf24;
  }

  .testimonial-card__content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
  }

  .testimonial-card__content blockquote {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
  }

  .testimonial-card__content blockquote::before {
    content: '"';
    font-size: 3rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
    float: left;
    margin: -0.5rem 0.5rem 0 -0.5rem;
  }

  .testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  .testimonial-card__author-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .testimonial-card:hover .testimonial-card__author-image {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .testimonial-card__author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-card__author-info {
    flex: 1;
  }

  .testimonial-card__author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 0.25rem;
  }

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

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .testimonials-section {
      padding: 4rem var(--page-margin);
    }

    .testimonials-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

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

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .testimonials-section {
      padding: 5rem var(--page-margin);
    }

    .testimonials-section__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .testimonial-card {
      padding: 2.5rem;
    }
  }
/* Mobile-first: Base styles are for mobile */
  .trust-badges-section {
    padding: 3rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
  }

  .trust-badges-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .trust-badges-section__header {
    margin-bottom: 2.5rem;
  }

  .trust-badges-section__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .trust-badges-section__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  .trust-badges-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .trust-badge:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.1),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.12);
  }

  .trust-badge:hover::before {
    opacity: 1;
  }

  .trust-badge__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .trust-badge:hover .trust-badge__icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .trust-badge__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .trust-badge__icon--svg {
    width: 60px;
    height: 60px;
  }

  .trust-badge__icon--svg svg {
    width: 100%;
    height: 100%;
    color: var(--color-foreground);
  }

  .trust-badge__title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

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

  .trust-badge__description p {
    margin: 0;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .trust-badges-section {
      padding: 4rem var(--page-margin);
    }

    .trust-badges-section__heading {
      font-size: clamp(2rem, 5vw, 3rem);
    }

    .trust-badges-section__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .trust-badge {
      padding: 2rem 1.5rem;
    }

    .trust-badge__icon {
      width: 70px;
      height: 70px;
    }

    .trust-badge__icon--svg {
      width: 70px;
      height: 70px;
    }

    .trust-badge__title {
      font-size: 1.0625rem;
    }

    .trust-badge__description {
      font-size: 0.9375rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .trust-badges-section {
      padding: 5rem var(--page-margin);
    }
  }
/* Mobile-first: Base styles are for mobile */
  .value-props-section {
    padding: 2.5rem var(--page-margin);
    background-color: var(--background-color, var(--color-background));
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .value-props-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .value-props-section__heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
  }

  .value-props-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.06),
      0 1px 4px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .value-prop-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .value-prop-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.1),
      0 4px 16px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
  }

  .value-prop-item:hover::before {
    opacity: 1;
  }

  .value-prop-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .value-prop-item:hover .value-prop-item__icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .value-prop-item__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .value-prop-item__icon--svg {
    width: 40px;
    height: 40px;
  }

  .value-prop-item__icon--svg svg {
    width: 100%;
    height: 100%;
    color: var(--color-foreground);
  }

  .value-prop-item__content {
    flex: 1;
  }

  .value-prop-item__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.25rem 0;
    color: var(--color-foreground);
  }

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

  /* Horizontal layout */
  .value-props-section--horizontal .value-props-section__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .value-props-section--horizontal .value-prop-item {
    flex: 1;
    min-width: 200px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .value-props-section {
      padding: 3rem var(--page-margin);
    }

    .value-props-section__list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .value-props-section--horizontal .value-prop-item {
      flex: 1;
      min-width: 200px;
      max-width: 300px;
    }

    .value-props-section--vertical .value-prop-item {
      flex: 1;
      min-width: 250px;
    }

    .value-prop-item__icon {
      width: 48px;
      height: 48px;
    }

    .value-prop-item__icon--svg {
      width: 48px;
      height: 48px;
    }

    .value-prop-item__title {
      font-size: 1.0625rem;
    }

    .value-prop-item__description {
      font-size: 0.9375rem;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .value-props-section {
      padding: 3.5rem var(--page-margin);
    }

    .value-props-section__list {
      gap: 2.5rem;
    }
  }

/* CSS from block stylesheet tags */
.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) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.breadcrumbs-nav {
    margin-bottom: 1.5rem;
  }

  .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 0.875rem;
    align-items: center;
  }

  .breadcrumbs__item {
    display: flex;
    align-items: center;
  }

  .breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
  }

  .breadcrumbs__item a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumbs__item a:hover {
    color: var(--color-foreground);
  }

  .breadcrumbs__item--current span {
    color: var(--color-foreground);
    font-weight: 500;
  }

  /* Mobile styles (default) */
  .breadcrumbs {
    font-size: 0.875rem;
  }

  .breadcrumbs__item {
    margin-right: 0.5rem;
  }

  .breadcrumbs__separator {
    margin: 0 0.375rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .breadcrumbs {
      font-size: 0.8125rem;
    }
  }
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Prevent layout shift - aspect ratio is set via width/height attributes */