/** Shopify CDN: Minification failed

Line 2689:10 Expected identifier but found whitespace
Line 2689:12 Unexpected "{"
Line 2689:22 Expected ":"
Line 2689:57 Expected ":"
Line 2984:16 Expected identifier but found whitespace
Line 2984:18 Unexpected "{"
Line 2984:28 Expected ":"
Line 2984:63 Expected ":"
Line 3026:12 Expected identifier but found whitespace
Line 3026:14 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.error-404 {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }

  .error-404-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
  }

  .error-404-number {
    font-size: 120px;
    font-weight: 300;
    line-height: 1;
    color: #f0f0f0;
    margin-bottom: 0;
    letter-spacing: -0.05em;
  }

  .error-404-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
    margin-top: -40px;
  }

  .error-404-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .error-404-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .error-404-nav-link {
    display: block;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0px -2px 0px 1px inset #000000;
  }

  .error-404-nav-link:hover {
    background: #000000;
    color: #ffffff;
  }

  .error-404-collections {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
  }

  .error-404-collections-title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
  }

  .error-404-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404-collection-link {
    display: block;
    padding: 20px;
    background: #f8f8f8;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-align: center;
  }

  .error-404-collection-link:hover {
    background: #000000;
    color: #ffffff;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .error-404 {
      padding: 40px 20px;
      min-height: 50vh;
    }

    .error-404-number {
      font-size: 80px;
    }

    .error-404-title {
      font-size: 24px;
      margin-top: -20px;
    }

    .error-404-description {
      font-size: 16px;
      margin-bottom: 40px;
    }

    .error-404-navigation {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .error-404-nav-link {
      font-size: 12px;
      padding: 14px 20px;
    }

    .error-404-collections-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .error-404-collection-link {
      padding: 15px;
      font-size: 12px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 480px) {
    .error-404-number {
      font-size: 60px;
    }

    .error-404-title {
      font-size: 20px;
    }

    .error-404-description {
      font-size: 14px;
    }

    .error-404-collections-grid {
      grid-template-columns: 1fr;
    }
  }
/* Article Page Styles - Following Theme Design Patterns */
  .article-page {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  /* Back to Blog Link */
  .article-back-link {
    margin-bottom: 24px;
  }

  .article-back-link--bottom {
    margin-top: 48px;
    margin-bottom: 0;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
  }

  .article-back-button {
    color: #6b6b71;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
  }

  .article-back-button:hover {
    color: #181a29;
  }

  /* Article Header */
  .article-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
  }

  .article-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #181a29;
    letter-spacing: 0.01em;
  }

  .article-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #6b6b71;
    font-size: 14px;
    font-weight: 400;
  }

  .article-date,
  .article-author {
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .article-tag {
    background: rgba(24, 26, 41, 0.1);
    color: #181a29;
    padding: 4px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  /* Featured Image */
  .article-featured-image {
    margin-bottom: 48px;
    text-align: center;
  }

  .article-image {
    width: 100%;
    height: auto;
    max-width: 800px;
  }

  /* Article Content */
  .article-content-area {
    max-width: 100%;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 48px;
  }

  .article-content-area h1,
  .article-content-area h2,
  .article-content-area h3,
  .article-content-area h4,
  .article-content-area h5,
  .article-content-area h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #1d1d1d;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }

  .article-content-area h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .article-content-area h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .article-content-area h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .article-content-area h4,
  .article-content-area h5,
  .article-content-area h6 {
    font-size: 18px;
    line-height: 1.35;
  }

  .article-content-area p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333333;
  }

  .article-content-area ul,
  .article-content-area ol {
    margin: 24px 0;
    padding-left: 24px;
  }

  .article-content-area li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333333;
  }

  .article-content-area a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .article-content-area a:hover {
    color: #181a29;
  }

  .article-content-area blockquote {
    border-left: 4px solid #181a29;
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: #6b6b71;
  }

  .article-content-area img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
  }

  /* Table Styles */
  .article-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    table-layout: fixed;
  }

  .article-content-area thead {
    background: #f8f8f8;
  }

  .article-content-area th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #181a29;
    border-bottom: 2px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
  }

  .article-content-area th:last-child {
    border-right: none;
  }

  .article-content-area td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    color: #333333;
    line-height: 1.5;
  }

  .article-content-area td:last-child {
    border-right: none;
  }

  .article-content-area tbody tr:hover {
    background: #fafafa;
  }

  .article-content-area tbody tr:nth-child(even) {
    background: #fbfbfb;
  }

  .article-content-area tbody tr:nth-child(even):hover {
    background: #f5f5f5;
  }

  .article-content-area tbody tr:last-child td {
    border-bottom: none;
  }

  /* Table cell alignment options */
  .article-content-area td.text-center,
  .article-content-area th.text-center {
    text-align: center;
  }

  .article-content-area td.text-right,
  .article-content-area th.text-right {
    text-align: right;
  }

  /* Numeric data styling */
  .article-content-area td.numeric {
    text-align: right;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
  }

  /* Table caption styling */
  .article-content-area table caption {
    caption-side: bottom;
    margin-top: 12px;
    font-size: 12px;
    color: #6b6b71;
    font-style: italic;
    text-align: center;
  }



  /* Comments Section */
  .article-comments-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #e5e5e5;
  }

  .article-comments-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .article-comments-title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #181a29;
    letter-spacing: 0.01em;
    margin: 0;
  }

  /* Comments List */
  .article-comments-list {
    margin-bottom: 48px;
  }

  .article-comment {
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .article-comment:last-child {
    border-bottom: none;
  }

  .article-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-comment-author {
    font-size: 16px;
    font-weight: 500;
    color: #181a29;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
  }

  .article-comment-date {
    font-size: 12px;
    color: #6b6b71;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .article-comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
  }

  /* Comment Form */
  .article-comment-form {
    background: #f8f8f8;
    padding: 32px;
    margin-top: 48px;
  }

  .article-comment-form-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #181a29;
    letter-spacing: 0.01em;
    margin: 0 0 32px 0;
    text-align: center;
  }

  .article-comment-form-errors,
  .article-comment-form-success {
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
  }

  .article-comment-form-errors {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
  }

  .article-comment-form-success {
    background: #f0f9f0;
    color: #166534;
    border: 1px solid #bbf7d0;
  }

  .article-comment-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .article-comment-form-field--full {
    grid-column: 1 / -1;
  }

  .article-comment-form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #181a29;
    margin-bottom: 8px;
  }

  .required {
    color: #dc2626;
  }

  .article-comment-form-input,
  .article-comment-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.2s ease;
  }

  .article-comment-form-input:focus,
  .article-comment-form-textarea:focus {
    outline: none;
    border-color: #181a29;
  }

  .article-comment-form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .article-comment-form-button {
    background: #181a29;
    color: white;
    padding: 14px 32px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .article-comment-form-button:hover {
    background: #2a2d3a;
  }

  /* Pagination */
  .article-comments-pagination {
    margin-top: 32px;
    text-align: center;
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .article-container {
      padding: 30px 20px 40px;
    }

    .article-header {
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    .article-title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .article-meta {
      gap: 8px;
    }

    .article-featured-image {
      margin-bottom: 32px;
    }

    .article-content-area {
      margin-bottom: 32px;
    }

    .article-content-area h1 {
      font-size: 24px;
      margin-top: 32px;
    }

    .article-content-area h2 {
      font-size: 22px;
      margin-top: 28px;
    }

    .article-content-area h3 {
      font-size: 20px;
      margin-top: 24px;
    }

    .article-content-area p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .article-content-area li {
      font-size: 15px;
    }

    .article-comments-section {
      margin-top: 48px;
      padding-top: 32px;
    }

    .article-comment-form {
      padding: 24px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .article-container {
      padding: 20px 16px 30px;
    }

    .article-title {
      font-size: 24px;
      line-height: 28px;
    }

    .article-meta {
      font-size: 12px;
    }

    .article-tag {
      font-size: 11px;
      padding: 3px 8px;
    }

    .article-content-area h1 {
      font-size: 22px;
    }

    .article-content-area h2 {
      font-size: 20px;
    }

    .article-content-area h3 {
      font-size: 18px;
    }

    .article-content-area p,
    .article-content-area li {
      font-size: 14px;
      line-height: 1.6;
    }

    .article-content-area table {
      font-size: 12px;
      table-layout: auto;
      width: 100%;
    }

    .article-content-area th {
      font-size: 11px;
      padding: 8px 12px;
    }

    .article-content-area td {
      padding: 8px 12px;
    }

    /* Add horizontal scroll only if table content overflows */
    @media (max-width: 600px) {
      .article-content-area {
        overflow-x: auto;
      }
    }



    .article-comment-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .article-comment-form {
      padding: 20px;
    }

    .article-comment-form-fields {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .article-comment-form-button {
      padding: 12px 24px;
      font-size: 11px;
    }
  }
.blog-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header Styles */
  .blog-header {
    padding: 40px 0;
    text-align: center;
  }

  .blog-header-container {
    max-width: 690px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .blog-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 35.25px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #181a29;
    margin: 0;
    line-height: 43.2px;
  }

  .blog-description {
    margin-top: 20px;
    color: #6b6b71;
    font-size: 16px;
    line-height: 1.5;
  }

  /* Articles Grid */
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  /* Pagination */
  .blog-pagination {
    margin-top: 40px;
    text-align: center;
  }

  /* Responsive Design */
  @media screen and (max-width: 990px) {
    .articles-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .blog-title {
      font-size: 28px;
      line-height: 34px;
    }
  }

  @media screen and (max-width: 768px) {
    .blog-header {
      padding: 24px 0;
    }

    .blog-title {
      font-size: 24px;
      line-height: 30px;
    }
  }

  @media screen and (max-width: 590px) {
    .blog-page {
      padding: 0 10px;
    }

    .articles-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .blog-title {
      font-size: 20px;
      line-height: 26px;
    }
  }
.card-grid {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .card-grid-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .card-grid-title {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
  }

  .card-grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .card-grid-card {
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }

  .card-grid-card:hover {
    transform: translateY(-5px);
  }

  .card-grid-card-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .card-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-grid-card-text {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.05em;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .card-grid {
      margin-block-end: 80px;
    }

    .card-grid-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 60px;
    }

    .card-grid-cards {
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card-grid-card {
      max-width: 350px;
    }

    .card-grid-card-image {
      height: 280px;
      margin-bottom: 20px;
    }
  }
.collection-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header Styles */
  .collection-header {
    padding: 40px 0;
    text-align: center;
  }

  .collection-header-container {
    max-width: 690px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .collection-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11.781px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #181a29;
    margin: 0 0 5px 0;
    line-height: 18.85px;
  }

  .collection-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 35.25px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #181a29;
    margin: 0;
    line-height: 43.2px;
  }

  .collection-description {
    margin-top: 20px;
    color: #6b6b71;
    font-size: 16px;
    line-height: 1.5;
  }

  /* Responsive description visibility */
  .collection-description--desktop {
    display: block;
  }

  .collection-description--mobile {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .collection-header {
      padding: 24px 0;
    }

    .collection-description--desktop {
      display: none;
    }

    .collection-description--mobile {
      display: block;
    }
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Promotional Cards */
  .promotional-card {
    background: #f1eee9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    height: 410px; /* Same height as carousel card images */
  }

  .promo-card-gamme {
    flex-direction: column;
    gap: 20px;
  }

  .promo-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15.813px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
    color: #181a29;
    line-height: 22px;
    margin: 0;
  }

  .promo-button {
    background: #181a29;
    color: #ffffff;
    padding: 9.25px 12px 11.15px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12.188px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 10.4px;
    transition: background-color 0.2s ease;
  }

  .promo-button:hover {
    background: #2a2c3d;
  }

  .promo-card-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    color: #f8f6f4;
  }

  .promo-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 18px;
  }

  .promo-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15.297px;
    letter-spacing: 0.66px;
    text-transform: uppercase;
    line-height: 22px;
    margin: 0;
  }

  /* Responsive Design */
  @media screen and (max-width: 990px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .promotional-card {
      height: 350px; /* Match mobile image height */
    }

    .collection-title {
      font-size: 17.625px;
      line-height: 21.6px;
    }

    .promo-title {
      font-size: 20.813px;
      line-height: 28.8px;
    }

    .promo-hero-title {
      font-size: 20.25px;
      line-height: 28.8px;
    }
  }

  @media screen and (max-width: 768px) {
    .promotional-card {
      height: 300px;
    }
  }

  @media screen and (max-width: 590px) {
    .collection-page {
      padding: 0 10px;
    }

    .products-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .promotional-card {
      height: 280px;
    }
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.contact-collaboration {
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .contact-collaboration-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .contact-collaboration-column {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }

  .contact-collaboration-column--left {
    background: #f8f8f8;
  }

  .contact-collaboration-column--right {
    background: #ffffff;
  }

  .contact-collaboration-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
  }

  .contact-collaboration-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
    max-width: 400px;
    text-align: center;
  }

  .contact-collaboration-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 16px;
    transition: opacity 0.3s ease;
  }

  .contact-collaboration-link:hover {
    opacity: 0.7;
  }

  .contact-collaboration-button {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    border-radius: 0;
    min-height: 48px;
  }

  .contact-collaboration-button:hover {
    background: #000000;
    color: #ffffff;
  }

  .contact-collaboration-hours {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 16px;
  }

  .contact-collaboration-help-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
  }

  .contact-collaboration-help-link:hover {
    opacity: 0.7;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .contact-collaboration {
      margin-block-end: 80px;
    }

    .contact-collaboration-container {
      flex-direction: row;
      gap: 0;
    }

    .contact-collaboration-column {
      flex: 1;
      padding: 80px 60px;
      min-height: 500px;
    }

    .contact-collaboration-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 32px;
    }

    .contact-collaboration-description {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 40px;
      max-width: 500px;
    }

    .contact-collaboration-link {
      font-size: 18px;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .contact-collaboration-button {
      font-size: 16px;
      line-height: 1.2;
      padding: 18px 32px;
      margin-bottom: 32px;
    }

    .contact-collaboration-hours {
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .contact-collaboration-help-link {
      font-size: 16px;
      line-height: 1.3;
    }
  }

  /* Tablet Responsive */
  @media (max-width: 1100px) and (min-width: 768px) {
    .contact-collaboration-column {
      padding: 50px 40px;
    }

    .contact-collaboration-title {
      font-size: 36px;
      line-height: 1.2;
    }

    .contact-collaboration-description {
      font-size: 16px;
      line-height: 1.4;
    }
  }

  /* Small Mobile */
  @media (max-width: 600px) {
    .contact-collaboration-column {
      padding: 40px 20px;
      min-height: 350px;
    }

    .contact-collaboration-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .contact-collaboration-description {
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 24px;
      max-width: 350px;
    }

    .contact-collaboration-button {
      font-size: 13px;
      line-height: 1.2;
      padding: 14px 20px;
    }
  }
.contact-form-b2b {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .contact-form-b2b-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .contact-form-b2b-header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 32px;
  }

  .contact-form-b2b-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
  }

  .contact-form-b2b-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #666666;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-form-b2b-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-form-b2b-field {
    margin-bottom: 24px;
  }

  .contact-form-b2b-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1d1d1d;
    margin-bottom: 8px;
  }

  .contact-form-b2b-input,
  .contact-form-b2b-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    transition: border-color 0.3s ease;
    border-radius: 0;
  }

  .contact-form-b2b-input:focus,
  .contact-form-b2b-textarea:focus {
    outline: none;
    border-color: #000000;
  }

  .contact-form-b2b-input::placeholder,
  .contact-form-b2b-textarea::placeholder {
    color: #999999;
    font-style: italic;
  }

  .contact-form-b2b-textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-form-b2b-button {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border-radius: 0;
    min-height: 48px;
    width: 100%;
    box-shadow: 0px -2px 0px 1px inset #000000;
  }

  .contact-form-b2b-button:hover {
    background: #000000;
    color: #ffffff;
  }

  .contact-form-b2b-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .contact-form-b2b-success {
    background: #f0f8ff;
    border: 1px solid #4a90e2;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    border-radius: 0;
  }

  .contact-form-b2b-success-message {
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 0;
  }

  .contact-form-b2b-error {
    background: #fff5f5;
    border: 1px solid #e74c3c;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 0;
  }

  .contact-form-b2b-error-message {
    font-size: 14px;
    font-weight: 400;
    color: #e74c3c;
    margin: 0 0 8px 0;
  }

  .contact-form-b2b-required {
    color: #e74c3c;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .contact-form-b2b {
      margin-block-end: 80px;
    }

    .contact-form-b2b-container {
      padding: 60px 40px 80px;
    }

    .contact-form-b2b-header {
      margin-bottom: 64px;
      padding-bottom: 40px;
    }

    .contact-form-b2b-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .contact-form-b2b-description {
      font-size: 18px;
    }

    .contact-form-b2b-form {
      max-width: 700px;
    }

    .contact-form-b2b-field {
      margin-bottom: 32px;
    }

    .contact-form-b2b-label {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .contact-form-b2b-input,
    .contact-form-b2b-textarea {
      font-size: 18px;
      padding: 20px 24px;
    }

    .contact-form-b2b-button {
      font-size: 16px;
      padding: 20px 40px;
      width: auto;
      min-width: 200px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .contact-form-b2b-container {
      padding: 30px 20px 40px;
    }

    .contact-form-b2b-header {
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    .contact-form-b2b-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .contact-form-b2b-description {
      font-size: 15px;
    }

    .contact-form-b2b-field {
      margin-bottom: 20px;
    }

    .contact-form-b2b-input,
    .contact-form-b2b-textarea {
      font-size: 15px;
      padding: 14px 16px;
    }

    .contact-form-b2b-button {
      font-size: 13px;
      padding: 14px 24px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .contact-form-b2b-container {
      padding: 20px 16px 30px;
    }

    .contact-form-b2b-title {
      font-size: 24px;
      line-height: 28px;
    }

    .contact-form-b2b-description {
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-form-b2b-input,
    .contact-form-b2b-textarea {
      font-size: 14px;
      padding: 12px 16px;
    }
  }
.contact-form {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .contact-form-header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 32px;
  }

  .contact-form-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
  }

  .contact-form-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #666666;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-form-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-form-field {
    margin-bottom: 24px;
  }

  .contact-form-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1d1d1d;
    margin-bottom: 8px;
  }

  .contact-form-input,
  .contact-form-select,
  .contact-form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    transition: border-color 0.3s ease;
    border-radius: 0;
  }

  .contact-form-input:focus,
  .contact-form-select:focus,
  .contact-form-textarea:focus {
    outline: none;
    border-color: #000000;
  }

  .contact-form-input::placeholder,
  .contact-form-textarea::placeholder {
    color: #999999;
    font-style: italic;
  }

  .contact-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
  }

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

  .contact-form-button {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border-radius: 0;
    min-height: 48px;
    width: 100%;
    box-shadow: 0px -2px 0px 1px inset #000000;
  }

  .contact-form-button:hover {
    background: #000000;
    color: #ffffff;
  }

  .contact-form-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .contact-form-success {
    background: #f0f8ff;
    border: 1px solid #4a90e2;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    border-radius: 0;
  }

  .contact-form-success-message {
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 0;
  }

  .contact-form-error {
    background: #fff5f5;
    border: 1px solid #e74c3c;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 0;
  }

  .contact-form-error-message {
    font-size: 14px;
    font-weight: 400;
    color: #e74c3c;
    margin: 0 0 8px 0;
  }

  .contact-form-required {
    color: #e74c3c;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .contact-form {
      margin-block-end: 80px;
    }

    .contact-form-container {
      padding: 60px 40px 80px;
    }

    .contact-form-header {
      margin-bottom: 64px;
      padding-bottom: 40px;
    }

    .contact-form-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .contact-form-description {
      font-size: 18px;
    }

    .contact-form-form {
      max-width: 700px;
    }

    .contact-form-field {
      margin-bottom: 32px;
    }

    .contact-form-label {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
      font-size: 18px;
      padding: 20px 24px;
    }

    .contact-form-button {
      font-size: 16px;
      padding: 20px 40px;
      width: auto;
      min-width: 200px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .contact-form-container {
      padding: 30px 20px 40px;
    }

    .contact-form-header {
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    .contact-form-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .contact-form-description {
      font-size: 15px;
    }

    .contact-form-field {
      margin-bottom: 20px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
      font-size: 15px;
      padding: 14px 16px;
    }

    .contact-form-button {
      font-size: 13px;
      padding: 14px 24px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .contact-form-container {
      padding: 20px 16px 30px;
    }

    .contact-form-title {
      font-size: 24px;
      line-height: 28px;
    }

    .contact-form-description {
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
      font-size: 14px;
      padding: 12px 16px;
    }

    .contact-form-select {
      background-position: right 12px center;
      background-size: 14px;
      padding-right: 40px;
    }
  }
.content-with-image {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .content-with-image-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }

  .content-with-image-content {
    padding: 40px 20px;
    text-align: center;
    order: 1;
  }

  .content-with-image-content-inner {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .content-with-image-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    text-align: center;
    letter-spacing: 0.01em;
  }

  .content-with-image-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .content-with-image-button {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px -2px 0px 1px inset #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    letter-spacing: 0.05em;
    border-radius: 0;
  }

  .content-with-image-button:hover {
    background: #000000;
    color: #ffffff;
  }

  .content-with-image-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 500px;
    order: 2;
  }

  .content-with-image-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Desktop image styling */
  @media (min-width: 1101px) {
    .content-with-image-media img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
    }
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .content-with-image {
      margin-block-end: 80px;
    }

    .content-with-image-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1440px;
      min-height: 650px;
      padding: 0;
    }

    .content-with-image-content {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 60px;
    }

    .content-with-image-content-inner {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .content-with-image-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 20px;
      color: #000000;
      text-align: center;
    }

    .content-with-image-description {
      font-size: 18px;
      margin-bottom: 32px;
      max-width: 600px;
    }

    .content-with-image-media {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6.75px;
      height: 650px;
      overflow: hidden;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .content-with-image-media {
      height: 400px;
    }

    .content-with-image-content {
      padding: 40px 40px;
    }

    .content-with-image-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .content-with-image-description {
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 24px;
      max-width: 400px;
    }

    .content-with-image-button {
      font-size: 13px;
      padding: 14px 20px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .content-with-image-media {
      height: 350px;
    }

    .content-with-image-content {
      padding: 30px 20px;
    }

    .content-with-image-title {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 12px;
    }

    .content-with-image-description {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 20px;
      max-width: 350px;
    }
  }
.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;
  }
.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

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

  .faq__title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-foreground);
    margin-bottom: 1rem;
  }

  .faq__subtitle {
    font-size: 1.125rem;
    color: #6b6b71;
    font-weight: 300;
    line-height: 1.6;
  }

  .faq__categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .faq__category {
    border-bottom: 1px solid #e2e0d8;
    padding-bottom: 2rem;
  }

  .faq__category:last-child {
    border-bottom: none;
  }

  .faq__category-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .faq__question {
    border: 1px solid #e2e0d8;
    border-radius: 4px;
    overflow: hidden;
  }

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

  .faq__question-trigger:hover {
    background-color: #f9f9f9;
  }

  .faq__question-trigger:focus {
    outline: none;
    background-color: #f5f5f5;
  }

  .faq__question-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .faq__question-trigger[aria-expanded="true"] .faq__question-icon {
    transform: rotate(180deg);
  }

  .faq__answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b6b71;
    display: none;
  }

  .faq__question-trigger[aria-expanded="true"] + .faq__answer {
    display: block;
  }

  .faq__answer p {
    margin-bottom: 1rem;
  }

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

  .faq__answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .faq__answer li {
    margin-bottom: 0.5rem;
  }

  @media screen and (max-width: 768px) {
    .faq {
      padding: 1.5rem 1rem;
    }

    .faq__title {
      font-size: 2rem;
    }

    .faq__category-title {
      font-size: 1.25rem;
    }

    .faq__question-trigger {
      padding: 1rem 1.25rem;
      font-size: 0.9rem;
    }

    .faq__answer {
      padding: 0 1.25rem 1rem 1.25rem;
      font-size: 0.85rem;
    }
  }
.footer {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e5e5e5;
    padding: 40px 20px 20px;
  }

  .footer-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    grid-column: 1;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    grid-column: 1;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column-header {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    color: #000000;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    user-select: none;
  }

  .footer-column-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
  }

  .footer-column-toggle::before,
  .footer-column-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000000;
    transition: transform 0.3s ease;
  }

  .footer-column-toggle::before {
    width: 12px;
    height: 1px;
    transform: translate(-50%, -50%);
  }

  .footer-column-toggle::after {
    width: 1px;
    height: 12px;
    transform: translate(-50%, -50%);
  }

  .footer-column.active .footer-column-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .footer-column-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer-column.active .footer-column-content {
    max-height: 500px;
  }

  .footer-links {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-link {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #000000;
  }

  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
  }

  .footer-copyright {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: #666666;
  }

  .policies {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem !important;
  }

  .policies li {
    margin: 0;
  }

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

  .policies a:hover {
    text-decoration: underline;
  }

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

  .footer__copyright {
    text-align: center;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .footer {
      padding: 60px 40px 30px;
    }

    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
    }

    .footer-content::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      background-color: #e5e5e5;
      transform: translateX(-50%);
    }

    .footer-newsletter {
      grid-column: 1;
      justify-self: center;
      width: 80%;
      max-width: 400px;
    }

    .footer-columns {
      grid-column: 2;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      justify-self: start;
      justify-content: start;
      max-width: 100%;
    }

    .footer-column {
      min-width: 180px;
      max-width: 220px;
    }

    .footer-column:nth-child(n+4) {
      display: none;
    }

    .footer-column-header {
      cursor: default;
      padding: 0 0 24px 0;
      border-bottom: none;
      font-size: 14px;
    }

    .footer-column-toggle {
      display: none;
    }

    .footer-column-content {
      max-height: none;
      overflow: visible;
    }

    .footer-links {
      padding: 0;
      gap: 12px;
    }

    .footer-link {
      font-size: 14px;
      line-height: 20px;
    }

    .footer-bottom {
      margin-top: 60px;
      padding-top: 30px;
    }

    .footer-copyright {
      font-size: 14px;
      line-height: 20px;
    }
  }

  /* Tablet Responsive */
  @media (max-width: 1100px) and (min-width: 768px) {
    .footer {
      padding: 50px 30px 25px;
    }

    .footer-columns {
      gap: 25px;
    }

    .footer-column-header {
      font-size: 15px;
    }
  }

  /* Hide scrollbar for mobile accordions */
  .footer-column-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .footer-column-content::-webkit-scrollbar {
    display: none;
  }
  
  .footer-social-section {
    text-align: center;
    margin: 2rem 0;
  }
  
  .footer-social-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem 0;
    color: #000000;
  }
.header {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100;
  }

  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    width: 100%;
  }

  /* Three-column layout structure - containers are NOT clickable */
  .header-left,
  .header-center,
  .header-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .header-left {
    justify-content: flex-start;
  }

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

  .header-right {
    justify-content: flex-end;
  }

  /* Mobile toggle button - only button is clickable */
  .header-mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Logo - only link is clickable */
  .header-logo {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-logo-image {
    height: auto;
    width: {{ settings.logo_max_width | default: 200 }}px;
    max-height: 40px;
    object-fit: contain;
  }

  .header-logo-text {
    /* Inherits styles from .header-logo */
  }

  /* Cart button - only button is clickable */
  .header-cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    text-decoration: none;
    color: #000000;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Small mobile adjustments */
  @media (max-width: 480px) {
    .header-container {
      padding: 0 15px;
    }

    .header-logo {
      font-size: 16px;
    }

    .header-mobile-toggle,
    .header-cart {
      padding: 6px;
    }
  }

  .header-cart-icon {
    width: 24px;
    height: 24px;
  }

  .header-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    min-width: 18px;
  }

  .header-nav {
    display: none;
  }

  .header-nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-nav-link {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
  }

  .header-nav-link:hover {
    opacity: 0.7;
  }

  .header-mobile-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
  }

  .header-mobile-toggle-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000000;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  .header-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 200;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .header-mobile-menu.active {
    right: 0;
  }

  .header-mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
  }

  .header-mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-mobile-menu-close-icon {
    width: 24px;
    height: 24px;
    position: relative;
  }

  .header-mobile-menu-close-icon::before,
  .header-mobile-menu-close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #000000;
    transform-origin: center;
  }

  .header-mobile-menu-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

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

  .header-mobile-menu-nav {
    flex: 1;
    padding: 40px 20px;
  }

  .header-mobile-menu-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .header-mobile-menu-nav-link {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-mobile-menu-nav-link::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #666666;
    flex-shrink: 0;
  }

  .header-mobile-menu-footer {
    padding: 40px 20px;
    border-top: 1px solid #e5e5e5;
    background: #f8f8f8;
  }

  .header-mobile-menu-footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .header-mobile-menu-footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-mobile-menu-footer-link::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #000000;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }

  .header-mobile-menu-footer-link--account::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2ZM21 9V7L15 4L9 7V9C9 10.1 9.9 11 11 11V22H13V11C14.1 11 15 10.1 15 9Z' fill='black'/%3E%3C/svg%3E");
  }

  .header-mobile-menu-footer-link--store::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 7V10C2 10.55 2.45 11 3 11S4 10.55 4 10V9.4L12 5L20 9.4V10C20 10.55 20.45 11 21 11S22 10.55 22 10V7L12 2Z' fill='black'/%3E%3C/svg%3E");
  }

  .header-mobile-menu-footer-link--help::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18H13V16H11V18ZM12 2C6.48 2 2 6.48 2 12S6.48 22 12 22 22 17.52 22 12 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20ZM12 6C9.79 6 8 7.79 8 10H10C10 8.9 10.9 8 12 8S14 8.9 14 10C14 12 11 11.75 11 15H13C13 12.75 16 12.5 16 10C16 7.79 14.21 6 12 6Z' fill='black'/%3E%3C/svg%3E");
  }

  .header-mobile-menu-country {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .header {
      display: flex;
      flex-direction: column;
    }

    .header-container {
      padding: 20px 40px 0;
      min-height: 60px;
    }

    .header-logo {
      font-size: 20px;
    }

    .header-logo-image {
      max-height: 50px;
      max-width: {{ settings.logo_max_width | default: 200 }}px;
    }

    /* Hide mobile toggle on desktop but maintain space for layout */
    .header-mobile-toggle {
      visibility: hidden;
      pointer-events: none;
    }

    /* Hide mobile menu completely on desktop */
    .header-mobile-menu,
    .header-overlay {
      display: none !important;
    }

    .header-nav {
      display: block;
      padding: 20px 40px;
    }

    .header-nav-list {
      justify-content: center;
    }

    .header-nav-link {
      font-size: 14px;
      line-height: 20px;
    }
  }

  /* Tablet Responsive */
  @media (max-width: 1100px) and (min-width: 768px) {
    .header-container {
      padding: 0 30px;
      min-height: 70px;
    }

    .header-logo {
      font-size: 19px;
    }

    .header-logo-image {
      width: {{ settings.logo_max_width | default: 200 }}px;
      max-height: 45px;
      height: auto;
    }

    .header-mobile-toggle {
      /* Show mobile toggle on tablet */
      display: inline-flex;
    }
  }
