/** Shopify CDN: Minification failed

Line 1678:18 Unexpected "{"
Line 1678:27 Expected ":"
Line 1678:34 Unexpected "{"
Line 1766:22 Unexpected "{"
Line 1766:31 Expected ":"
Line 1766:38 Unexpected "{"
Line 1794:22 Unexpected "{"
Line 1794:31 Expected ":"
Line 1794:38 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1, SCOPED:FALSE) */
.announcement-bar-section {
    width: 100%;
  }

  .announcement-bar {
    background: var(--announcement-bg);
    color: var(--announcement-text-color);
    padding: var(--announcement-padding) 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .announcement-bar__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .announcement-bar__left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  .announcement-bar__center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .announcement-bar__right {
    flex: 0 0 auto;
    width: auto;
  }

  .announcement-bar__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--announcement-button-bg);
    color: var(--announcement-button-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    z-index: 1;
  }

  .announcement-bar__button:hover {
    background: var(--announcement-button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .announcement-bar__button:active {
    transform: translateY(0);
  }

  .announcement-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
  }

  .announcement-bar__icon svg {
    width: 100%;
    height: 100%;
  }

  .announcement-bar__label {
    display: none;
  }

  .announcement-bar__content {
    font-size: calc(var(--announcement-text-size) * 0.8);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
  }

  .announcement-bar__content--left {
    text-align: left;
  }

  .announcement-bar__content--center {
    text-align: center;
  }

  .announcement-bar__content:hover {
    opacity: 0.85;
  }

  /* Newsletter Modal Styles */

  .announcement-bar__newsletter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .announcement-bar__newsletter.is-open {
    opacity: 1;
    visibility: visible;
  }

  .announcement-bar__newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .announcement-bar__newsletter-modal {
    position: relative;
    z-index: 2;
    background: var(--announcement-newsletter-bg);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    padding: 3rem 2.5rem;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .announcement-bar__newsletter-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
  }

  .announcement-bar__newsletter-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    transform: rotate(90deg);
  }

  .announcement-bar__newsletter-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .announcement-bar__newsletter-content {
    text-align: center;
  }

  .announcement-bar__newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.5px;
  }

  .announcement-bar__newsletter-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
  }

  .announcement-bar__newsletter-description p {
    margin: 0;
  }

  .announcement-bar__newsletter-form-wrapper {
    margin-top: 2rem;
  }

  .announcement-bar__newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .announcement-bar__newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
  }

  .announcement-bar__newsletter-input:focus {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
  }

  .announcement-bar__newsletter-input::placeholder {
    color: #999;
  }

  .announcement-bar__newsletter-submit {
    padding: 0.875rem 2rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.5px;
  }

  .announcement-bar__newsletter-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .announcement-bar__newsletter-submit:active {
    transform: translateY(0);
  }

  .announcement-bar__newsletter-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .announcement-bar__success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
  }

  @keyframes successPulse {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }

  .announcement-bar__newsletter-success p {
    font-size: 1rem;
    font-weight: 600;
    color: #4caf50;
    margin: 0;
  }

  .announcement-bar__newsletter-error {
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Responsive Design */

  @media (min-width: 768px) {
    .announcement-bar__label {
      display: inline;
    }

    .announcement-bar__wrapper {
      padding: 0 3rem;
    }

    .announcement-bar {
      padding: calc(var(--announcement-padding) * 1.3) 3rem;
    }
  }

  @media (max-width: 768px) {
    .announcement-bar__wrapper {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }

    .announcement-bar__left,
    .announcement-bar__center,
    .announcement-bar__right {
      width: 100%;
      justify-content: center;
    }

    .announcement-bar__button {
      width: 100%;
      justify-content: center;
    }

    .announcement-bar__label {
      display: inline;
    }

    .announcement-bar__content--left,
    .announcement-bar__content--center {
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .announcement-bar__newsletter-modal {
      width: 95%;
      padding: 2rem 1.5rem;
    }

    .announcement-bar__newsletter-title {
      font-size: 1.5rem;
    }

    .announcement-bar__newsletter-input-group {
      flex-direction: column;
    }

    .announcement-bar__newsletter-submit {
      width: 100%;
    }

    .announcement-bar {
      padding: calc(var(--announcement-padding) * 0.8) 1rem;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:3, SCOPED:FALSE) */
article[data-section-type="article"] {
    background: var(--article-bg, #ffffff);
    color: var(--article-text, #000000);
    padding: var(--article-padding, 60px) 0;
    display: block;
    width: 100%;
  }

  .article__image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--article-accent, #000000);
    opacity: 0.1;
  }

  .article__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article__content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .article__title {
    color: var(--article-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .article__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 2rem 0;
    font-size: 0.875rem;
    color: var(--article-accent, #000000);
    opacity: 0.7;
  }

  .article__author {
    font-weight: 600;
  }

  .article__separator {
    opacity: 0.5;
  }

  .article__date {
    font-style: italic;
  }

  .article__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--article-text, #000000);
  }

  .article__body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--article-text, #000000);
  }

  .article__body h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--article-text, #000000);
  }

  .article__body p {
    margin: 0 0 1.5rem 0;
  }

  .article__body a {
    color: var(--article-accent, #000000);
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .article__body a:hover {
    opacity: 0.7;
  }

  .article__comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--article-accent, #000000);
    opacity: 0.1;
  }

  .article__comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--article-text, #000000);
  }

  .comments-list {
    margin: 0 0 2rem 0;
  }

  .comment-item {
    margin: 0 0 2rem 0;
    padding: 1.5rem;
    background: var(--article-bg, #ffffff);
    border: 1px solid var(--article-accent, #000000);
    opacity: 0.05;
    border-radius: 6px;
  }

  .comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .comment-author {
    font-weight: 600;
    color: var(--article-text, #000000);
  }

  .comment-date {
    color: var(--article-accent, #000000);
    opacity: 0.7;
    font-style: italic;
  }

  .comment-content {
    color: var(--article-text, #000000);
    line-height: 1.6;
  }

  .article__comment-form {
    margin-top: 2rem;
  }

  .article__comment-form-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--article-text, #000000);
  }

  .form-field {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--article-text, #000000);
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--article-accent, #000000);
    opacity: 0.2;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--article-text, #000000);
    transition: all 0.3s ease;
  }

  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    opacity: 0.5;
    border-color: var(--article-accent, #000000);
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    padding: 0.75rem 2rem;
    background: var(--article-accent, #000000);
    color: var(--article-bg, #ffffff);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  .form-submit:hover {
    opacity: 0.85;
  }

  @media (max-width: 768px) {
    article[data-section-type="article"] {
      padding: var(--article-padding-mobile, 40px) 0;
    }

    .article__content-wrapper {
      padding: 0 1rem;
    }

    .article__title {
      font-size: 1.75rem;
    }

    .article__body {
      font-size: 1rem;
    }

    .article__body h2 {
      font-size: 1.375rem;
    }

    .article__body h3 {
      font-size: 1.125rem;
    }

    .article__meta {
      font-size: 0.8125rem;
      gap: 0.375rem;
    }
  }

  @media (max-width: 480px) {
    article[data-section-type="article"] {
      padding: calc(var(--article-padding-mobile, 40px) / 1.5) 0;
    }

    .article__content-wrapper {
      padding: 0 0.75rem;
    }

    .article__title {
      font-size: 1.5rem;
      margin: 0 0 0.75rem 0;
    }

    .article__image-wrapper {
      margin: 0 0 2rem 0;
    }

    .article__body {
      font-size: 0.9375rem;
    }

    .article__body h2 {
      font-size: 1.25rem;
      margin: 1.5rem 0 0.75rem 0;
    }

    .comment-item {
      padding: 1rem;
    }

    .form-input,
    .form-textarea {
      padding: 0.625rem 0.75rem;
    }
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:5, SCOPED:FALSE) */
section[data-section-type="blog"] {
    background: var(--blog-bg, #ffffff);
    color: var(--blog-text, #000000);
    padding: var(--blog-padding, 60px) 0;
    display: block;
    width: 100%;
  }

  .blog__header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
  }

  .blog__title {
    color: var(--blog-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .blog__articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }

  .blog-card {
    display: flex;
    flex-direction: column;
    background: var(--blog-bg, #ffffff);
    border: 1px solid var(--blog-accent, #000000);
    border-opacity: 0.1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .blog-card:hover {
    border-color: var(--blog-accent, #000000);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .blog-card__image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--blog-accent, #000000);
    opacity: 0.08;
  }

  .blog-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-card__content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .blog-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }

  .blog-card__link {
    color: var(--blog-text, #000000);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card__link:hover {
    color: var(--blog-accent, #000000);
  }

  .blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--blog-accent, #000000);
    opacity: 0.7;
  }

  .blog-card__author {
    font-weight: 600;
  }

  .blog-card__separator {
    opacity: 0.5;
  }

  .blog-card__date {
    font-style: italic;
  }

  .blog-card__excerpt {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: var(--blog-text, #000000);
    opacity: 0.85;
  }

  .blog-card__read-more {
    display: inline-block;
    color: var(--blog-accent, #000000);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
  }

  .blog-card__read-more:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  .blog__pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }

  @media (max-width: 768px) {
    section[data-section-type="blog"] {
      padding: var(--blog-padding-mobile, 40px) 0;
    }

    .blog__header {
      margin: 0 auto 2rem auto;
      padding: 0 1rem;
    }

    .blog__title {
      font-size: 1.75rem;
    }

    .blog__articles {
      padding: 0 1rem;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .blog-card__content {
      padding: 1.25rem;
    }

    .blog-card__title {
      font-size: 1.25rem;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type="blog"] {
      padding: calc(var(--blog-padding-mobile, 40px) / 1.5) 0;
    }

    .blog__header {
      margin: 0 auto 1.5rem auto;
      padding: 0 0.75rem;
    }

    .blog__title {
      font-size: 1.5rem;
    }

    .blog__articles {
      padding: 0 0.75rem;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .blog-card {
      flex-direction: row;
    }

    .blog-card__image {
      width: 100px;
      min-width: 100px;
      padding-top: 100px;
    }

    .blog-card__content {
      padding: 1rem;
    }

    .blog-card__title {
      font-size: 1rem;
    }

    .blog-card__excerpt {
      font-size: 0.875rem;
      margin: 0.5rem 0;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      display: -webkit-box;
    }
  }
/* END_SECTION:blog */

/* START_SECTION:collection (INDEX:9, SCOPED:FALSE) */
.collection-section {
    background: var(--col-bg, #ffffff);
    color: var(--col-text, #000000);
    padding: var(--col-padding, 60px) 0;
  }

  .collection-section__title {
    color: var(--col-text, #000000);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.2;
  }

  .collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .collection-product {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-product:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }

  .collection-product__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .collection-product__content {
    padding: 1.5rem;
  }

  .collection-product__content p {
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .collection-products {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
      padding: 0 0.75rem;
    }

    .collection-section__title {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .collection-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      padding: 0 0.5rem;
    }

    .collection-product__content {
      padding: 1rem;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:10, SCOPED:FALSE) */
section[data-section-type="collections"] {
      background: var(--collections-bg);
      color: var(--collections-text);
      padding: var(--collections-padding) 0;
    }

    .collections__wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .collections__header {
      margin-bottom: 2rem;
    }

    .collections__title {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.2;
      color: var(--collections-text);
    }

    .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: 200px;
    }

    .collections--full {
      --collection-card-size: 300px;
    }

    .collection-card {
      display: flex;
      flex-direction: column;
      width: 100%;
      text-decoration: none;
      color: var(--collections-text);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--collections-text);
      border-opacity: 0.1;
    }

    .collection-card:hover {
      border-color: var(--collections-text);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .collection-card__image {
      position: relative;
      width: 100%;
      padding-top: 100%;
      overflow: hidden;
      background: var(--collections-text);
      opacity: 0.08;
    }

    .collection-card__image-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .collection-card__content {
      flex: 1;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .collection-card__title {
      font-size: 1.125rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
      color: var(--collections-text);
    }

    .collection-card__description {
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.5;
      color: var(--collections-text);
      opacity: 0.8;
      flex: 1;
    }

    .collection-card__cta {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--collections-text);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s ease;
    }

    .collection-card:hover .collection-card__cta {
      opacity: 0.7;
    }

    @media (max-width: 768px) {
      section[data-section-type="collections"] {
        padding: var(--collections-padding-mobile) 0;
      }

      .collections__wrapper {
        padding: 0 1rem;
      }

      .collections__title {
        font-size: 1.75rem;
      }

      .collections--compact {
        --collection-card-size: 160px;
      }

      .collections--full {
        --collection-card-size: 240px;
      }

      .collection-card__content {
        padding: 1rem;
      }

      .collection-card__title {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      section[data-section-type="collections"] {
        padding: calc(var(--collections-padding-mobile) / 1.5) 0;
      }

      .collections__wrapper {
        padding: 0 0.75rem;
      }

      .collections__title {
        font-size: 1.5rem;
      }

      .collections--compact {
        --collection-card-size: 150px;
      }

      .collections--full {
        --collection-card-size: 180px;
      }

      .collections {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      }

      .collection-card__content {
        padding: 0.75rem;
      }

      .collection-card__title {
        font-size: 0.875rem;
      }

      .collection-card__description {
        display: none;
      }
    }
/* END_SECTION:collections */

/* START_SECTION:custom-html (INDEX:12, SCOPED:FALSE) */
.custom-html-section {
      background-color: var(--custom-html-bg);
      color: var(--custom-html-text);
      padding: var(--custom-html-padding) 0;
    }

    .custom-html-header {
      margin-bottom: 2rem;
    }

    .custom-html-title {
      font-size: var(--custom-html-title-size);
      font-weight: var(--custom-html-title-weight);
      color: var(--custom-html-text);
      margin: 0;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .custom-html-content {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--custom-html-text);
    }

    .custom-html-content * {
      max-width: 100%;
    }

    .custom-html-content a {
      color: var(--custom-html-text);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .custom-html-content a:hover {
      opacity: 0.7;
    }

    @media (max-width: 768px) {
      .custom-html-section {
        padding: calc(var(--custom-html-padding) * 0.8) 0;
      }

      .custom-html-title {
        font-size: calc(var(--custom-html-title-size) * 0.9);
      }

      .custom-html-content {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .custom-html-section {
        padding: var(--custom-html-padding-mobile) 0;
      }

      .custom-html-title {
        font-size: calc(var(--custom-html-title-size) * 0.8);
      }

      .custom-html-content {
        font-size: 0.9375rem;
        line-height: 1.6;
      }
    }
/* END_SECTION:custom-html */

/* START_SECTION:custom-liquid (INDEX:13, SCOPED:FALSE) */
.custom-liquid-section {
      background-color: var(--custom-liquid-bg);
      color: var(--custom-liquid-text);
      padding: var(--custom-liquid-padding) 0;
    }

    .custom-liquid-header {
      margin-bottom: 2rem;
    }

    .custom-liquid-title {
      font-size: var(--custom-liquid-title-size);
      font-weight: var(--custom-liquid-title-weight);
      color: var(--custom-liquid-text);
      margin: 0;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .custom-liquid-content {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--custom-liquid-text);
    }

    .custom-liquid-content * {
      max-width: 100%;
    }

    .custom-liquid-content a {
      color: var(--custom-liquid-text);
      text-decoration: underline;
      transition: opacity 0.3s ease;
    }

    .custom-liquid-content a:hover {
      opacity: 0.7;
    }

    @media (max-width: 768px) {
      .custom-liquid-section {
        padding: calc(var(--custom-liquid-padding) * 0.8) 0;
      }

      .custom-liquid-title {
        font-size: calc(var(--custom-liquid-title-size) * 0.9);
      }

      .custom-liquid-content {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .custom-liquid-section {
        padding: var(--custom-liquid-padding-mobile) 0;
      }

      .custom-liquid-title {
        font-size: calc(var(--custom-liquid-title-size) * 0.8);
      }

      .custom-liquid-content {
        font-size: 0.9375rem;
        line-height: 1.6;
      }
    }
/* END_SECTION:custom-liquid */

/* START_SECTION:custom-section (INDEX:14, SCOPED:FALSE) */
.custom-section {
      position: relative;
      overflow: hidden;
      width: 100%;
      background-color: var(--custom-bg);
      padding: var(--custom-padding) 0;
    }

    .custom-section__background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .custom-section__background img {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
    }

    .custom-section__content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: var(--content-grid);
      width: 100%;
    }

    .custom-section__content > * {
      grid-column: 2;
    }

    @media (max-width: 768px) {
      .custom-section {
        padding: calc(var(--custom-padding) * 0.8) 0;
      }
    }

    @media (max-width: 480px) {
      .custom-section {
        padding: var(--custom-padding-mobile) 0;
      }
    }
/* END_SECTION:custom-section */

/* START_SECTION:faq (INDEX:15, SCOPED:FALSE) */
.faq-section {
      width: 100%;
      padding: var(--faq-padding) 1rem;
    }

    .faq-wrapper {
      max-width: var(--faq-max-width);
      margin: 0 auto;
    }

    .faq {
      width: 100%;
    }

    .faq__group-list {
      display: flex;
      flex-direction: column;
      gap: calc(var(--faq-group-gap) * 2);
    }

    .faq__group {
      display: flex;
      flex-direction: column;
      gap: var(--faq-group-gap);
    }

    .faq__group-title {
      font-size: var(--faq-title-size);
      font-weight: var(--faq-title-weight);
      line-height: 1.3;
      margin: 0;
      padding: 0;
      letter-spacing: -0.3px;
      color: #000;
    }

    .faq__item {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--faq-item-shadow);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__item:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .faq__item-wrapper {
      width: 100%;
    }

    .faq__question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--faq-question-bg);
      border: none;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      font-size: var(--faq-question-size);
      font-weight: 600;
      text-align: left;
      color: #000;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__question:hover {
      background: var(--faq-question-hover-bg);
    }

    .faq__question:focus {
      outline: 2px solid #333;
      outline-offset: 2px;
    }

    .faq__question-text {
      flex: 1;
      line-height: 1.4;
    }

    .faq__toggle-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      line-height: 1;
      margin-left: 1rem;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__question[aria-expanded="true"] .faq__toggle-icon {
      transform: rotate(45deg);
    }

    .faq__answer-wrapper {
      display: none;
      overflow: hidden;
    }

    .faq__question[aria-expanded="true"] ~ .faq__answer-wrapper {
      display: block;
      animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .faq__answer {
      padding: 1.5rem;
      background: #f9f9f9;
      font-size: var(--faq-answer-size);
      line-height: 1.6;
      color: var(--faq-answer-color);
    }

    .faq__answer p {
      margin: 0 0 1rem 0;
    }

    .faq__answer p:last-child {
      margin-bottom: 0;
    }

    .faq__answer ul,
    .faq__answer ol {
      margin: 0 0 1rem 1.5rem;
      padding: 0;
    }

    .faq__answer li {
      margin-bottom: 0.5rem;
    }

    .faq__answer strong {
      font-weight: 700;
      color: #000;
    }

    /* Contact Info Section */

    .faq__contact-info {
      margin-top: calc(var(--faq-padding) * 2);
      padding-top: calc(var(--faq-padding) * 2);
      border-top: 1px solid #eee;
    }

    .faq__contact-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq__contact-title {
      font-size: calc(var(--faq-title-size) * 0.9);
      font-weight: var(--faq-title-weight);
      line-height: 1.3;
      margin: 0 0 1rem 0;
      color: #000;
    }

    .faq__contact-description {
      font-size: calc(var(--faq-answer-size) * 1.1);
      line-height: 1.6;
      color: var(--faq-answer-color);
      max-width: 600px;
      margin: 0 auto;
    }

    .faq__contact-description p {
      margin: 0;
    }

    .faq__contact-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .faq__contact-item {
      display: flex;
      gap: 1.5rem;
      padding: 1.5rem;
      background: #f9f9f9;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__contact-item:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .faq__contact-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
    }

    .faq__contact-icon svg {
      width: 100%;
      height: 100%;
    }

    .faq__contact-content {
      flex: 1;
    }

    .faq__contact-item-title {
      font-weight: 600;
      font-size: calc(var(--faq-answer-size) * 1.1);
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
      color: #000;
    }

    .faq__contact-item-text {
      font-size: var(--faq-answer-size);
      line-height: 1.6;
      color: var(--faq-answer-color);
    }

    .faq__contact-item-text p {
      margin: 0;
    }

    /* Responsive Design */

    @media (max-width: 768px) {
      .faq-section {
        padding: calc(var(--faq-padding) * 0.8) 1rem;
      }

      .faq__group-title {
        font-size: calc(var(--faq-title-size) * 0.85);
      }

      .faq__question {
        padding: 1rem 1.25rem;
        font-size: calc(var(--faq-question-size) * 0.95);
      }

      .faq__answer {
        padding: 1.25rem;
        font-size: calc(var(--faq-answer-size) * 0.95);
      }

      .faq__contact-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .faq-section {
        padding: calc(var(--faq-padding) * 0.6) 0.75rem;
      }

      .faq__group-title {
        font-size: calc(var(--faq-title-size) * 0.75);
      }

      .faq__question {
        padding: 0.875rem 1rem;
        font-size: calc(var(--faq-question-size) * 0.9);
      }

      .faq__toggle-icon {
        width: 20px;
        height: 20px;
        margin-left: 0.75rem;
      }

      .faq__answer {
        padding: 1rem;
        font-size: calc(var(--faq-answer-size) * 0.9);
      }

      .faq__contact-header {
        margin-bottom: 2rem;
      }

      .faq__contact-items {
        gap: 1rem;
      }

      .faq__contact-item {
        padding: 1.25rem;
        gap: 1rem;
      }

      .faq__contact-icon {
        width: 40px;
        height: 40px;
      }
    }
/* END_SECTION:faq */

/* START_SECTION:featured-product (INDEX:17, SCOPED:FALSE) */
#shopify-section-{{ section.id }} {
    background: var(--fp-bg, #ffffff);
    padding: var(--fp-padding, 60px) 0;
    color: var(--fp-text-color, #000000);
  }

  .featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .product-gallery {
    width: 100%;
    position: sticky;
    top: 100px;
  }

  .product-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .product-meta__title {
    color: var(--fp-text-color, #000000);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .product-meta__price {
    color: var(--fp-accent-color, #0066cc);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
  }

  .button {
    background: var(--fp-accent-color, #0066cc);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
  }

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

  .section__header {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: var(--fp-title-size, 28px);
    color: var(--fp-text-color, #000000);
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
  }

  .section__action-link {
    color: var(--fp-accent-color, #0066cc);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .section__action-link:hover {
    opacity: 0.8;
    gap: 0.75rem;
  }

  @media (max-width: 768px) {
    #shopify-section-{{ section.id }} {
      padding: var(--fp-padding-mobile, 40px) 0;
    }

    .featured-product {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product-gallery {
      position: relative;
      top: auto;
    }

    .product-info {
      padding: 1rem;
    }

    .product-meta__title {
      font-size: 1.5rem;
    }

    .section__title {
      font-size: calc(var(--fp-title-size) * 0.75);
    }
  }

  @media (max-width: 480px) {
    #shopify-section-{{ section.id }} {
      padding: var(--fp-padding-mobile, 40px) 0;
    }

    .featured-product {
      gap: 1.5rem;
    }

    .product-info {
      padding: 1rem;
      border-radius: 8px;
    }

    .button {
      width: 100%;
      text-align: center;
    }
  }
/* END_SECTION:featured-product */

/* START_SECTION:hello-world (INDEX:21, SCOPED:FALSE) */
section[data-section-type="hello-world"] {
    background: var(--hw-bg);
    color: var(--hw-text);
    padding: var(--hw-padding) 0;
  }

  .welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background: var(--hw-bg);
    padding: 0;
  }

  .welcome-title {
    color: var(--hw-text);
  }

  .highlights {
    color: var(--hw-text);
  }

  .highlight h3 {
    color: var(--hw-text);
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    section[data-section-type="hello-world"] {
      padding: calc(var(--hw-padding) * 0.8) 0;
    }

    .welcome-content {
      flex-direction: column;
      gap: 2rem;
    }

    .highlights {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type="hello-world"] {
      padding: var(--hw-padding-mobile) 0;
    }

    .icon {
      width: 100% !important;
      max-width: 250px;
    }

    .highlight {
      padding: 1.5rem;
    }
  }
/* END_SECTION:hello-world */

/* START_SECTION:image-with-text-overlay (INDEX:22, SCOPED:FALSE) */
.image-overlay-section {
      width: 100%;
    }

    .image-overlay-wrapper {
      position: relative;
      width: 100%;
      min-height: var(--image-overlay-height);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .image-overlay-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .image-overlay-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-overlay-placeholder svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-overlay-layer {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, var(--image-overlay-opacity));
      z-index: 1;
    }

    .image-overlay-content {
      position: relative;
      z-index: 2;
      color: var(--image-overlay-text-color);
      text-align: center;
      padding: 2rem;
    }

    .image-overlay-title {
      font-size: var(--image-overlay-title-size);
      font-weight: var(--image-overlay-title-weight);
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
      line-height: 1.2;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .image-overlay-text {
      font-size: var(--image-overlay-text-size);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    .image-overlay-text p {
      margin: 0.5rem 0;
    }

    .image-overlay-text p:first-child {
      margin-top: 0;
    }

    .image-overlay-text p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .image-overlay-wrapper {
        min-height: calc(var(--image-overlay-height) * 0.8);
      }

      .image-overlay-content {
        padding: 1.5rem;
      }

      .image-overlay-title {
        font-size: calc(var(--image-overlay-title-size) * 0.85);
      }

      .image-overlay-text {
        font-size: calc(var(--image-overlay-text-size) * 0.9);
      }
    }

    @media (max-width: 480px) {
      .image-overlay-wrapper {
        min-height: calc(var(--image-overlay-height) * 0.6);
      }

      .image-overlay-content {
        padding: 1rem;
      }

      .image-overlay-title {
        font-size: calc(var(--image-overlay-title-size) * 0.7);
      }

      .image-overlay-text {
        font-size: calc(var(--image-overlay-text-size) * 0.8);
      }
    }
/* END_SECTION:image-with-text-overlay */

/* START_SECTION:logo-list (INDEX:24, SCOPED:FALSE) */
.logo-list {
      padding: var(--section-padding, 60px) 0;
    }

    .logo-list__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .logo-list__title {
      font-size: var(--logo-title-size, 36px);
      font-weight: var(--logo-title-weight, 700);
      line-height: 1.2;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .logo-list__description {
      font-size: var(--logo-desc-size, 16px);
      color: rgba(var(--text-color-rgb, 0, 0, 0), 0.6);
      margin: 12px 0 0;
      line-height: 1.6;
    }

    .logo-list__action-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--logo-link-color, var(--accent-color, #000));
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      padding: 12px 20px;
      border-radius: 8px;
      background: rgba(var(--accent-color-rgb, 0, 0, 0), 0.05);
    }

    .logo-list__action-link:hover {
      background: rgba(var(--accent-color-rgb, 0, 0, 0), 0.1);
      transform: translateX(4px);
    }

    .logo-list__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--logo-gap, 30px);
    }

    .logo-item {
      display: block;
      text-decoration: none;
      transition: all var(--logo-item-transition, cubic-bezier(0.4, 0, 0.2, 1) 300ms);
    }

    .logo-item:hover .logo-item__wrapper {
      transform: scale(var(--logo-item-scale, 1.05));
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .logo-item__wrapper {
      padding: var(--logo-padding, 24px);
      background: var(--logo-bg, #ffffff);
      border: 1px solid var(--logo-border, #e5e7eb);
      border-radius: var(--logo-border-radius, 12px);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 140px;
      transition: all var(--logo-item-transition, cubic-bezier(0.4, 0, 0.2, 1) 300ms);
      box-shadow: var(--logo-shadow, 0 2px 8px rgba(0, 0, 0, 0.06));
    }

    .logo-item__image {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      display: block;
    }

    .logo-item__placeholder {
      width: 80px;
      height: 80px;
      opacity: 0.3;
    }

    @media screen and (max-width: 768px) {
      .logo-list__header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
      }

      .logo-list__title {
        font-size: max(24px, var(--logo-title-size, 36px) * 0.7);
      }

      .logo-list__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: max(20px, var(--logo-gap, 30px) * 0.67);
      }

      .logo-item__wrapper {
        min-height: 120px;
      }
    }

    @media screen and (max-width: 480px) {
      .logo-list {
        padding: 40px 0;
      }

      .logo-list__title {
        font-size: max(20px, var(--logo-title-size, 36px) * 0.55);
      }

      .logo-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .logo-item__wrapper {
        min-height: 100px;
        padding: max(16px, var(--logo-padding, 24px) * 0.67);
      }
    }
/* END_SECTION:logo-list */

/* START_SECTION:main-blog-post (INDEX:26, SCOPED:FALSE) */
article[data-section-type="blog-post"] {
    background: var(--post-bg, #ffffff);
    color: var(--post-text, #000000);
    padding: var(--post-padding, 60px) 0;
  }

  .page__header {
    margin-bottom: 2rem;
  }

  .page__title {
    color: var(--post-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
  }

  .page__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(var(--post-text-rgb, 0, 0, 0), 0.7);
    font-size: 0.95rem;
  }

  .page__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .page__meta-item a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .page__meta-item a:hover {
    opacity: 0.8;
  }

  .article__image-wrapper {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
  }

  .blog-post {
    line-height: 1.8;
  }

  .blog-post h2,
  .blog-post h3 {
    color: var(--post-text, #000000);
    margin: 1.5rem 0 1rem 0;
  }

  .blog-post p {
    margin-bottom: 1rem;
    color: var(--post-text, #000000);
  }

  .blog-post a {
    color: var(--post-text, #000000);
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .blog-post a:hover {
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    article[data-section-type="blog-post"] {
      padding: var(--post-padding-mobile, 40px) 0;
    }

    .page__title {
      font-size: 1.75rem;
    }

    .page__meta {
      gap: 1rem;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .page__title {
      font-size: 1.5rem;
    }

    .page__meta {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-blog (INDEX:27, SCOPED:FALSE) */
article[data-section-type="blog"] {
    background: var(--blog-bg, #ffffff);
    color: var(--blog-text, #000000);
    padding: var(--blog-padding, 60px) 0;
  }

  .page__title {
    color: var(--blog-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
  }

  .page__tag-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .page__tag-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .page__tag-item.is-selected {
    background: var(--blog-text, #000000);
    color: var(--blog-bg, #ffffff);
  }

  .page__tag-item:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .article-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }

  .article-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .article-item:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    article[data-section-type="blog"] {
      padding: var(--blog-padding-mobile, 40px) 0;
    }

    .page__title {
      font-size: 1.75rem;
    }

    .page__tag-list {
      gap: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .page__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-page (INDEX:38, SCOPED:FALSE) */
section[data-section-type="page"] {
    background: var(--page-bg, #ffffff);
    color: var(--page-text, #000000);
    padding: var(--page-padding, 60px) 0;
  }

  .page__header {
    margin-bottom: 2rem;
  }

  .page__title {
    color: var(--page-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
  }

  .page__description {
    color: rgba(var(--page-text-rgb, 0, 0, 0), 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 1rem 0;
  }

  .page__content {
    color: var(--page-text, #000000);
    line-height: 1.8;
  }

  .page__content h2,
  .page__content h3 {
    color: var(--page-text, #000000);
    margin: 1.5rem 0 1rem 0;
  }

  .page__content a {
    color: var(--page-text, #000000);
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .page__content a:hover {
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    section[data-section-type="page"] {
      padding: var(--page-padding-mobile, 40px) 0;
    }

    .page__title {
      font-size: 1.75rem;
    }

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

  @media (max-width: 480px) {
    .page__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:main-page */

/* START_SECTION:main-product (INDEX:40, SCOPED:FALSE) */
section[data-section-type='product'] {
    background: var(--mp-bg, #ffffff);
    color: var(--mp-text-color, #000000);
    padding: var(--mp-padding, 60px) 0;
  }

  .page__sub-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .breadcrumb__link {
    color: var(--mp-accent-color, #0066cc);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .breadcrumb__link:hover {
    opacity: 0.8;
  }

  .product-gallery {
    width: 100%;
    margin-bottom: 2rem;
  }

  .product-block-list__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem; /* Modern large gap */
    align-items: flex-start;
  }

  .product-block-list__item--gallery {
    flex: 1 1 var(--mp-gallery-width); /* Dynamic width from schema */
    min-width: 300px;
  }

  .product-block-list__item--info {
    flex: 1 1 calc(100% - var(--mp-gallery-width) - 4rem); /* Calculate remaining space minus gap */
    min-width: 300px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Modern layout logic moving from .product-info to wrapper item if needed, but keeping existing structure largely intact */
  }

  .product-info {
    padding: 2rem;
    backdrop-filter: blur(10px);
  }

  @media (max-width: 999px) {
    .product-block-list__wrapper {
      flex-direction: column;
      gap: 2rem;
    }

    .product-block-list__item--gallery,
    .product-block-list__item--info {
      width: 100%;
      flex: none;
    }
  }

  .product-meta__title {
    color: var(--mp-text-color, #000000);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .product-meta__price {
    color: var(--mp-accent-color, #0066cc);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0;
  }

  .product-variant-selector {
    margin: 2rem 0;
  }

  .product-variant-selector__option {
    margin-bottom: 1.5rem;
  }

  .product-variant-selector__option-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--mp-text-color, #000000);
  }

  .product-variant-selector__option-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: white;
    color: var(--mp-text-color, #000000);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-variant-selector__option-select:focus {
    outline: none;
    border-color: var(--mp-accent-color, #0066cc);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  }

  .product-form-group {
    margin: 2rem 0;
  }

  .button {
    background: var(--mp-accent-color, #0066cc);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
  }

  .button:active {
    transform: translateY(0);
  }

  .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    section[data-section-type='product'] {
      padding: var(--mp-padding-mobile, 40px) 0;
    }

    .page__sub-header {
      margin-bottom: 1.5rem;
    }

    .product-meta__title {
      font-size: 1.5rem;
    }

    .product-meta__price {
      font-size: 1.5rem;
    }

    .product-info {
      padding: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type='product'] {
      padding: var(--mp-padding-mobile, 40px) 0;
    }

    .product-info {
      padding: 1rem;
      border-radius: 8px;
    }

    .product-meta__title {
      font-size: 1.25rem;
    }

    .button {
      padding: 0.875rem 1rem;
    }
  }
/* END_SECTION:main-product */

/* START_SECTION:map (INDEX:42, SCOPED:FALSE) */
section[data-section-type="map"] {
      background: var(--map-bg);
      color: var(--map-text);
      padding: var(--map-padding) 0;
    }

    .map__title {
      font-size: 2rem;
      font-weight: 700;
      margin: 0 0 2rem 0;
      line-height: 1.2;
      color: var(--map-text);
    }

    .map {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 2rem;
      align-items: stretch;
    }

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

    .map__store-item {
      border-bottom: 1px solid rgba(var(--map-text-rgb, 0, 0, 0), 0.1);
      padding-bottom: 1rem;
    }

    .map__store-item:last-child {
      border-bottom: none;
    }

    .map__store-name {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .map__store-name:hover {
      opacity: 0.8;
    }

    .map__icon-container {
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .map__store-collapsible {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }

    .map__store-item[aria-expanded="true"] .map__store-collapsible {
      max-height: 500px;
    }

    .map__store-inner {
      padding-bottom: 1rem;
    }

    .map__store-address {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }

    .map__store-hours {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }

    .map__direction-link {
      display: inline-block;
      margin-top: 0.5rem;
    }

    .map__map-container {
      position: relative;
      width: 100%;
      height: 500px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
    }

    .map__map-container--mobile {
      margin-top: 1.5rem;
    }

    .map__gmap {
      width: 100%;
      height: 100%;
    }

    @media (max-width: 768px) {
      section[data-section-type="map"] {
        padding: calc(var(--map-padding) * 0.8) 0;
      }

      .map__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .map {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .map__store-name {
        font-size: 1.1rem;
      }

      .map__map-container {
        height: 400px;
      }
    }

    @media (max-width: 480px) {
      section[data-section-type="map"] {
        padding: var(--map-padding-mobile) 0;
      }

      .map__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }

      .map {
        gap: 1rem;
      }

      .map__store-list {
        gap: 0.75rem;
      }

      .map__store-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
      }

      .map__store-address,
      .map__store-hours {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
      }

      .map__map-container {
        height: 300px;
        border-radius: 6px;
      }

      .hidden-phone {
        display: none !important;
      }
    }
/* END_SECTION:map */

/* START_SECTION:mosaic (INDEX:44, SCOPED:FALSE) */
section[data-section-type='mosaic'] {
    background: var(--mosaic-bg);
    padding: var(--mosaic-padding) 0;
  }

  .mosaic {
    display: flex;
    gap: 1rem;
    height: auto;
  }

  .mosaic--small {
    --mosaic-height: 300px;
  }

  .mosaic--medium {
    --mosaic-height: 450px;
  }

  .mosaic--large {
    --mosaic-height: 600px;
  }

  .mosaic__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: var(--mosaic-height, 450px);
  }

  .mosaic__item {
    flex: 1;
    min-height: 0;
  }

  .promo-block {
    height: 100%;
  }

  @media (max-width: 768px) {
    section[data-section-type='mosaic'] {
      padding: calc(var(--mosaic-padding) * 0.8) 0;
    }

    .mosaic {
      flex-direction: column;
      gap: 0.75rem;
    }

    .mosaic--small {
      --mosaic-height: 250px;
    }
    .mosaic--medium {
      --mosaic-height: 350px;
    }
    .mosaic--large {
      --mosaic-height: 450px;
    }

    .mosaic__column {
      gap: 0.75rem;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type='mosaic'] {
      padding: var(--mosaic-padding-mobile) 0;
    }

    .mosaic--small {
      --mosaic-height: 200px;
    }
    .mosaic--medium {
      --mosaic-height: 250px;
    }
    .mosaic--large {
      --mosaic-height: 300px;
    }
  }
/* END_SECTION:mosaic */

/* START_SECTION:offers (INDEX:48, SCOPED:FALSE) */
.offers-section {
      background-color: var(--offers-bg);
      padding: var(--offers-padding) 0;
    }

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

    .offer-card {
      background: var(--offers-card-bg);
      border-radius: var(--offers-card-radius);
      box-shadow: var(--offers-card-shadow);
      overflow: hidden;
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .offer-card-image {
      width: 100%;
      height: var(--offers-image-height);
      overflow: hidden;
      background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .offer-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .offer-card:hover .offer-card-image img {
      transform: scale(1.05);
    }

    .offer-card-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .offer-card-title {
      font-size: var(--offers-title-size);
      font-weight: var(--offers-title-weight);
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .offer-card-text {
      font-size: var(--offers-content-size);
      color: #666;
      line-height: 1.6;
      flex: 1;
    }

    .offer-card-text p {
      margin: 0.5rem 0;
    }

    .offer-card-text p:first-child {
      margin-top: 0;
    }

    .offer-card-text p:last-child {
      margin-bottom: 0;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .offers-section {
        padding: calc(var(--offers-padding) * 0.8) 0;
      }

      .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: calc(var(--offers-gap) * 0.8);
      }

      .offer-card-title {
        font-size: calc(var(--offers-title-size) * 0.9);
      }

      .offer-card-image {
        height: calc(var(--offers-image-height) * 0.85);
      }
    }

    @media (max-width: 480px) {
      .offers-section {
        padding: calc(var(--offers-padding) * 0.6) 0;
      }

      .offers-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--offers-gap) * 0.6);
      }

      .offer-card {
        flex-direction: row;
      }

      .offer-card-image {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
      }

      .offer-card-content {
        padding: 1rem;
      }

      .offer-card-title {
        font-size: calc(var(--offers-title-size) * 0.8);
      }
    }
/* END_SECTION:offers */

/* START_SECTION:page (INDEX:49, SCOPED:FALSE) */
section[data-section-type="page"] {
    background: var(--page-bg, #ffffff);
    color: var(--page-text, #000000);
    padding: var(--page-padding, 60px) 0;
    display: block;
    width: 100%;
  }

  .page__content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .page__title {
    color: var(--page-text, #000000);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.2;
  }

  .page__content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--page-text, #000000);
  }

  .page__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--page-text, #000000);
  }

  .page__content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--page-text, #000000);
  }

  .page__content p {
    margin: 0 0 1.5rem 0;
  }

  .page__content ul,
  .page__content ol {
    margin: 0 0 1.5rem 1.5rem;
  }

  .page__content li {
    margin: 0 0 0.75rem 0;
  }

  .page__content a {
    color: var(--page-text, #000000);
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }

  .page__content a:hover {
    opacity: 0.7;
  }

  .page__content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--page-text, #000000);
    opacity: 0.85;
    font-style: italic;
  }

  .page__content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    section[data-section-type="page"] {
      padding: var(--page-padding-mobile, 40px) 0;
    }

    .page__content-wrapper {
      padding: 0 1rem;
    }

    .page__title {
      font-size: 1.75rem;
      margin: 0 0 1.5rem 0;
    }

    .page__content {
      font-size: 1rem;
    }

    .page__content h2 {
      font-size: 1.375rem;
      margin: 1.5rem 0 0.75rem 0;
    }

    .page__content h3 {
      font-size: 1.125rem;
      margin: 1.25rem 0 0.625rem 0;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type="page"] {
      padding: calc(var(--page-padding-mobile, 40px) / 1.5) 0;
    }

    .page__content-wrapper {
      padding: 0 0.75rem;
    }

    .page__title {
      font-size: 1.5rem;
      margin: 0 0 1.25rem 0;
    }

    .page__content {
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .page__content h2 {
      font-size: 1.25rem;
      margin: 1.25rem 0 0.625rem 0;
    }

    .page__content h3 {
      font-size: 1rem;
      margin: 1rem 0 0.5rem 0;
    }

    .page__content ul,
    .page__content ol {
      margin: 0 0 1rem 1rem;
    }

    .page__content li {
      margin: 0 0 0.5rem 0;
    }

    .page__content blockquote {
      padding: 0.75rem 1rem;
      margin: 1rem 0;
    }
  }
/* END_SECTION:page */

/* START_SECTION:product-recommendations (INDEX:53, SCOPED:FALSE) */
section[data-section-type="product-recommendations"] {
    background: var(--pr-bg, #ffffff);
    color: var(--pr-text, #000000);
    padding: var(--pr-padding, 60px) 0;
  }

  .product-recommendations {
    width: 100%;
  }

  .scroller {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .scroller__inner {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .product-list--scrollable {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  .product-list__item {
    flex: 0 0 auto;
    width: 250px;
  }

  @media (max-width: 768px) {
    section[data-section-type="product-recommendations"] {
      padding: var(--pr-padding-mobile, 40px) 0;
    }

    .scroller__inner {
      gap: 1rem;
    }

    .product-list__item {
      width: 180px;
    }
  }

  @media (max-width: 480px) {
    .product-list__item {
      width: 150px;
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:quick-links (INDEX:56, SCOPED:FALSE) */
.quick-links-section {
      background-color: var(--quicklinks-bg);
      padding: var(--quicklinks-padding) 0;
    }

    .quicklinks-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .quicklinks-title {
      font-size: var(--quicklinks-title-size);
      font-weight: var(--quicklinks-title-weight);
      margin: 0;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .quicklinks-view-all {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--quicklinks-link-color);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0.5rem 0;
      border-bottom: 2px solid transparent;
    }

    .quicklinks-view-all:hover {
      color: var(--quicklinks-link-hover-color);
      border-bottom-color: var(--quicklinks-link-hover-color);
      transform: translateX(4px);
    }

    .quicklinks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: var(--quicklinks-gap);
    }

    .quicklink-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      background-color: var(--quicklinks-link-bg);
      color: var(--quicklinks-link-color);
      text-decoration: none;
      border-radius: var(--quicklinks-radius);
      box-shadow: var(--quicklinks-shadow);
      font-size: var(--quicklinks-link-size);
      font-weight: var(--quicklinks-link-weight);
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .quicklink-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .quicklink-item:hover::before {
      left: 100%;
    }

    .quicklink-item:hover {
      color: var(--quicklinks-link-hover-color);
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .quicklink-label {
      flex: 1;
      display: block;
      position: relative;
      z-index: 1;
    }

    .quicklink-arrow {
      flex: 0 0 auto;
      margin-left: 0.5rem;
      transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
      opacity: 0.7;
    }

    .quicklink-item:hover .quicklink-arrow {
      opacity: 1;
      transform: translateX(4px);
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .quicklinks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .quicklinks-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: calc(var(--quicklinks-gap) * 0.8);
      }

      .quicklinks-title {
        font-size: max(24px, var(--quicklinks-title-size) * 0.8);
      }
    }

    @media (max-width: 480px) {
      .quick-links-section {
        padding: calc(var(--quicklinks-padding) * 0.6) 0;
      }

      .quicklinks-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: calc(var(--quicklinks-gap) * 0.6);
      }

      .quicklink-item {
        padding: 0.75rem;
        font-size: calc(var(--quicklinks-link-size) * 0.9);
      }

      .quicklinks-title {
        font-size: max(20px, var(--quicklinks-title-size) * 0.7);
      }
    }
/* END_SECTION:quick-links */

/* START_SECTION:search-content (INDEX:61, SCOPED:FALSE) */
section[data-section-type="search-content"] {
    background: var(--sc-bg);
    color: var(--sc-text);
    padding: var(--sc-padding) 0;
  }

  .link-search-results {
    background: var(--sc-bg);
    color: var(--sc-text);
  }

  .link-search-results__link {
    color: var(--sc-text);
    transition: opacity 0.3s ease;
  }

  .link-search-results__link:hover {
    opacity: 0.7;
  }

  @media (max-width: 768px) {
    section[data-section-type="search-content"] {
      padding: calc(var(--sc-padding) * 0.8) 0;
    }
  }

  @media (max-width: 480px) {
    section[data-section-type="search-content"] {
      padding: var(--sc-padding-mobile) 0;
    }
  }
/* END_SECTION:search-content */

/* START_SECTION:search (INDEX:62, SCOPED:FALSE) */
.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;
  }
/* END_SECTION:search */

/* START_SECTION:static-text-with-icons (INDEX:64, SCOPED:FALSE) */
.text-icons-section {
      background-color: var(--icons-bg);
      padding: var(--icons-padding) 0;
    }

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

    .icons-section-title {
      font-size: max(24px, var(--icons-title-size));
      font-weight: var(--icons-title-weight);
      margin: 0 0 1rem 0;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .icons-section-description {
      font-size: 16px;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: var(--icons-item-radius);
      box-shadow: var(--icons-item-shadow);
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .icon-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    .icon-item-icon {
      width: var(--icons-icon-size);
      height: var(--icons-icon-size);
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--icons-icon-bg);
      border-radius: 50%;
      margin-bottom: 1.5rem;
      color: var(--icons-icon-color);
      flex-shrink: 0;
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .icon-item:hover .icon-item-icon {
      transform: scale(1.1) rotate(-5deg);
    }

    .icon-item-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .icon-item-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
    }

    .icon-item-content {
      flex: 1;
    }

    .icon-item-title {
      font-size: var(--icons-title-size);
      font-weight: var(--icons-title-weight);
      margin: 0 0 0.75rem 0;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .icon-item-text {
      font-size: var(--icons-content-size);
      color: #666;
      line-height: 1.6;
      margin: 0;
    }

    .icon-item-text p {
      margin: 0;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .text-icons-section {
        padding: calc(var(--icons-padding) * 0.8) 0;
      }

      .icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: calc(var(--icons-gap) * 0.8);
      }

      .icon-item {
        padding: 1.5rem 1rem;
      }

      .icons-section-title {
        font-size: max(20px, var(--icons-title-size) * 0.85);
      }

      .icon-item-title {
        font-size: calc(var(--icons-title-size) * 0.9);
      }
    }

    @media (max-width: 480px) {
      .text-icons-section {
        padding: calc(var(--icons-padding) * 0.6) 0;
      }

      .icons-header {
        margin-bottom: 2rem;
      }

      .icons-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--icons-gap) * 0.6);
      }

      .icon-item {
        padding: 1.25rem 1rem;
      }

      .icons-section-title {
        font-size: max(18px, var(--icons-title-size) * 0.75);
      }

      .icon-item-title {
        font-size: calc(var(--icons-title-size) * 0.8);
      }

      .icon-item-icon {
        width: calc(var(--icons-icon-size) * 0.85);
        height: calc(var(--icons-icon-size) * 0.85);
        margin-bottom: 1rem;
      }
    }
/* END_SECTION:static-text-with-icons */

/* START_SECTION:team (INDEX:66, SCOPED:FALSE) */
.team-section {
      padding: var(--section-padding, 60px) 0;
      background: var(--section-bg, #ffffff);
    }

    .team-grid {
      display: grid;
      gap: var(--team-gap, 40px);
    }

    .team-section__divider {
      grid-column: 1 / -1;
      padding: 30px 0;
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }

    .team-section__title {
      font-size: var(--team-title-size, 32px);
      font-weight: var(--team-title-weight, 700);
      margin: 0;
      letter-spacing: -0.02em;
    }

    .team-member {
      display: flex;
      flex-direction: column;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member:hover {
      transform: translateY(-8px);
    }

    .team-member__image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--team-member-radius, 12px);
      aspect-ratio: 1;
      margin-bottom: 20px;
      background: #f3f4f6;
    }

    .team-member__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member:hover .team-member__image {
      transform: scale(var(--team-member-hover-scale, 1.08));
    }

    .team-member__overlay {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member:hover .team-member__overlay {
      opacity: 1;
    }

    .team-member__social {
      position: absolute;
      inset: 0;
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member:hover .team-member__social {
      opacity: 1;
    }

    .team-member__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      color: #000;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member__social-link:hover {
      background: #ffffff;
      transform: scale(1.1);
    }

    .team-member__placeholder {
      width: 100%;
      height: 100%;
      opacity: 0.3;
    }

    .team-member__content {
      padding: var(--team-member-radius, 12px);
      background: var(--team-member-bg, #ffffff);
      border: 1px solid var(--team-member-border, #e5e7eb);
      border-radius: var(--team-member-radius, 12px);
      box-shadow: var(--team-member-shadow, 0 2px 8px rgba(0, 0, 0, 0.06));
    }

    .team-member__name {
      font-size: var(--team-member-name-size, 20px);
      font-weight: var(--team-member-name-weight, 700);
      margin: 0 0 8px;
      letter-spacing: -0.01em;
    }

    .team-member__role {
      margin: 0 0 12px;
      font-size: var(--role-size, 14px);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .team-member__bio {
      margin: 0 0 16px;
      line-height: 1.6;
    }

    .team-member__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member__link:hover {
      gap: 10px;
    }

    .team-promotion {
      grid-column: 1 / -1;
      padding: var(--promo-padding, 40px);
      border-radius: var(--promo-radius, 12px);
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-items: center;
    }

    .team-promotion__title {
      margin: 0;
      font-size: var(--team-title-size, 28px);
    }

    .team-promotion__content {
      line-height: 1.6;
      opacity: 0.9;
    }

    .team-promotion__button {
      display: inline-block;
      padding: 14px 28px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
    }

    .team-promotion__button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    @media screen and (min-width: 768px) {
      .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media screen and (max-width: 768px) {
      .team-section__title {
        font-size: max(24px, var(--team-title-size, 32px) * 0.75);
      }

      .team-member__image-wrapper {
        aspect-ratio: 3 / 4;
      }
    }

    @media screen and (max-width: 480px) {
      .team-section {
        padding: 40px 0;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }

      .team-section__title {
        font-size: max(20px, var(--team-title-size, 32px) * 0.6);
      }
    }
/* END_SECTION:team */

/* START_SECTION:video (INDEX:68, SCOPED:FALSE) */
section[data-section-type='video'] {
      background: var(--video-bg);
      color: var(--video-text);
      padding: var(--video-padding) 0;
    }

    .video__title {
      font-size: 2rem;
      font-weight: 700;
      margin: 0 0 2rem 0;
      line-height: 1.2;
      color: var(--video-text);
    }

    .video-item {
      cursor: pointer;
      max-width: 800px;
      margin: 0 auto;
    }

    .video-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background: var(--video-text);
      opacity: 0.05;
    }

    .video-wrapper__image-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
      background: var(--video-text);
      opacity: 0.08;
    }

    .video-wrapper__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-wrapper__play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
    }

    .video-item:hover .video-wrapper__play-button {
      background: rgba(255, 255, 255, 1);
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .video-wrapper__play-button svg {
      width: 32px;
      height: 32px;
      color: var(--video-text);
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .placeholder-background {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--video-text), rgba(var(--video-text-rgb), 0.5));
      opacity: 0.1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {
      section[data-section-type='video'] {
        padding: calc(var(--video-padding) * 0.8) 0;
      }

      .video__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .video-wrapper__play-button {
        width: 60px;
        height: 60px;
      }

      .video-wrapper__play-button svg {
        width: 24px;
        height: 24px;
      }
    }

    @media (max-width: 480px) {
      section[data-section-type='video'] {
        padding: var(--video-padding-mobile) 0;
      }

      .video__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }

      .video-wrapper {
        border-radius: 6px;
      }

      .video-wrapper__play-button {
        width: 50px;
        height: 50px;
      }

      .video-wrapper__play-button svg {
        width: 20px;
        height: 20px;
      }
    }
/* END_SECTION:video */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:69, SCOPED:FALSE) */
.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;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:70, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:78, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */