/** Shopify CDN: Minification failed

Line 3015:2 Unexpected "}"
Line 6062: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 */
  .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;
    }
  }
/* 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-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;
  }

  .blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.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: 1400px;
    margin: 0 auto;
  }

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

  .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;
  }

  /* 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: 0.875rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    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);
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .collection-page__sort-select:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
  }

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

  /* Products Grid */
  .collection-page__products {
    display: grid;
    grid-template-columns: repeat(var(--columns-desktop), 1fr);
    gap: var(--grid-gap);
    margin-bottom: 3rem;
  }

  .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;
  }

  .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;
  }

  .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 {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .collection-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

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

  .collection-product-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);
  }

  .collection-product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: transform 0.3s ease;
  }

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

  .collection-product-card__badge--sold-out {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .collection-product-card__quick-add {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 2;
    width: calc(100% - 2rem);
    max-width: 200px;
  }

  .collection-product-card:hover .collection-product-card__quick-add {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .collection-product-card__quick-add-button {
    width: 100%;
    padding: 1rem 1.5rem;
    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: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
  }

  .collection-product-card__quick-add-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .collection-product-card__quick-add-button:active {
    transform: translateY(-1px) scale(1);
  }

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

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

  .collection-product-card__content {
    padding: 1.75rem;
    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%);
  }

  .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 1rem 0;
    line-height: 1.5;
    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-top: auto;
    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;
  }

  /* 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);
  }

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

  .collection-page__pagination a,
  .collection-page__pagination span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    margin: 0 0.375rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    min-width: 44px;
    border: 2px solid transparent;
  }

  .collection-page__pagination a:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .collection-page__pagination .current {
    background: linear-gradient(135deg, var(--color-foreground) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--color-background);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
  }

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

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

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

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

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

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

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

    .collection-page__banner {
      height: 450px;
    }

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

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

  /* 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.5rem;
    }

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

    .collection-page__banner {
      border-radius: 16px;
    }
  }
.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;
  }

  @media (min-width: 990px) {
    .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: 990px) */
  @media (min-width: 990px) {
    .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.1);
    border-radius: 12px;
    background-color: var(--color-background);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
  }

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

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

  .faq-item__question:hover {
    background-color: rgba(0, 0, 0, 0.02);
  }

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

  .faq-item__question[aria-expanded="true"] {
    background-color: rgba(0, 0, 0, 0.03);
  }

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

  .faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-foreground);
    opacity: 0.6;
  }

  .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 */
  .featured-collections {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .featured-collections__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
  }

  .featured-collections__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--color-foreground);
    position: relative;
    display: inline-block;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
  }

  .featured-collections__heading::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-foreground), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transition: width 0.3s ease, opacity 0.3s ease;
  }

  .featured-collections__header:hover .featured-collections__heading::after {
    width: 120px;
    opacity: 1;
  }

  .featured-collections__description {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    color: var(--color-foreground);
    font-weight: 400;
    letter-spacing: 0.01em;
  }

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

  .featured-collection-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--color-background);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    will-change: transform;
  }

  .featured-collection-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
  }

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

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

  .featured-collection-card__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
  }

  .featured-collection-card:hover .featured-collection-card__image {
    transform: scale3d(1.08, 1.08, 1);
  }

  .featured-collection-card__placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    opacity: 0.5;
  }

  .featured-collection-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-collection-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-foreground);
    transition: color 0.2s ease;
  }

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

  .featured-collection-card__description {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.75;
    margin-bottom: 0.5rem;
    flex: 1;
    color: var(--color-foreground);
  }

  .featured-collection-card__count {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: auto;
    color: var(--color-foreground);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Mobile-first: Base styles are for mobile */
  .featured-products {
    padding: 2rem var(--page-margin);
    background-color: var(--color-background);
  }

  .featured-products__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
  }

  .featured-products__heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--color-foreground);
    position: relative;
    display: inline-block;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
  }

  .featured-products__heading::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-foreground), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transition: width 0.3s ease, opacity 0.3s ease;
  }

  .featured-products__header:hover .featured-products__heading::after {
    width: 120px;
    opacity: 1;
  }

  .featured-products__description {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    color: var(--color-foreground);
    font-weight: 400;
    letter-spacing: 0.01em;
  }

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

  .featured-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--color-background);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    will-change: transform;
  }

  .featured-product-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
  }

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

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

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

  .featured-product-card:hover .featured-product-card__image {
    transform: scale3d(1.08, 1.08, 1);
  }

  .featured-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    opacity: 0.5;
  }

  .featured-product-card__quick-add {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 1;
  }

  .featured-product-card:hover .featured-product-card__quick-add {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .featured-product-card__quick-add-button {
    padding: 0.875rem 1.75rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .featured-product-card__quick-add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1;
  }

  .featured-product-card__quick-add-button:active {
    transform: translateY(0);
  }

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

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

  .featured-product-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-product-card__vendor {
    font-size: 0.8125rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .featured-product-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-foreground);
    transition: color 0.2s ease;
  }

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

  .featured-product-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--color-foreground);
  }

  .featured-product-card__price--sale {
    color: rgba(220, 38, 38, 1);
  }

  .featured-product-card__price--compare {
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 0.5rem;
    color: var(--color-foreground);
  }

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

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

  .featured-products__grid {
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
  }

  .featured-product-card__quick-add {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    position: static;
    margin-top: 0.5rem;
  }

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

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

    .featured-product-card__quick-add {
      transform: translateX(-50%) translateY(100%);
      opacity: 0;
      position: absolute;
      margin-top: 0;
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .featured-products {
      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: 2rem 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;
  }

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

  .feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.03);
  }

  .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: 2rem var(--page-margin);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-background);
    color: var(--color-foreground);
  }

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

  @media (min-width: 751px) {
    .footer {
      padding: 3rem var(--page-margin);
    }
  }

  /* Footer Navigation */
  .footer__navigation {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

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

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

  .footer__menu-group-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
  }

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

  .footer__menu-item {
    margin: 0;
  }

  .footer__menu-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: opacity 0.2s ease, color 0.2s ease;
    position: relative;
    padding: 0.25rem 0;
    display: block;
  }

  .footer__menu-link--sub {
    font-size: 0.875rem;
    padding-left: 1rem;
    color: rgba(0, 0, 0, 0.6);
  }

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

  .footer__menu-link:hover {
    color: var(--color-foreground);
    opacity: 1;
  }

  .footer__menu-link--active {
    font-weight: 600;
  }

  /* 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(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  .footer__copyright p {
    margin: 0;
  }

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

  .footer__copyright a:hover {
    opacity: 0.8;
  }

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

  .footer__payment-label {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 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.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

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

  /* Mobile-first: Base styles are for mobile, desktop styles added via min-width */
  
  /* Mobile styles (default) */
  .footer__navigation-grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.5rem;
  }

  .footer__payment {
    align-items: center;
  }

  .footer__payment-icons {
    justify-content: center;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .footer__navigation-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .footer__bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
      align-items: center;
      gap: 2rem;
    }

    .footer__payment {
      align-items: flex-end;
    }

    .footer__payment-icons {
      justify-content: flex-start;
    }
  }