.hero-banner {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .hero-banner-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-banner-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 468px;
    margin-bottom: 30px;
  }

  .hero-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-banner-content {
    padding: 0 20px 30px;
    text-align: center;
  }

  .hero-banner-content-inner {
    max-width: 100%;
    width: 100%;
  }

  .hero-banner-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1d1d1d;
    text-align: center;
    letter-spacing: 0.01em;
  }

  .hero-banner-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-banner-button {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px -2px 0px 1px inset #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    letter-spacing: 0.05em;
    border-radius: 0;
  }

  .hero-banner-button:hover {
    background: #000000;
    color: #ffffff;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .hero-banner-container {
      flex-direction: row;
      max-width: 1360px;
      align-items: center;
      min-height: 500px;
      padding: 0 20px;
    }

    .hero-banner-media {
      flex: 1;
      max-width: 825px;
      border-radius: 6.75px;
      height: 464px;
      margin-bottom: 0;
      margin-right: 59px;
    }

    .hero-banner-content {
      flex: 1;
      max-width: 495px;
      padding: 143px 52px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-banner-content-inner {
      max-width: 390px;
    }

    .hero-banner-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 16px;
      color: #000000;
    }

    .hero-banner-description {
      font-size: 18px;
      max-width: 500px;
      margin-bottom: 32px;
    }
  }

  /* Tablet Responsive - Not needed with new breakpoint */

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .hero-banner {
      margin-block-end: 80px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .hero-banner-media {
      height: 400px;
      margin-bottom: 30px;
    }

    .hero-banner-content {
      padding: 0 40px 40px;
    }

    .hero-banner-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .hero-banner-description {
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 20px;
      max-width: 350px;
    }

    .hero-banner-button {
      font-size: 13px;
      padding: 14px 20px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .hero-banner-media {
      height: 300px;
      margin-bottom: 20px;
    }

    .hero-banner-content {
      padding: 0 20px 20px;
    }

    .hero-banner-title {
      font-size: 28px;
      line-height: 32px;
    }

    .hero-banner-description {
      font-size: 14px;
      line-height: 20px;
      max-width: 350px;
    }
  }
.newsletter-help {
    background-color: rgb(var(--color-background));
    padding: 4rem 0;
    border-top: 3px solid rgb(var(--color-foreground));
  }

  .newsletter-help__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .newsletter-help__newsletter,
  .newsletter-help__help {
    text-align: center;
  }

  .newsletter-help__heading {
    font-family: var(--font-heading-family, inherit);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgb(var(--color-foreground));
    line-height: 1.2;
  }

  .newsletter-help__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground));
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .newsletter-help__form {
    margin-bottom: 2rem;
  }

  .newsletter-help__label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground));
    margin-bottom: 1rem;
    display: block;
  }

  .newsletter-help__input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .newsletter-help__input {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(var(--color-foreground), 0.2);
    background: transparent;
    font-size: 0.9rem;
    color: rgb(var(--color-foreground));
    text-align: center;
    transition: border-color 0.3s ease;
    border-radius: 0;
  }

  .newsletter-help__input:focus {
    outline: none;
    border-color: rgb(var(--color-foreground));
  }

  .newsletter-help__input::placeholder {
    color: rgba(var(--color-foreground), 0.6);
    font-style: italic;
  }

  .newsletter-help__submit {
    background: transparent;
    color: rgb(var(--color-foreground));
    border: 2px solid rgb(var(--color-foreground));
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
  }

  .newsletter-help__submit:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
  }

  .newsletter-help__success {
    background: rgba(var(--color-success, 0), 0.1);
    color: rgb(var(--color-success, 0));
    padding: 1rem;
    border: 1px solid rgba(var(--color-success, 0), 0.3);
    margin-bottom: 1rem;
  }

  .newsletter-help__error {
    color: rgb(var(--color-error, 255));
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
  }

  .newsletter-help__contact-btn {
    background: transparent;
    color: rgb(var(--color-foreground));
    border: 2px solid rgb(var(--color-foreground));
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border-radius: 0;
  }

  .newsletter-help__contact-btn:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
  }

  .newsletter-help__contact-info {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground));
  }

  .newsletter-help__phone {
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .newsletter-help__phone a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .newsletter-help__phone a:hover {
    opacity: 0.7;
  }

  .newsletter-help__hours {
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .newsletter-help__help-link {
    margin-top: 1rem;
  }

  .newsletter-help__link {
    color: rgb(var(--color-foreground));
    text-decoration: underline;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
  }

  .newsletter-help__link:hover {
    opacity: 0.7;
  }

  .loading-overlay__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .spinner {
    width: 20px;
    height: 20px;
    animation: rotator 1.4s linear infinite;
  }

  .spinner .path {
    stroke: currentColor;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.4s ease-in-out infinite;
  }

  .hidden {
    display: none;
  }

  @keyframes rotator {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(270deg); }
  }

  @keyframes dash {
    0% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: -35; stroke-dasharray: 90, 150; }
    100% { stroke-dashoffset: -124; }
  }

  /* Responsive Design */
  @media screen and (max-width: 989px) {
    .newsletter-help__container {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }
    
    .newsletter-help__heading {
      font-size: 1.6rem;
    }
  }

  @media screen and (max-width: 749px) {
    .newsletter-help {
      padding: 3rem 0;
    }

    .newsletter-help__container {
      padding: 0 1rem;
      gap: 3rem;
    }

    .newsletter-help__heading {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .newsletter-help__description {
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .newsletter-help__input-wrapper {
      max-width: 100%;
    }

    .newsletter-help__input,
    .newsletter-help__submit,
    .newsletter-help__contact-btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.75rem;
    }
  }

  @media screen and (max-width: 479px) {
    .newsletter-help__container {
      gap: 2.5rem;
    }

    .newsletter-help__input-wrapper {
      gap: 0.75rem;
    }

    .newsletter-help__heading {
      font-size: 1.2rem;
    }
  }
.page-content {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .page-header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 32px;
  }

  .page-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
  }

  .page-content-area {
    max-width: 100%;
    line-height: 1.7;
    color: #333333;
  }

  .page-content-area h1,
  .page-content-area h2,
  .page-content-area h3,
  .page-content-area h4,
  .page-content-area h5,
  .page-content-area h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #1d1d1d;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }

  .page-content-area h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .page-content-area h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .page-content-area h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .page-content-area h4,
  .page-content-area h5,
  .page-content-area h6 {
    font-size: 18px;
    line-height: 1.35;
  }

  .page-content-area p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333333;
  }

  .page-content-area ul,
  .page-content-area ol {
    margin: 24px 0;
    padding-left: 24px;
  }

  .page-content-area li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333333;
  }

  .page-content-area a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .page-content-area a:hover {
    color: #666666;
  }

  .page-content-area strong {
    font-weight: 400;
    color: #1d1d1d;
  }

  .page-content-area em {
    font-style: italic;
  }

  .page-content-area blockquote {
    border-left: 3px solid #e5e5e5;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #666666;
  }

  .page-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
  }

  .page-content-area th,
  .page-content-area td {
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    text-align: left;
  }

  .page-content-area th {
    background-color: #f8f8f8;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .page-content {
      margin-block-end: 80px;
    }

    .page-container {
      padding: 60px 40px 80px;
    }

    .page-header {
      margin-bottom: 64px;
      padding-bottom: 40px;
    }

    .page-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .page-content-area h1 {
      font-size: 36px;
      margin-top: 56px;
      margin-bottom: 24px;
    }

    .page-content-area h2 {
      font-size: 30px;
      margin-top: 48px;
      margin-bottom: 20px;
    }

    .page-content-area h3 {
      font-size: 24px;
      margin-top: 40px;
      margin-bottom: 18px;
    }

    .page-content-area p {
      font-size: 18px;
      margin-bottom: 28px;
    }

    .page-content-area li {
      font-size: 18px;
      margin-bottom: 16px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .page-container {
      padding: 30px 20px 40px;
    }

    .page-header {
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    .page-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .page-content-area h1 {
      font-size: 24px;
      margin-top: 32px;
      margin-bottom: 16px;
    }

    .page-content-area h2 {
      font-size: 22px;
      margin-top: 28px;
      margin-bottom: 14px;
    }

    .page-content-area h3 {
      font-size: 20px;
      margin-top: 24px;
      margin-bottom: 12px;
    }

    .page-content-area p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .page-content-area li {
      font-size: 15px;
      margin-bottom: 10px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .page-container {
      padding: 20px 16px 30px;
    }

    .page-title {
      font-size: 24px;
      line-height: 28px;
    }

    .page-content-area h1 {
      font-size: 22px;
    }

    .page-content-area h2 {
      font-size: 20px;
    }

    .page-content-area h3 {
      font-size: 18px;
    }

    .page-content-area p,
    .page-content-area li {
      font-size: 14px;
      line-height: 1.6;
    }

    .page-content-area ul,
    .page-content-area ol {
      padding-left: 20px;
    }

    .page-content-area blockquote {
      padding-left: 16px;
      margin: 24px 0;
    }

    .page-content-area table {
      font-size: 12px;
    }

    .page-content-area th,
    .page-content-area td {
      padding: 8px 12px;
    }
  }
.simple-carousel {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .simple-carousel__header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 714px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }

  .simple-carousel__heading {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.01em;
  }

  .simple-carousel__description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    margin: 0;
  }

  .simple-carousel__container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: visible;
    position: relative;
  }

  .simple-carousel__track {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .simple-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .simple-carousel__track:active {
    cursor: grabbing;
  }

  .simple-carousel__card {
    flex: 0 0 327.5px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .simple-carousel__card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .simple-carousel__card-link:hover {
    transform: translateY(-2px);
  }

  .simple-carousel__image-container {
    position: relative;
    width: 100%;
    height: 410px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .simple-carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .simple-carousel__image--primary {
    opacity: 1;
    z-index: 1;
  }

  .simple-carousel__image--hover {
    opacity: 0;
    z-index: 2;
  }

  .simple-carousel__image-container:hover .simple-carousel__image--primary {
    opacity: 0;
  }

  .simple-carousel__image-container:hover .simple-carousel__image--hover {
    opacity: 1;
  }

  .simple-carousel__placeholder {
    width: 100%;
    height: 100%;
    color: #cccccc;
  }

  .simple-carousel__badge {
    position: absolute;
    top: 13px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    z-index: 10;
  }

  .simple-carousel__badge--custom {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
  }

  .simple-carousel__content {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .simple-carousel__cta-container {
    padding: 0 10px 10px 10px;
    /* Remove margin-top: auto - this was causing the huge gap */
  }

  .simple-carousel__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
  }

  .simple-carousel__card-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #5f5f5f;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
  }

  .simple-carousel__info {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
  }

  .simple-carousel__price {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
  }

  .simple-carousel__cta {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 0;
  }

  .simple-carousel__cta:hover {
    background: #333333;
    color: #ffffff;
  }

  /* Navigation Arrows */
  .simple-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000000;
    backdrop-filter: blur(10px);
  }

  .simple-carousel__nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
  }

  .simple-carousel__nav:disabled {
    opacity: 0 !important;
    visibility: hidden !important;
    cursor: not-allowed;
  }

  .simple-carousel__nav--prev {
    left: 10px;
  }

  .simple-carousel__nav--next {
    right: 10px;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .simple-carousel {
      margin-block-end: 80px;
    }
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .simple-carousel__heading {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .simple-carousel__description {
      font-size: 18px;
    }
  }

  /* Show arrows on section hover - Desktop only */
  @media screen and (min-width: 769px) {
    .simple-carousel:hover .simple-carousel__nav:not(:disabled) {
      opacity: 1;
      visibility: visible;
    }
    
    /* Also show arrows if container is being hovered directly */
    .simple-carousel__container:hover .simple-carousel__nav:not(:disabled) {
      opacity: 1;
      visibility: visible;
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .simple-carousel__container {
      padding: 0 30px;
    }
    
    .simple-carousel__card {
      flex: 0 0 300px;
    }
  }

  @media screen and (max-width: 900px) {
    .simple-carousel__card {
      flex: 0 0 280px;
    }
    
    .simple-carousel__image-container {
      height: 350px;
    }
  }

  @media screen and (max-width: 768px) {
    /* Disable hover image on mobile for better UX */
    .simple-carousel__image--hover {
      display: none;
    }
    
    .simple-carousel__image-container:hover .simple-carousel__image--primary {
      opacity: 1;
    }
    
    .simple-carousel__header {
      margin-bottom: 30px;
      padding: 0 15px;
    }
    
    .simple-carousel__heading {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    
    .simple-carousel__description {
      font-size: 14px;
      line-height: 1.4;
    }
    
    .simple-carousel__container {
      padding: 0 15px;
    }
    
    .simple-carousel__card {
      flex: 0 0 260px;
    }
    
    .simple-carousel__image-container {
      height: 300px;
    }
  }

  @media screen and (max-width: 480px) {
    .simple-carousel__card {
      flex: 0 0 240px;
    }
    
    .simple-carousel__image-container {
      height: 280px;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.sitemap {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .sitemap-header {
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 32px;
  }

  .sitemap-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
  }

  .sitemap-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
  }

  .sitemap-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sitemap-section {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 32px;
  }

  .sitemap-section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1d1d1d;
    letter-spacing: 0.01em;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 16px;
  }

  .sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sitemap-item {
    margin: 0;
  }

  .sitemap-link {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
  }

  .sitemap-link:hover {
    color: #000000;
    border-bottom-color: #e5e5e5;
  }

  .sitemap-count {
    font-size: 12px;
    color: #999999;
    font-weight: 300;
    margin-left: 8px;
  }

  .sitemap-meta {
    font-size: 12px;
    color: #999999;
    font-weight: 300;
    display: block;
    margin-top: 2px;
  }

  /* Empty state */
  .sitemap-empty {
    text-align: center;
    padding: 32px;
    color: #666666;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .sitemap {
      margin-block-end: 80px;
    }

    .sitemap-container {
      padding: 60px 40px 80px;
    }

    .sitemap-header {
      margin-bottom: 64px;
      padding-bottom: 40px;
    }

    .sitemap-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .sitemap-description {
      font-size: 18px;
    }

    .sitemap-content {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .sitemap-section {
      padding: 40px;
    }

    .sitemap-section-title {
      font-size: 24px;
      margin-bottom: 32px;
      padding-bottom: 20px;
    }

    .sitemap-list {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .sitemap-link {
      font-size: 16px;
      padding: 12px 0;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .sitemap-container {
      padding: 30px 20px 40px;
    }

    .sitemap-header {
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    .sitemap-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .sitemap-description {
      font-size: 15px;
    }

    .sitemap-content {
      gap: 32px;
    }

    .sitemap-section {
      padding: 24px;
    }

    .sitemap-section-title {
      font-size: 18px;
      margin-bottom: 20px;
      padding-bottom: 12px;
    }
  }

  /* Small Mobile Devices */
  @media (max-width: 600px) {
    .sitemap-container {
      padding: 20px 16px 30px;
    }

    .sitemap-title {
      font-size: 24px;
      line-height: 28px;
    }

    .sitemap-description {
      font-size: 14px;
      line-height: 1.6;
    }

    .sitemap-section {
      padding: 20px;
    }

    .sitemap-section-title {
      font-size: 16px;
    }

    .sitemap-link {
      font-size: 13px;
    }
  }
.split-content {
    font-family: 'Inter', sans-serif;
    width: 100%;
  }

  .split-content-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }

  .split-content-content {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .split-content-content-inner {
    max-width: 400px;
    width: 100%;
    text-align: center;
  }

  .split-content-eyebrow {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3;
    color: #666666;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }

  .split-content-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }

  .split-content-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
  }

  .split-content-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.3s ease;
  }

  .split-content-link:hover {
    opacity: 0.7;
  }

  .split-content-media {
    width: 100%;
    height: 400px;
    overflow: hidden;
    order: 2;
  }

  .split-content-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .split-content-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1440px;
      min-height: 700px;
    }

    .split-content-content {
      padding: 80px 60px;
      order: 2;
    }

    .split-content-content-inner {
      max-width: 450px;
    }

    .split-content-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .split-content-description {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 32px;
    }

    .split-content-link {
      font-size: 18px;
      line-height: 1.3;
    }

    .split-content-media {
      height: 700px;
      order: 1;
    }
  }

  /* Tablet Responsive */
  @media (max-width: 1100px) and (min-width: 768px) {
    .split-content-content {
      padding: 60px 50px;
    }

    .split-content-media {
      height: 500px;
    }

    .split-content-title {
      font-size: 36px;
      line-height: 1.2;
    }

    .split-content-description {
      font-size: 16px;
      line-height: 1.4;
    }
  }

  /* Small Mobile */
  @media (max-width: 600px) {
    .split-content-content {
      padding: 40px 20px;
    }

    .split-content-media {
      height: 350px;
    }

    .split-content-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .split-content-description {
      font-size: 14px;
      line-height: 1.4;
      margin-bottom: 20px;
    }
  }
.video-section {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-block-end: 32px;
  }

  .video-section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .video-section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 714px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-section-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1d1d1d;
    text-align: center;
    letter-spacing: 0.01em;
  }

  .video-section-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 0;
    text-align: center;
  }

  .video-section-player {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .video-section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-section-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .video-section-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .video-section-play-button:hover {
    background: #000000;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .video-section-play-button:hover::before {
    border-left-color: #ffffff;
  }

  .video-section-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
    transition: border-left-color 0.3s ease;
  }

  .video-section-video.playing {
    z-index: 3;
  }

  .video-section-play-button.hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* Desktop Responsive */
  @media (min-width: 1101px) {
    .video-section {
      margin-block-end: 80px;
    }

    .video-section-container {
      padding: 0 40px;
    }

    .video-section-header {
      margin-bottom: 60px;
    }

    .video-section-title {
      font-size: 48px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .video-section-description {
      font-size: 18px;
    }

    .video-section-player {
      height: 600px;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 6.75px;
    }

    .video-section-play-button {
      width: 100px;
      height: 100px;
    }

    .video-section-play-button::before {
      border-left: 25px solid #000000;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      margin-left: 5px;
    }
  }

  /* Mobile Responsive */
  @media (max-width: 1100px) {
    .video-section-container {
      padding: 0 20px;
    }

    .video-section-header {
      margin-bottom: 30px;
    }

    .video-section-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .video-section-description {
      font-size: 14px;
      line-height: 1.4;
    }

    .video-section-player {
      height: 350px;
    }
  }

/* 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 */
/* Article Card Styles - Adapted from Product Card */
  .article-card {
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .article-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex: 1;
  }

  .article-card__image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 0;
  }

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

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

  .article-card__placeholder {
    width: 100%;
    height: 100%;
    color: #cccccc;
    background: #f5f5f5;
  }

  .article-card__date-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    z-index: 10;
  }

  .article-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    z-index: 10;
  }

  .article-card__badge--custom {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
  }

  .article-card__content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .article-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #181a29;
    text-transform: none;
    letter-spacing: normal;
  }

  .article-card__excerpt {
    color: #6b6b71;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
  }

  .article-card__author {
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    margin: 0;
  }

  .article-card__cta-container {
    padding: 0 0 20px 0;
  }

  .article-card__cta {
    display: block;
    width: 100%;
    background: #000000;
    color: white;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
  }

  .article-card__cta:hover {
    background: #2a2d3a;
  }

  /* Responsive Design */
  @media screen and (max-width: 990px) {
    .article-card__image-container {
      height: 200px;
    }

    .article-card__content {
      padding: 15px 0;
    }

    .article-card__cta-container {
      padding: 0 0 15px 0;
    }
  }

  @media screen and (max-width: 590px) {
    .article-card__image-container {
      height: 240px;
    }

    .article-card__title {
      font-size: 16px;
    }

    .article-card__excerpt {
      font-size: 13px;
    }
  }
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.15s ease,
      visibility 0.15s ease;
  }

  .cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.15s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .cart-drawer.active {
    transform: translateX(0);
  }

  .cart-drawer__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }

  .cart-drawer__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #000;
    text-transform: uppercase;
  }

  .cart-drawer__count {
    margin-left: 4px;
  }

  .cart-drawer__close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    transition: color 0.1s ease;
    border-radius: 4px;
  }

  .cart-drawer__close:hover {
    color: #000;
    background: #f8f8f8;
  }

  .cart-drawer__body {
    flex: 1;
    padding: 0 24px;
    overflow-y: auto;
    min-height: 0;
  }

  .cart-drawer__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
  }

  .cart-drawer__spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #f0f0f0;
    border-left: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
  }

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

  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
  }

  .cart-drawer__empty-icon {
    margin-bottom: 24px;
    color: #ccc;
  }

  .cart-drawer__empty h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #000;
  }

  .cart-drawer__empty p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.4;
  }

  .cart-drawer__continue-shopping {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 12px 24px;
    transition: all 0.15s ease;
    cursor: pointer;
  }

  .cart-drawer__continue-shopping:hover {
    background: #000;
    color: #fff;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-item__image-link {
    display: block;
  }

  .cart-item__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background: #f8f8f8;
  }

  .cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .cart-item__title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 4px;
    color: #000;
    line-height: 1.3;
  }

  .cart-item__variant {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0 0 12px;
  }

  .cart-item__pre-order-tag {
    display: inline-block;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0px 8px;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
  }

  .cart-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cart-item__qty-button {
    background: #f8f8f8;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: background 0.1s ease;
  }

  .cart-item__qty-button:hover:not(:disabled) {
    background: #e8e8e8;
  }

  .cart-item__qty-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cart-item__qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: transparent;
  }

  .cart-item__price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .cart-item__price-current {
    font-weight: 500;
  }

  .cart-item__price-original {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
  }

  .cart-item__remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    transition: color 0.1s ease;
  }

  .cart-item__remove:hover {
    color: #c62828;
  }

  .cart-drawer__footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
  }

  .cart-drawer__checkout-section {
    text-align: center;
  }

  .cart-drawer__checkout-cta {
    display: block;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 24px;
    margin-bottom: 16px;
    transition: background 0.3s ease;
  }

  .cart-drawer__checkout-cta:hover {
    background: #333;
  }

  .checkout-cta__text {
    margin-right: 8px;
  }

  .cart-drawer__return-policy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0 0 12px;
  }

  .cart-drawer__contact-info {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }

  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
  }

  .cart-drawer__subtotal-amount {
    font-weight: 500;
  }

  .cart-drawer__shipping-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0 0 24px;
    text-align: center;
  }

  .cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cart-drawer__continue {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .cart-drawer__continue:hover {
    border-color: #999;
    color: #000;
  }

  .cart-drawer__checkout {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    transition: all 0.15s ease;
  }

  .cart-drawer__checkout:hover {
    background: #333;
    border-color: #333;
  }

  @media screen and (max-width: 767px) {
    .cart-drawer {
      max-width: 100%;
    }

    .cart-drawer__header,
    .cart-drawer__body,
    .cart-drawer__footer {
      padding-left: 20px;
      padding-right: 20px;
    }

    .cart-item__image {
      width: 70px;
      height: 70px;
    }
  }
/* Complementary Products in Cart */
  .complementary-products-wrapper {
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
  }

  .complementary-products-header {
    margin-bottom: 16px;
  }

  .complementary-products-heading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #181a29;
    margin: 0;
    letter-spacing: 0.5px;
  }

  /* Compact list layout */
  .complementary-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .complementary-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    background: #fafafa;
    transition: background 0.2s ease;
  }

  .complementary-product-item:hover {
    background: #f5f5f5;
  }

  /* Link area for product card */
  .complementary-product-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    transition: opacity 0.2s ease;
  }

  .complementary-product-link:hover {
    opacity: 0.8;
  }

  /* Product image */
  .complementary-product-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .complementary-product-placeholder {
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  /* Product info */
  .complementary-product-info {
    flex: 1;
    min-width: 0;
  }

  .complementary-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #181a29;
    margin: 0 0 2px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .complementary-product-variant {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #666;
    margin: 0 0 2px 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .complementary-product-price {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin: 0;
  }

  /* Add to cart button */
  .complementary-product-add-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .complementary-product-add-btn:hover:not(:disabled) {
    background: #333;
    transform: scale(1.05);
  }

  .complementary-product-add-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
  }

  .complementary-product-add-btn:active {
    transform: scale(0.95);
  }

  /* Spin animation for loading */
  .spin {
    animation: spin 1s linear infinite;
  }

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

  /* Loading state */
  .complementary-products:not(:defined) {
    visibility: hidden;
  }

  .complementary-products:defined {
    visibility: visible;
  }

  /* Mobile responsive */
  @media screen and (max-width: 400px) {
    .complementary-product-item {
      gap: 10px;
      padding: 6px;
    }

    .complementary-product-link {
      gap: 10px;
    }

    .complementary-product-image {
      width: 40px;
      height: 40px;
    }

    .complementary-product-title {
      font-size: 12px;
    }

    .complementary-product-variant {
      font-size: 10px;
    }

    .complementary-product-price {
      font-size: 11px;
    }

    .complementary-product-add-btn {
      width: 28px;
      height: 28px;
    }
  }
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
.newsletter {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .newsletter__title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    color: #000000;
    margin: 0 0 16px 0;
    letter-spacing: 0.02em;
  }

  .newsletter__description {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #666666;
    margin: 0 0 24px 0;
  }

  .newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .newsletter__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #000000;
    transition: border-color 0.3s ease;
  }

  .newsletter__input:focus {
    outline: none;
    border-color: #000000;
  }

  .newsletter__input::placeholder {
    color: #999999;
  }

  .newsletter__button {
    width: 100%;
    padding: 12px 16px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .newsletter__button:hover {
    background: #333333;
  }

  .newsletter__button:disabled {
    background: #cccccc;
    cursor: not-allowed;
  }

  .newsletter__message {
    font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
    padding: 8px 0;
  }

  .newsletter__message--success {
    color: #27AE60;
    display: block;
  }

  .newsletter__message--error {
    color: #E74C3C;
    display: block;
  }

  .newsletter__consent {
    font-size: 11px;
    line-height: 16px;
    color: #999999;
    margin-top: 8px;
  }

  .newsletter__consent a {
    color: #000000;
    text-decoration: underline;
  }

  @media (min-width: 1101px) {
    .newsletter {
      width: 100%;
      max-width: 100%;
    }

    .newsletter__title {
      margin-bottom: 20px;
    }

    .newsletter__description {
      margin-bottom: 28px;
    }

    .newsletter__form {
      gap: 16px;
    }
  }
/* Notify messages */
  .product-page__notify-messages {
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
  }

  .product-page__notify-message {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .product-page__notify-message--success {
    background: #eaf8f0;
    border: 1px solid #27ae60;
    color: #27ae60;
  }

  .product-page__notify-message--error {
    background: #ffeae9;
    border: 1px solid #e74c3c;
    color: #e74c3c;
  }

  .product-page__notify-message--loading {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Back-in-Stock Modal */
  .product-page__notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .product-page__notify-modal[aria-hidden="false"] {
    display: flex;
  }

  .product-page__notify-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }

  .product-page__notify-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .product-page__notify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
  }

  .product-page__notify-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;
  }

  .product-page__notify-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .product-page__notify-close:hover {
    background: #f5f5f5;
    color: #000;
  }

  .product-page__notify-body {
    padding: 0 1.5rem 1.5rem;
  }

  .product-page__notify-body > p {
    margin: 0 0 1.5rem;
    color: #666;
    line-height: 1.5;
  }

  .product-page__notify-field {
    margin-bottom: 1.5rem;
  }

  .product-page__notify-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
    font-size: 0.9rem;
  }

  .product-page__notify-field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
  }

  .product-page__notify-field input:focus {
    outline: none;
    border-color: #000;
  }

  .product-page__notify-field input.error {
    border-color: #ff4444;
  }

  .product-page__notify-error {
    margin-top: 0.5rem;
    color: #ff4444;
    font-size: 0.8rem;
    display: none;
  }

  .product-page__notify-error.show {
    display: block;
  }

  .product-page__notify-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
  }

  .product-page__notify-cancel {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
  }

  .product-page__notify-cancel:hover {
    border-color: #999;
    color: #000;
  }

  .product-page__notify-submit {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
  }

  .product-page__notify-submit:hover:not(:disabled) {
    background: #333;
  }

  .product-page__notify-submit:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
  }

  .product-page__notify-success {
    text-align: center;
  }

  .product-page__notify-success-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
  }

  .product-page__notify-success h4 {
    margin: 0 0 0.5rem;
    color: #000;
    font-size: 0.875rem;
  }

  .product-page__notify-success p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
  }
/* Product Accordions */
  .product-page__accordions {
    margin-top: 2rem;
    border-top: 1px solid #e2e0d8;
  }

  .product-page__accordion {
    border-bottom: 1px solid #e2e0d8;
  }

  .product-page__accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 300;
    color: #181a29;
    letter-spacing: 0.28px;
    transition: color 0.3s ease;
    text-align: left;
  }

  .product-page__accordion-trigger:hover {
    color: #666;
  }

  .product-page__accordion-trigger:focus {
    outline: none;
  }

  .product-page__accordion-trigger:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .product-page__accordion-title {
    font-size: 0.875rem;
    font-weight: 300;
    color: inherit;
    letter-spacing: 0.28px;
  }

  .product-page__accordion-icon {
    width: 16px;
    height: 16px;
    color: #181a29;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .product-page__accordion-trigger[aria-expanded="true"] .product-page__accordion-icon {
    transform: rotate(180deg);
  }

  .product-page__accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-page__accordion-content[data-expanded="true"] {
    max-height: var(--accordion-height, 500px);
    opacity: 1;
    padding-bottom: 1.5rem;
  }

  .product-page__accordion-inner {
    font-size: 0.8125rem; /* 13px */
    color: #6b6b71;
    line-height: 1.5;
    padding-top: 0.5rem;
  }

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

  .product-page__accordion-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6b6b71;
  }

  .product-page__accordion-bullet {
    width: 3px;
    height: 3px;
    background: #6b6b71;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
  }

  .product-page__accordion-text {
    flex: 1;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6b6b71;
  }

  .product-page__accordion-highlight {
    font-weight: 500;
    color: #6b6b71;
  }

  /* Delivery Information Styles */
  .product-page__delivery-info {
    color: #6b6b71;
  }

  .product-page__delivery-description {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #6b6b71;
  }

  .product-page__delivery-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-page__delivery-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6b6b71;
  }

  .product-page__delivery-icon {
    width: 20px;
    height: 20px;
    color: var(--color-foreground, #333);
    flex-shrink: 0;
    margin-top: 0.125rem;
  }

  .product-page__delivery-feature span {
    flex: 1;
  }

  @media screen and (max-width: 767px) {
    /* Mobile accordion adjustments */
    .product-page__accordions {
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    .product-page__accordion-header {
      padding: 1.25rem 0;
    }
  }
/* Additional Information */
.product-page__additional {
  margin: 2rem 0;
}

.product-page__sustainability {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.product-page__sustainability-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.product-page__sustainability-content h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}

.product-page__sustainability-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.product-page__sustainability-link {
  background: none;
  border: none;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
}

.product-page__sustainability-link:hover {
  text-decoration: none;
}
/* Product Card Styles - Grid Compatible */
  .product-card {
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Inter', sans-serif;
    flex: 0 0 327.5px; /* Maintain carousel compatibility */
  }

  .product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .product-card__link:hover {
    transform: translateY(-2px);
  }

  .product-card__image-container {
    position: relative;
    width: 100%;
    height: 410px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
  }

  .product-card__image--primary {
    opacity: 1;
    z-index: 1;
  }

  .product-card__image--hover {
    opacity: 0;
    z-index: 2;
  }

  .product-card__image-container:hover .product-card__image--primary {
    opacity: 0;
  }

  .product-card__image-container:hover .product-card__image--hover {
    opacity: 1;
  }

  .product-card__placeholder {
    width: 100%;
    height: 100%;
    color: #cccccc;
  }

  .product-card__badge {
    position: absolute;
    top: 13px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
    z-index: 10;
  }

  .product-card__badge--custom {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
  }

  .product-card__content {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .product-card__cta-container {
    padding: 0 10px 10px 10px;
    margin-top: auto;
  }

  .product-card__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
  }

  .product-card__price-container {
    margin-bottom: 10px;
  }

  .product-card__price {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-card__compare-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
  }



  .product-card__cta {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 0;
  }

  .product-card__cta:hover {
    background: #333333;
    color: #ffffff;
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .product-card {
      flex: 0 0 300px;
    }
  }

  @media screen and (max-width: 900px) {
    .product-card {
      flex: 0 0 280px;
    }
    
    .product-card__image-container {
      height: 350px;
    }
  }

  @media screen and (max-width: 768px) {
    .product-card {
      flex: 0 0 260px;
    }
    
    .product-card__image-container {
      height: 300px;
    }
  }

  @media screen and (max-width: 768px) {
    /* Disable hover image on mobile for better UX */
    .product-card__image--hover {
      display: none;
    }
    
    .product-card__image-container:hover .product-card__image--primary {
      opacity: 1;
    }
  }

  @media screen and (max-width: 480px) {
    .product-card {
      flex: 0 0 240px;
    }
    
    .product-card__image-container {
      height: 280px;
    }
  }
/* Out of Stock Banner */
  .product-page__out-of-stock-banner {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 4px;
    font-size: 0.85rem;
  }

  .product-page__out-of-stock-text {
    color: #1d4ed8;
    font-weight: 500;
  }

  /* Pre-Order Banner */
  .product-page__pre-order-banner {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 4px;
    font-size: 0.85rem;
  }

  .product-page__pre-order-text {
    color: #1d4ed8;
    font-weight: 500;
  }

  /* Low Stock Warning (Green) */
  .product-page__stock-warning {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    font-size: 0.85rem;
  }

  .product-page__stock-text {
    color: #166534;
    font-weight: 500;
  }

  /* Actions */
  .product-page__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .product-page__add-to-cart {
    flex: 1;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .product-page__add-to-cart:hover:not(:disabled) {
    background: #000;
    color: #fff;
  }

  .product-page__add-to-cart:disabled {
    background: #ccc;
    color: #666;
    border-color: #ccc;
    cursor: not-allowed;
  }

  .product-page__buy-now {
    flex: 1;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-page__buy-now:hover:not(:disabled) {
    background: #333;
  }

  .product-page__buy-now:disabled {
    background: #ccc;
    color: #666;
    border-color: #ccc;
    cursor: not-allowed;
  }

  .product-page__pre-order {
    flex: 1;
    background: #fff;
    color: #ffac1c;
    border: 1px solid #ffac1c;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-page__pre-order:hover:not(:disabled) {
    background: #ffac1c;
    color: #fff;
    border-color: #ffac1c;
  }

  .product-page__pre-order:disabled {
    background: #ccc;
    color: #666;
    border-color: #ccc;
    cursor: not-allowed;
  }

  /* Action States */
  .product-page__in-stock-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
  }

  .product-page__pre-order-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
  }

  .product-page__sold-out-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
  }

  .product-page__sold-out-btn {
    flex: 1;
    background: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: not-allowed;
  }

  .product-page__notify-btn {
    flex: 1;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-page__notify-btn:hover:not(:disabled) {
    background: #333;
    color: #fff;
  }

  .product-page__notify-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
  }

  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .product-page__form {
      margin-top: 1.5rem;
    }

    .product-page__actions {
      flex-direction: column;
      margin-bottom: 1.5rem;
    }

    .product-page__in-stock-actions {
      flex-direction: column;
      gap: 1rem;
    }

    .product-page__pre-order-actions {
      flex-direction: column;
      gap: 1rem;
    }

    .product-page__sold-out-actions {
      flex-direction: column;
      gap: 1rem;
    }

    /* Ensure proper spacing for stock warnings and banners */
    .product-page__out-of-stock-banner,
    .product-page__pre-order-banner,
    .product-page__stock-warning {
      margin-bottom: 1rem;
    }
  }