.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%;
  }

  .header-main--sticky {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .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;
    }
  }
.header {
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    width: 100%;
  }

  .header--sticky {
    position: relative;
    width: 100%;
    display: block;
    overflow: visible;
  }

  .header__compact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1001;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.625rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    pointer-events: none;
    display: block;
    margin: 0;
  }

  .header__compact.header__compact--visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .header__compact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
    gap: 0.5rem;
  }

  .header__compact-logo {
    flex-shrink: 0;
  }

  .header__compact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
  }

  .header__compact-title:hover {
    opacity: 0.7;
  }

  .header__compact-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
  }

  .header__compact-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-foreground);
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .header__compact-search-icon:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: scale(1.05);
  }

  .header__compact-search-icon:active {
    transform: scale(0.95);
  }

  .header__compact-icons {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__compact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    position: relative;
  }

  .header__compact-icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .header__compact-icon:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: scale(1.05);
  }

  .header__compact-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-foreground);
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .header__compact-menu-button:hover {
    background-color: rgba(0, 0, 0, 0.06);
  }

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

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

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

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

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

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

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

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

  .header__compact-cart-count {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 1.25rem;
    text-align: center;
    line-height: 1.25;
  }

  /* Compact header dropdown menu */
  .header__compact-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }

  .header__compact-menu[data-compact-menu-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__compact-menu-container {
    padding: 1rem var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .header__compact-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .header__compact-menu-item {
    margin: 0;
  }

  .header__compact-menu-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
  }

  .header__compact-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-foreground);
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
  }

  .header__compact-menu-link:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.03));
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header__compact-menu-link:hover::before {
    height: 60%;
  }

  .header__compact-menu-link--active {
    font-weight: 600;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
    color: var(--color-foreground);
    box-shadow: 
      inset 0 2px 4px rgba(0, 0, 0, 0.06),
      0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .header__compact-menu-link--active::before {
    height: 60%;
  }

  @media (min-width: 991px) {
    .header__compact-menu-list {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  .header--absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  .header--absolute .header__utility {
    background-color: transparent;
    border-bottom: none;
  }

  .header--compactable {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
  }

  .header--compactable.header--scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header--compactable.header--scrolled .header__utility {
    padding: 0.25rem 0;
    font-size: 0.75rem;
  }

  .header--compactable.header--scrolled .header__main {
    padding: 0.5rem 0;
  }

  .header--compactable.header--scrolled .header__title {
    font-size: 1.25rem;
  }

  .header--compactable.header--scrolled .header__navigation {
    padding: 0.5rem 0;
  }

  .header--compactable.header--scrolled .header__menu-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  /* Utility Bar */
  .header__utility {
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
  }

  .header__utility-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.8125rem;
  }

  .header__utility-text {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  .header__utility-link {
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
  }

  .header__utility-link:hover {
    opacity: 0.7;
  }

  /* Main Header */
  .header__main {
    padding: 1rem 0;
  }

  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
  }

  .header__logo {
    z-index: 2;
  }

  .header__logo-image {
    max-height: var(--logo-max-height, 50px);
    width: var(--logo-width, 150px);
    height: auto;
    object-fit: contain;
  }

  .header__title {
    margin: 0;
    font-size: var(--title-font-size, 1.5rem);
    font-weight: var(--title-font-weight, 700);
    letter-spacing: -0.02em;
  }

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

  .header__title a:hover {
    opacity: 0.7;
  }

  /* Search Bar */
  .header__search {
    max-width: 300px;
    min-width: 200px;
  }

  .header__search-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .header__mobile-search {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem var(--page-margin);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .header__mobile-search[data-mobile-search-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
  }

  .header__mobile-search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease;
  }

  .header__mobile-search-input:focus {
    outline: none;
    border-color: var(--color-foreground);
  }

  .header__mobile-search-button {
    padding: 0.875rem;
    border: none;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .header__mobile-search-button:hover {
    opacity: 0.9;
  }

  .header__mobile-search-close {
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--color-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }

  .header__mobile-search-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .header__search-form {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header__search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9375rem;
    background-color: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

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

  .header__search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

  .header__search-button {
    position: absolute;
    right: 0.5rem;
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--color-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }

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

  /* Header Icons */
  .header__icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 2;
  }

  .header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .header__icon:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(1.1);
  }

  .header__cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
    line-height: 1;
  }

  /* Navigation */
  .header__navigation {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.01);
  }

  .header__navigation-container {
    padding: 0 var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .header__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--menu-item-spacing, 1.5rem);
    align-items: center;
  }

  .header__navigation--left .header__menu-list {
    justify-content: flex-start;
  }

  .header__navigation--center .header__menu-list {
    justify-content: center;
  }

  .header__navigation--right .header__menu-list {
    justify-content: flex-end;
  }

  .header__menu-item {
    position: relative;
  }

  .header__menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--color-foreground);
    font-weight: 500;
    font-size: var(--menu-font-size, 1rem);
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: relative;
  }

  .header__dropdown--no-arrows .header__menu-arrow {
    display: none;
  }

  .header__menu-link:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .header__menu-link--active {
    color: var(--color-foreground);
    font-weight: 600;
  }

  .header__menu-arrow {
    transition: transform 0.2s ease;
  }

  .header__menu-item:hover .header__menu-arrow {
    transform: rotate(180deg);
  }

  /* Dropdown Menu */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin: 0.5rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
  }

  .header__menu-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__dropdown-item {
    margin: 0;
  }

  .header__dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--color-foreground);
    font-size: 0.9375rem;
    transition: background-color 0.2s ease;
  }

  .header__dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .header__dropdown-link--active {
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.04);
  }

  /* Mobile Toggle */
  .header__mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

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

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

  .header__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__mobile-toggle-icon span:nth-child(1) {
    top: 0;
  }

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

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

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

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

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

  /* Mobile Menu - only for main header */
  .header__mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.12),
      0 2px 8px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }

  .header__mobile-menu[data-mobile-menu-open="true"],
  .header__mobile-menu[data-mobile-menu-open="True"] {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Mobile menu text alignment */
  .header__mobile-menu--left .header__mobile-menu-link > *:first-child {
    text-align: left;
  }

  .header__mobile-menu--center .header__mobile-menu-link {
    justify-content: center;
  }

  .header__mobile-menu--center .header__mobile-menu-link > *:first-child {
    text-align: center;
  }

  .header__mobile-menu--center .header__mobile-menu-arrow {
    position: absolute;
    right: 1.25rem;
  }

  .header__mobile-menu--right .header__mobile-menu-link {
    justify-content: flex-end;
  }

  .header__mobile-menu--right .header__mobile-menu-link > *:first-child {
    text-align: right;
  }

  .header__mobile-menu--right .header__mobile-menu-arrow {
    order: -1;
    margin-right: 0.5rem;
  }

  .header__mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0.25rem var(--page-margin);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .header__mobile-menu-item:first-child {
    margin-top: 0.5rem;
  }

  .header__mobile-menu-item:last-child {
    margin-bottom: 0.5rem;
    border-bottom: none;
  }

  .header__mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--color-foreground);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    width: 100%;
  }

  .header__mobile-menu-link > *:first-child {
    flex: 1;
  }

  .header__mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-foreground);
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
  }

  .header__mobile-menu-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .header__mobile-menu-link:hover::before {
    height: 60%;
  }

  .header__mobile-menu-link--active {
    font-weight: 600;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
    color: var(--color-foreground);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  }

  .header__mobile-menu-link--active::before {
    height: 60%;
  }

  .header__mobile-menu-arrow {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 6px;
    padding: 0.375rem;
    cursor: pointer;
    color: var(--color-foreground);
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__mobile-menu-arrow:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .header__mobile-menu-item[data-mobile-submenu-open="true"] .header__mobile-menu-arrow {
    transform: rotate(90deg);
  }

  .header__mobile-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
    border-radius: 0 0 12px 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  }

  .header__mobile-menu-item[data-mobile-submenu-open="true"] .header__mobile-submenu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .header__mobile-submenu-item {
    margin: 0.25rem 1.5rem;
    border-radius: 8px;
    overflow: hidden;
  }

  .header__mobile-submenu-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
    position: relative;
  }

  .header__mobile-submenu-link::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-10px);
  }

  .header__mobile-submenu-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-foreground);
    transform: translateX(4px);
    padding-left: 1.5rem;
  }

  .header__mobile-submenu-link:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  /* Mobile-first: Base styles are for mobile, desktop styles added via min-width */
  
  /* Mobile styles (default) */
  .header__search {
    display: none;
  }

  .header__search-icon {
    display: flex;
  }

  .header__mobile-toggle {
    display: flex !important;
  }

  .header__mobile-menu {
    display: block;
  }

  .header__navigation {
    display: none;
  }

  .header__right {
    flex: 0;
  }

  .header__icons {
    gap: 0.75rem;
  }

  .header__utility-container {
    padding: 0 1rem;
    font-size: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .header__container {
    padding: 0 1rem;
  }

  .header__title {
    font-size: 1.25rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .header__utility-container {
      padding: 0 var(--page-margin);
      font-size: 0.8125rem;
      flex-wrap: nowrap;
      text-align: left;
    }

    .header__container {
      padding: 0 var(--page-margin);
    }

    .header__title {
      font-size: var(--title-font-size, 1.5rem);
    }
  }

  /* Desktop and up (min-width: 991px) */
  @media (min-width: 991px) {
    .header__search {
      display: block;
    }

    .header__search-icon {
      display: none;
    }

    .header__mobile-toggle {
      display: none !important;
    }

    .header__mobile-menu {
      display: none;
    }

    .header__navigation {
      display: block;
    }

    .header__right {
      flex: 1;
    }

    .header__icons {
      gap: 1rem;
    }
  }
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    color: var(--color-foreground);
  }

  /* Mobile-first: Base styles are for mobile */
  .hero--small {
    min-height: 300px;
  }

  .hero--medium {
    min-height: 400px;
  }

  .hero--large {
    min-height: 500px;
  }

  .hero--full {
    min-height: 100vh;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .hero--small {
      min-height: 400px;
    }

    .hero--medium {
      min-height: 500px;
    }

    .hero--large {
      min-height: 600px;
    }
  }

  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero__image-wrapper {
    width: 100%;
    height: 100%;
  }

  .hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity));
    z-index: 1;
  }

  .hero__gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--content-width);
    padding: 2rem var(--page-margin);
    text-align: var(--text-alignment);
  }

  .hero__text {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .hero__text {
      padding: 1.5rem;
      background: rgba(0, 0, 0, 0.25);
    }
  }

  .hero__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 
      0 2px 20px rgba(0, 0, 0, 0.8),
      0 4px 10px rgba(0, 0, 0, 0.6),
      0 1px 3px rgba(0, 0, 0, 0.4);
    will-change: transform, opacity;
    animation: fadeInUp 0.6s ease-out;
  }

  .hero__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 
      0 2px 15px rgba(0, 0, 0, 0.7),
      0 1px 5px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
    animation: fadeInUp 0.6s ease-out 0.15s both;
  }

  .hero__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    will-change: transform;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    letter-spacing: 0.02em;
  }

  .hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }

  .hero__button:active {
    transform: translateY(0);
  }

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

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  /* Reduce animation on slow devices */
  @media (prefers-reduced-motion: reduce) {
    .hero__heading,
    .hero__description,
    .hero__button {
      animation: none;
    }
  }