.product-page__vendor {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 0.5rem;
  }

  /* Diptyque-inspired header section */
  .product-page__header {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .product-page__title {
    font-size: 2.1875rem; /* 35px */
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #000;
    letter-spacing: 0.05em;
  }

  .product-page__subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
  }

  .product-page__description {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    text-align: left;
  }

  .product-page__description p {
    margin-bottom: 1rem;
  }

  .product-page__read-more {
    background: none;
    border: none;
    color: #666;
    font-size: inherit;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-style: italic;
  }

  .product-page__read-more:hover {
    color: #000;
  }

  .product-page__price {
    font-size: 1.1875rem; /* 19px */
    font-weight: 400;
    margin-bottom: 1rem;
    color: #000;
    text-align: left;
  }

  .price--compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
    font-size: 0.9em;
  }

  @media screen and (max-width: 767px) {
    .product-page__title {
      font-size: 1.75rem;
      padding: 0;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .product-page__vendor {
      text-align: center;
      font-size: 0.5rem;
    }

    .product-page__subtitle,
    .product-page__price {
      border-top: 1px solid #eee;
      padding-top: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }
/* Media Section */
  .product-page__media {
    position: sticky;
    top: 2rem;
  }

  .product-page__desktop-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .product-page__main-image-container {
    position: relative;
    aspect-ratio: 3/4;
    flex: 1;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
  }

  .product-page__main-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }

  .product-page__main-image-slide[data-active="true"] {
    opacity: 1;
    z-index: 1;
  }

  .product-page__main-image-slide[data-variant-hidden="true"] {
    display: none !important;
  }

  .product-page__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-page__placeholder {
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 0.3);
  }

  .product-page__vertical-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .product-page__vertical-thumbnail {
    width: 56px;
    height: 74px;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.5;
  }

  .product-page__vertical-thumbnail[data-active="true"] {
    border-color: #000;
    opacity: 1;
  }

  .product-page__vertical-thumbnail[data-variant-hidden="true"] {
    display: none !important;
  }

  .product-page__vertical-thumbnail:hover {
    border-color: #666;
    opacity: 0.8;
  }

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

  .product-page__thumbnail-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    pointer-events: none;
  }
  
  .product-page__vertical-thumbnail--video {
    position: relative;
  }

  /* Bonsoirs-Style Product Slider */
  .product-slider {
    --aspect-ratio: 10/13;
    --transition-duration: 0.3s;
    --transition-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --slide-count: 1; /* Will be updated by JS */
    --current-slide: 0; /* Will be updated by JS */
    
    display: none;
    width: 100%;
    position: relative;
  }

  .slider-viewport {
    aspect-ratio: var(--aspect-ratio);
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }

  .slider-track {
    display: flex;
    height: 100%;
    transition: transform var(--transition-duration) var(--transition-easing);
    cursor: grab;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

  .slider-track:active {
    cursor: grabbing;
  }

  .slide {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .slide[data-variant-hidden="true"] {
    display: none !important;
  }

  .media-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
  }

  .slide-video,
  .product-page__main-video {
    pointer-events: none;
  }

  .slide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .slide.active .slide-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .overlay-text {
    background: rgba(255, 255, 255, 0.9);
    color: #181a29;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
  }

  .cta-button {
    background: #181a29;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-transform: capitalize;
  }

  .cta-button:hover {
    background: #2a2c3e;
    transform: translateY(-1px);
  }

  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 20;
  }

  .progress-fill {
    height: 100%;
    background: #181a29;
    width: calc(100% / var(--slide-count, 1));
    transform: translateX(calc(100% * var(--current-slide, 0)));
    transition: transform var(--transition-duration) var(--transition-easing);
  }

  /* Mobile Responsive */
  @media screen and (max-width: 1024px) {
    .product-page__media {
      position: static;
    }
  }

  @media screen and (max-width: 767px) {
    /* Hide desktop elements on mobile */
    .product-page__desktop-layout {
      display: none;
    }

    /* Show mobile slider */
    .product-slider {
      display: block;
    }

    .overlay-text {
      font-size: 13px;
      padding: 10px 14px;
    }

    .cta-button {
      padding: 12px 20px;
      font-size: 13px;
    }

    /* Touch optimizations for slider */
    .slider-viewport {
      -webkit-overflow-scrolling: touch;
    }
  }