/* 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;
  }

  .how-it-works-step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
  }

  .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: 12px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .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;
    }
  }
/* 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__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: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: var(--color-background);
    color: var(--color-foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

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

  .newsletter-section__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;
    white-space: nowrap;
  }

  .newsletter-section__submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .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: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
  }

  .newsletter-section__message--error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
  }

  .newsletter-section__social {
    text-align: center;
    padding-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: 44px;
    height: 44px;
    color: var(--color-foreground);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .newsletter-section__social-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }

  .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 */
  .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 */
  .product-quick-view {
    padding: 1.5rem;
    background-color: var(--color-background);
    max-width: 500px;
    margin: 0 auto;
  }

  .product-quick-view__container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-quick-view__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .product-quick-view__image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-quick-view__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-quick-view__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-foreground);
  }

  .product-quick-view__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .product-quick-view__price--sale {
    color: #dc2626;
  }

  .product-quick-view__price--compare {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
    color: rgba(0, 0, 0, 0.6);
  }

  .product-quick-view__variants {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-quick-view__variant-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .product-quick-view__variant-select {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--color-background);
    color: var(--color-foreground);
  }

  .product-quick-view__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-quick-view__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-quick-view__quantity-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .product-quick-view__quantity-input {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    width: 100px;
  }

  .product-quick-view__button {
    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;
  }

  .product-quick-view__button:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .product-quick-view__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .product-quick-view__button:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .product-quick-view__view-full {
    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;
  }

  .product-quick-view__view-full:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .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);
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .product-quick-view {
      padding: 2rem;
      max-width: 600px;
    }

    .product-quick-view__container {
      flex-direction: row;
      gap: 2rem;
    }

    .product-quick-view__image {
      flex: 0 0 250px;
      width: 250px;
    }
  }