/* Product Reassurance Section */
.product-page__reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 1rem 0 2rem 0;
  padding: 1rem 0 2rem 0;
  border-bottom: 1px solid #e2e0d8;
}

.product-page__reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.product-page__reassurance-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #333);
  opacity: 0.8;
}

.product-page__reassurance-icon svg {
  width: 40px;
  height: 40px;
}

.product-page__reassurance-text {
  display: flex;
  flex-direction: column;
}

.product-page__reassurance-label {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: #6b6b71;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .product-page__reassurance {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0.75rem 0 1.5rem 0;
    padding: 0.75rem 0 1.5rem 0;
  }

  .product-page__reassurance-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 0.75rem;
  }

  .product-page__reassurance-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .product-page__reassurance-icon svg {
    width: 35px;
    height: 35px;
  }

  .product-page__reassurance-text {
    align-items: flex-start;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .product-page__reassurance {
    gap: 1rem;
    margin: 0.5rem 0 1rem 0;
    padding: 0.5rem 0 1rem 0;
  }

  .product-page__reassurance-label {
    font-size: 0.75rem;
  }
}
/* Variant Selection */
  .product-page__variants {
    margin-bottom: 3rem;
    text-align: center;
  }

  .product-page__option {
    margin-bottom: 2rem;
  }

  .product-page__option-header {
    margin-bottom: 1rem;
  }

  .product-page__option-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-align: center;
  }

  .product-page__option-values {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-page__option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product-page__option-value {
    padding: 0.75rem 1.25rem;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-width: auto;
    border-radius: 0;
    outline: 2px solid transparent;
    outline-offset: 0.2rem;
  }

  .product-page__option-value:hover {
    background: #000;
    color: #fff;
    outline-offset: 0.2rem;
    outline-color: transparent;
    transform: translateY(-1px);
  }

  .product-page__option-input:checked + .product-page__option-value {
    background: #000;
    color: #fff;
    border-color: #000;
    outline: 2px solid transparent;
    outline-offset: 0.2rem;
  }

  .product-page__option-input:disabled + .product-page__option-value {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
  }

  .product-page__option-input:disabled + .product-page__option-value:hover {
    background: #f5f5f5;
    color: #999;
    transform: none;
  }

  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .product-page__variants {
      display: none;
    }
  }