.product-page {
    padding: 2rem var(--page-margin);
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-page__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
  }

  /* Product Gallery */
  .product-gallery {
    position: sticky;
    top: 2rem;
  }

  .product-gallery__main {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
  }

  .product-gallery__main:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .product-gallery__slide {
    display: none;
  }

  .product-gallery__slide--active {
    display: block;
  }

  .product-gallery__image-wrapper {
    position: relative;
    width: 100%;
    cursor: zoom-in;
    overflow: hidden;
  }

  .product-gallery__image {
    width: 100%;
    height: auto;
    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 .product-gallery__image {
      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;
    padding-bottom: 0.5rem;
  }

  .product-gallery__thumbnail {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .product-gallery__thumbnail:hover {
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .product-gallery__thumbnail--active {
    border-color: var(--color-foreground);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }

  .product-gallery__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .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;
  }

  /* Full Size Image Modal */
  .product-gallery__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
  }

  .product-gallery__modal--active {
    display: flex;
    opacity: 1;
  }

  .product-gallery__modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .product-gallery__modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
  }

  .product-gallery__modal-image-wrapper {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__modal-slide {
    display: none;
    width: 100%;
    height: 100%;
  }

  .product-gallery__modal-slide--active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__modal-image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .product-gallery__modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    padding: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .product-gallery__modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }

  .product-gallery__modal-close:active {
    transform: scale(1.05) rotate(90deg);
  }

  .product-gallery__modal-close:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
  }

  .product-gallery__modal-close svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
  }

  .product-gallery__modal-prev,
  .product-gallery__modal-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    padding: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .product-gallery__modal-prev {
    left: 1.5rem;
  }

  .product-gallery__modal-next {
    right: 1.5rem;
  }

  .product-gallery__modal-prev:hover,
  .product-gallery__modal-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }

  .product-gallery__modal-prev:active,
  .product-gallery__modal-next:active {
    transform: translateY(-50%) scale(1.05);
  }

  .product-gallery__modal-prev:focus-visible,
  .product-gallery__modal-next:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
  }

  /* Zoom Controls */
  .product-gallery__modal-zoom-controls {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100000;
  }

  .product-gallery__modal-zoom-in,
  .product-gallery__modal-zoom-out {
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    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 20px rgba(0, 0, 0, 0.3);
  }

  .product-gallery__modal-zoom-in:hover,
  .product-gallery__modal-zoom-out:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }

  .product-gallery__modal-zoom-in:active,
  .product-gallery__modal-zoom-out:active {
    transform: scale(1.05);
  }

  .product-gallery__modal-zoom-in:focus-visible,
  .product-gallery__modal-zoom-out:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
  }

  /* Mobile styles (default) */
  .product-gallery__modal-prev,
  .product-gallery__modal-next {
    width: 48px;
    height: 48px;
  }

  .product-gallery__modal-prev {
    left: 1rem;
  }

  .product-gallery__modal-next {
    right: 1rem;
  }

  .product-gallery__modal-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .product-gallery__modal-close svg {
    width: 24px;
    height: 24px;
  }

  .product-gallery__modal-zoom-controls {
    top: 1.25rem;
    left: 1.25rem;
    gap: 0.5rem;
  }

    .product-gallery__modal-zoom-in,
    .product-gallery__modal-zoom-out {
      width: 44px;
      height: 44px;
    }

  .product-gallery__modal-content {
    padding: 1rem;
  }

  /* Tablet and up (min-width: 751px) */
  @media (min-width: 751px) {
    .product-gallery__modal-prev,
    .product-gallery__modal-next {
      width: 56px;
      height: 56px;
    }

    .product-gallery__modal-close {
      top: 2rem;
      right: 2rem;
      width: 56px;
      height: 56px;
    }

    .product-gallery__modal-close svg {
      width: 28px;
      height: 28px;
    }

    .product-gallery__modal-zoom-controls {
      top: 2rem;
      left: 2rem;
      gap: 0.75rem;
    }

    .product-gallery__modal-zoom-in,
    .product-gallery__modal-zoom-out {
      width: 48px;
      height: 48px;
    }

    .product-gallery__modal-content {
      padding: 2rem;
    }
  }

  /* Product Info */
  .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;
  }

  .product-info__title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.03em;
    color: var(--color-foreground);
    line-height: 1.15;
  }

  .product-info__price {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: -0.01em;
  }

  .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;
  }

  .product-info__stock {
    margin-bottom: 1.5rem;
  }

  .product-info__stock--in-stock {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #d4edda;
    color: #155724;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
  }

  .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: 1.0625rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Product Form */
  .product-form__variants {
    margin-bottom: 1.5rem;
  }

  .product-form__option {
    margin-bottom: 1.5rem;
  }

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

  .product-form__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .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);
  }

  .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-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__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;
    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;
  }

  .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%;
    padding: 1.25rem 2.5rem;
    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-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
  }

  .product-form__submit:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .product-form__submit:active:not(:disabled) {
    transform: translateY(-1px) scale(1);
  }

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

  .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: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
  }

  .product-tabs {
    max-width: 1000px;
    margin: 0 auto;
  }

  .product-tabs__header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
  }

  .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);
  }

  .product-tabs__panel-content p {
    margin: 0 0 1.5rem 0;
  }

  .product-description {
    max-width: 1000px;
    margin: 0 auto;
  }

  .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);
  }

  .product-description__content p {
    margin: 0 0 1.5rem 0;
  }

  /* 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;
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .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__icon {
    font-size: 1.125rem;
  }

  .trust-badge__text {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  /* 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: 4rem;
    padding-top: 4rem;
    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: 4rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
  }

  .product-page__related-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
    color: var(--color-foreground);
  }

  .product-page__related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .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);
  }

  .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 */
  .product-page {
    padding: 1.5rem var(--page-margin);
  }

  .product-page__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-gallery {
    position: static;
  }

  .product-gallery__main {
    border-radius: 16px;
  }

  .product-gallery__thumbnails {
    gap: 0.75rem;
  }

  .product-gallery__thumbnail {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }

  .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);
    }

    .product-page__container {
      gap: 4rem;
    }

    .product-gallery__main {
      border-radius: 24px;
    }

    .product-gallery__thumbnails {
      gap: 1rem;
    }

    .product-gallery__thumbnail {
      flex: 0 0 90px;
      width: 90px;
      height: 90px;
    }

    .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);
    }

    .product-page__container {
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
    }

    .product-gallery {
      position: sticky;
      top: 2rem;
    }

    .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: 1.5rem 1rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 1rem;
  }

  .quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--color-foreground);
  }

  .quick-link-card:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .quick-link-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.03);
  }

  .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 */
  .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;
    }
  }
/* 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: 2rem;
    background-color: var(--color-background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .testimonial-card__rating {
    display: flex;
    align-items: center;
  }

  .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;
  }

  .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;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .testimonial-card__author-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .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: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .trust-badge__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .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: 1rem;
    padding: 1rem;
    background-color: var(--color-background);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .value-prop-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .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 */