/** Shopify CDN: Minification failed

Line 657:13 Expected ":"
Line 658:11 Expected identifier but found "addEventListener("
Line 662:6 Comments in CSS use "/* ... */" instead of "//"
Line 669:6 Comments in CSS use "/* ... */" instead of "//"
Line 677:1 Expected identifier but found "%"
Line 679:0 Unexpected "{"
Line 679:1 Expected identifier but found "%"
Line 1305:14 Expected identifier but found whitespace
Line 1305:16 Unexpected "{"
Line 1305:25 Expected ":"
... and 1 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0, SCOPED:FALSE) */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 4rem 2rem;
    text-align: center;
  }

  .page-404__title {
    font-size: 6rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--color-accent, #2c5f8d);
  }

  .page-404__message {
    font-size: 1.5rem;
    margin: 0 0 2rem 0;
    color: #666;
  }

  .page-404__button {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--button-border-radius, 8px);
    transition: transform 0.2s ease;
  }

  .page-404__button:hover {
    transform: translateY(-2px);
  }
/* END_SECTION:404 */

/* START_SECTION:announcement-bar (INDEX:1, SCOPED:FALSE) */
.announcement-bar {
    background-color: var(--announcement-bg, var(--color-accent, #2c5f8d));
    color: var(--announcement-color, white);
    padding: 0.75rem 1rem;
    text-align: center;
    position: relative;
    z-index: 100;
  }

  .announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: var(--page-width);
    margin: 0 auto;
    position: relative;
  }

  .announcement-bar__text,
  .announcement-bar__link {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
  }

  .announcement-bar__link {
    transition: opacity 0.2s;
  }

  .announcement-bar__link:hover {
    opacity: 0.85;
    text-decoration: underline;
  }

  .announcement-bar__close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .announcement-bar__close:hover {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .announcement-bar__text,
    .announcement-bar__link {
      font-size: 0.85rem;
      padding-right: 2rem;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:cart (INDEX:4, SCOPED:FALSE) */
.cart-page {
    padding: 3rem 0;
    min-height: calc(100vh - 15rem);
  }

  .cart-page__container {
    display: grid;
    grid-template-columns: var(--content-grid);
  }

  .cart-page__container > * {
    grid-column: 2;
  }

  .cart-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  .cart-form {
    display: contents;
  }

  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
    opacity: 1 !important;
    transform: none !important;
  }

  .cart-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }

  .cart-item__image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cart-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s;
  }

  .cart-item__title:hover {
    color: var(--color-accent, #2c5f8d);
  }

  .cart-item__variant {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cart-item__variant-option {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    font-size: 0.875rem;
  }

  .cart-item__variant-option strong {
    font-weight: 600;
    color: var(--color-foreground);
  }

  .cart-item__properties {
    margin-top: 0.5rem;
  }

  .cart-item__property {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0.25rem 0;
  }

  .cart-item__property strong {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
  }

  .cart-item__price {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
    color: var(--color-accent, #2c5f8d);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }

  .cart-item__unit-price {
    font-size: 1rem;
  }

  .cart-item__line-price {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .cart-item__original-price {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.4);
    margin-left: 0.5rem;
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.25rem;
  }

  .quantity-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 4px;
  }

  .quantity-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
  }

  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .remove-btn {
    padding: 0.5rem;
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 4px;
  }

  .remove-btn:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
  }

  .cart-summary {
    position: sticky;
    top: 6rem;
  }

  .cart-summary__content {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
  }

  .cart-summary__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
  }

  .cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-summary__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent, #2c5f8d);
  }

  .cart-summary__note {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 1rem 0 1.5rem 0;
  }

  .cart-summary__checkout {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    border: none;
    border-radius: var(--button-border-radius, 8px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
  }

  .cart-summary__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
  }

  .cart-summary__update {
    width: 100%;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--color-foreground);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
  }

  .cart-summary__update:hover {
    border-color: var(--color-accent, #2c5f8d);
    color: var(--color-accent, #2c5f8d);
  }

  .cart-summary__continue {
    display: block;
    text-align: center;
    color: var(--color-accent, #2c5f8d);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
  }

  .cart-summary__continue:hover {
    opacity: 0.7;
  }

  .cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 2rem auto;
    opacity: 1 !important;
    transform: none !important;
  }

  .cart-empty__icon {
    color: var(--color-accent, #2c5f8d);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
  }

  .cart-empty__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .cart-empty__text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 2rem 0;
    line-height: 1.6;
  }

  .cart-empty__button {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--button-border-radius, 8px);
    transition: all 0.3s;
  }

  .cart-empty__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
  }

  @media (max-width: 1024px) {
    .cart-page__content {
      grid-template-columns: 1fr;
    }

    .cart-summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-page {
      padding: 2rem 0;
    }

    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
      padding: 1rem;
      position: relative;
    }

    .cart-item__image {
      grid-row: 1 / 3;
    }

    .cart-item__details {
      grid-column: 2;
    }

    .cart-item__quantity {
      grid-column: 2;
      justify-self: start;
    }

    .cart-item__remove {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
    }

    .cart-empty {
      padding: 3rem 1rem;
    }

    .cart-empty__icon svg {
      width: 100px;
      height: 100px;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:5, SCOPED:FALSE) */
.collection-page-wrapper {
    display: grid;
    grid-template-columns: var(--content-grid);
  }

  .collection-page {
    grid-column: 2;
    padding: 2rem 0;
  }

  .collection-page__header {
    margin-bottom: 2rem;
    text-align: center;
  }

  /* Toolbar */
  .collection-page__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
  }

  .collection-page__count {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
  }

  .collection-page__sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .collection-page__sort-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
  }

  .collection-page__sort-select {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background-color: white;
    font-size: 0.9375rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s;
  }

  .collection-page__sort-select:focus {
    outline: none;
    border-color: var(--color-accent, #2c5f8d);
  }

  @media (max-width: 640px) {
    .collection-page__toolbar {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }

    .collection-page__sort {
      width: 100%;
    }

    .collection-page__sort-select {
      flex: 1;
    }
  }

  .collection-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .collection-page__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }

  .collection-page__products {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  @media (max-width: 1024px) {
    .collection-page__products {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .collection-page__products {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .collection-page__products {
      grid-template-columns: 1fr;
    }
  }

  .product-card {
    position: relative;
  }

  .product-card__link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground, #1a1a1a);
    transition: transform 0.3s ease;
  }

  .product-card__link:hover {
    transform: translateY(-4px);
  }

  .product-card__image {
    position: relative;
   javascript %}
  document.addEventListener('DOMContentLoaded', function() {
    const sortSelect = document.getElementById('sort-by');
    
    if (sortSelect) {
      // Set current sort value from URL
      const params = new URLSearchParams(window.location.search);
      const currentSort = params.get('sort_by');
      if (currentSort) {
        sortSelect.value = currentSort;
      }

      // Handle sort change
      sortSelect.addEventListener('change', function() {
        const url = new URL(window.location.href);
        url.searchParams.set('sort_by', this.value);
        window.location.href = url.toString();
      });
    }
  });
{% endjavascript %}

{%  width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
    border-radius: 4px;
  }

  .product-card__image img,
  .product-card__placeholder svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-card__link:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__image img {
    transition: transform 0.3s ease;
  }

  .product-card__info {
    padding: 0 0.5rem;
  }

  .product-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

  .product-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-weight: 600;
  }

  .product-card__price--sale {
    color: #c41e3a;
  }

  .product-card__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
  }

  .collection-page__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: #666;
  }

  .collection-page__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
/* END_SECTION:collection */

/* START_SECTION:collections-grid (INDEX:6, SCOPED:FALSE) */
.collections-grid {
    padding: 4rem 0;
  }

  .collections-grid__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
  }

  .collections-grid__container {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: 2rem;
  }

  @media (max-width: 1024px) {
    .collections-grid__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .collections-grid__container {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:collections-grid */

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

/* START_SECTION:contact-form (INDEX:8, SCOPED:FALSE) */
.contact-page {
    display: grid;
    grid-template-columns: var(--content-grid);
    padding: 3rem 0;
  }

  .contact-page > * {
    grid-column: 2;
  }

  .contact-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .contact-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .contact-page__subheading {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
  }

  .contact-page__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }

  @media (max-width: 768px) {
    .contact-page__content {
      grid-template-columns: 1fr;
    }
  }

  .contact-page__form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
  }

  .contact-page__success {
    padding: 1rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #155724;
  }

  .contact-page__errors {
    padding: 1rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #721c24;
  }

  .contact-page__field {
    margin-bottom: 1.5rem;
  }

  .contact-page__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .contact-page__field input,
  .contact-page__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
  }

  .contact-page__field input:focus,
  .contact-page__field textarea:focus {
    outline: none;
    border-color: var(--color-accent, #2c5f8d);
  }

  .contact-page__submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .contact-page__submit:hover {
    transform: translateY(-2px);
  }

  .contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-page__info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }

  .contact-page__info-item {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
  }

  .contact-page__info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-accent, #2c5f8d);
  }

  .contact-page__info-item p {
    margin: 0;
    line-height: 1.6;
  }

  .contact-page__info-item a {
    color: var(--color-foreground, #1a1a1a);
    text-decoration: none;
  }

  .contact-page__info-item a:hover {
    color: var(--color-accent, #2c5f8d);
  }
/* END_SECTION:contact-form */

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

/* START_SECTION:faq (INDEX:10, SCOPED:FALSE) */
.faq-section {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
  }

  .faq-section__subheading {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin: 0 0 3rem 0;
  }

  .faq-section__items {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
  }
/* END_SECTION:faq */

/* START_SECTION:featured-collection (INDEX:11, SCOPED:FALSE) */
.featured-collection {
    padding: 4rem 0;
  }

  .featured-collection__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .featured-collection__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }

  .featured-collection__view-all {
    color: var(--color-accent, #2c5f8d);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
  }

  .featured-collection__view-all:hover {
    transform: translateX(4px);
  }

  .featured-collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: calc(var(--products-to-show) * 300px);
  }

  @media (max-width: 768px) {
    .featured-collection__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  .product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: white;
  }

  .product-card__link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground, #1a1a1a);
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-card__link {
    transform: translateY(-4px);
  }

  .product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
    border-radius: 4px;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card__link:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__info {
    padding: 0 0.5rem;
  }

  .product-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

  .product-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-weight: 600;
  }

  .product-card__price--sale {
    color: #c41e3a;
  }

  .product-card__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
  }

  .featured-collection__placeholder {
    padding: 4rem;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 8px;
  }
/* END_SECTION:featured-collection */

/* START_SECTION:footer (INDEX:12, SCOPED:FALSE) */
.footer {
    background-color: #f9f9f9;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
  }

  .footer__container {
    max-width: var(--max-page-width, 90rem);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  .footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ddd;
  }

  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--color-accent, #2c5f8d);
  }

  .footer__slogan {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-accent, #2c5f8d);
    margin: 0 0 1rem 0;
  }

  .footer__text {
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .footer__heading {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__links a {
    text-decoration: none;
    color: #666;
    transition: color 0.2s ease;
  }

  .footer__links a:hover {
    color: var(--color-accent, #2c5f8d);
  }

  .footer__newsletter p {
    line-height: 1.6;
    color: #666;
    margin: 0 0 1rem 0;
  }

  .footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
  }

  .footer__newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

  .footer__newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
  }

  .footer__newsletter-button:hover {
    background-color: color-mix(in srgb, var(--color-accent, #2c5f8d) 85%, black);
  }

  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer__social {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .footer__social a {
    color: #666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__social a:hover {
    color: var(--color-accent, #2c5f8d);
    transform: translateY(-2px);
  }

  .footer__copyright {
    color: #666;
    font-size: 0.9rem;
  }

  .footer__payment {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .footer__payment svg {
    height: 24px;
    width: auto;
  }

  @media (max-width: 768px) {
    .footer__top {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer__bottom {
      flex-direction: column;
      text-align: center;
    }

    .footer__newsletter-form {
      flex-direction: column;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:13, SCOPED:FALSE) */
header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-margin);
    position: sticky;
    top: 0;
    background-color: var(--color-background, white);
    z-index: 98;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .header__logo img {
    display: block;
    height: auto;
    width: auto;
    max-width: {{ section.settings.logo_width }}px;
    max-height: 3rem;
  }

  .header__logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-foreground);
    letter-spacing: 0.05em;
  }

  /* Hamburger Menu */
  .header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 102;
    order: 2;
  }

  .header__hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-foreground);
    transition: all 0.3s ease;
  }

  .header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Desktop Menu */
  .header__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .header__menu a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .header__menu a:hover {
    color: var(--color-accent, #2c5f8d);
  }

  .header__close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-foreground);
    z-index: 102;
  }

  .header__icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    order: 3;
  }

  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
  }

  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }

  header svg {
    width: 2rem;
  }

  .header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .header__overlay.active {
    display: block;
    opacity: 1;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    header {
      padding: 0 1rem;
    }

    .header__logo {
      order: 1;
      flex: 0 0 auto;
    }

    .header__hamburger {
      display: flex;
      margin-left: auto;
      margin-right: 0.5rem;
    }
    .header__hamburger.active {
      display: none;
    }

    .header__icons {
      order: 3;
      gap: 0.75rem;
    }

    .header__icons svg {
      width: 1.5rem;
    }

    .header__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(320px, 85vw);
      height: 100vh;
      background-color: var(--color-background, white);
      flex-direction: column;
      align-items: flex-start;
      padding: 5rem 2rem 2rem;
      gap: 1.5rem;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 101;
      overflow-y: auto;
    }

    .header__menu.active {
      right: 0;
    }

    .header__menu a {
      font-size: 1.125rem;
      width: 100%;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header__menu a:last-child {
      border-bottom: none;
    }

    .header__close {
      display: block;
    }
  }
/* END_SECTION:header */

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

/* START_SECTION:hero (INDEX:15, SCOPED:FALSE) */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: var(--content-grid);
    min-height: var(--min-height);
    overflow: hidden;
    width: 100%;
  }

  .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__background--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity));
    z-index: 1;
  }

  .hero__content {
    grid-column: 2;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: var(--text-align);
    text-align: var(--text-align);
    padding: 4rem 2rem;
    color: var(--text-color);
  }

  .hero__heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    max-width: 20ch;
  }

  .hero__subheading {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 50ch;
  }

  .hero__button {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--button-border-radius, 8px);
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .hero__button:hover {
    transform: translateY(-2px);
    background-color: color-mix(in srgb, var(--color-accent, #2c5f8d) 85%, black);
  }

  @media (max-width: 768px) {
    .hero {
      min-height: calc(100vh - 5rem);
    }

    .hero__content {
      align-items: center;
      text-align: center;
      padding: 3rem 1.5rem;
    }

    .hero__heading {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero__subheading {
      font-size: clamp(0.9rem, 4vw, 1.125rem);
      margin-bottom: 1.5rem;
    }

    .hero__button {
      padding: 0.875rem 2rem;
      font-size: 0.9rem;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:image-with-text (INDEX:16, SCOPED:FALSE) */
.image-with-text {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
  }

  .image-with-text--left {
    grid-template-columns: 1fr 1fr;
  }

  .image-with-text--right {
    grid-template-columns: 1fr 1fr;
  }

  .image-with-text--right .image-with-text__media {
    order: 2;
  }

  @media (max-width: 768px) {
    .image-with-text {
      grid-template-columns: 1fr !important;
    }

    .image-with-text--right .image-with-text__media {
      order: 0;
    }
  }

  .image-with-text__media {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .image-with-text__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-with-text__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: var(--text-align);
  }

  .image-with-text__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }

  .image-with-text__text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .image-with-text__button {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--button-border-radius, 8px);
    transition: transform 0.2s ease;
    align-self: flex-start;
    width: auto;
  }

  .image-with-text__button:hover {
    transform: translateY(-2px);
  }
/* END_SECTION:image-with-text */

/* START_SECTION:mission (INDEX:17, SCOPED:FALSE) */
.mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
  }

  .mission__image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .mission__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .mission__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: var(--text-align);
  }

  .mission__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-foreground, #1a1a1a);
  }

  .mission__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-foreground, #1a1a1a);
  }

  .mission__button {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--button-border-radius, 8px);
    transition: transform 0.2s ease, background-color 0.2s ease;
    align-self: flex-start;
    width: auto;
  }

  .mission__button:hover {
    transform: translateY(-2px);
    background-color: color-mix(in srgb, var(--color-accent, #2c5f8d) 85%, black);
  }

  @media (max-width: 768px) {
    .mission {
      grid-template-columns: 1fr;
    }

    .mission__content {
      text-align: center;
    }

    .mission__button {
      align-self: center;
    }
  }
/* END_SECTION:mission */

/* START_SECTION:page-content (INDEX:18, SCOPED:FALSE) */
.page-content {
    padding: 3rem 0;
  }

  .page-content__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
  }

  .page-content__text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .page-content__text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
  }

  .page-content__text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
  }

  .page-content__text p {
    margin: 1rem 0;
  }

  .page-content__text ul,
  .page-content__text ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }

  .page-content__text li {
    margin: 0.5rem 0;
  }
/* END_SECTION:page-content */

/* START_SECTION:product (INDEX:21, SCOPED:FALSE) */
.product-page {
    display: grid;
    grid-template-columns: var(--content-grid);
    padding: 2rem 0;
  }

  .product-page > * {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  @media (max-width: 768px) {
    .product-page {
      padding: 1rem 0;
    }

    .product-page > * {
      grid-template-columns: 1fr;
    }
  }

  /* Gallery */
  .product-page__gallery {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .product-page__main-image {
    flex: 1;
    position: sticky;
    top: 6rem;
    align-self: start;
  }

  .product-page__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 12px;
    cursor: zoom-in;
  }

  .product-page__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-page__image-container:hover img {
    transform: scale(1.05);
  }

  .product-page__zoom-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    opacity: 0;
  }

  .product-page__image-container:hover .product-page__zoom-button {
    opacity: 1;
  }

  .product-page__zoom-button:hover {
    transform: scale(1.1);
  }

  /* Thumbnails */
  .product-page__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 0.5rem 0;
  }

  .product-page__thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: all 0.2s;
  }

  .product-page__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-page__thumbnail:hover {
    border-color: var(--color-accent, #2c5f8d);
  }

  .product-page__thumbnail.active {
    border-color: var(--color-accent, #2c5f8d);
    box-shadow: 0 2px 8px rgba(44, 95, 141, 0.3);
  }

  /* Lightbox */
  .product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .product-lightbox.active {
    display: flex;
  }

  .product-lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
  }

  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .product-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .product-lightbox__close:hover {
    transform: rotate(90deg);
  }

  .product-page__images {
    display: grid;
    gap: 1rem;
  }

  .product-page__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
  }

  .product-page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-page__placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-page__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-page__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
  }

  .product-page__price {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .product-page__price--sale {
    color: #c41e3a;
  }

  .product-page__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
  }

  .product-page__description {
    line-height: 1.6;
    color: #666;
  }

  .product-page__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-page__option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-page__option-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-page__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-page__option-values input[type="radio"] {
    display: none;
  }

  .product-page__option-value {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
  }

  .product-page__option-value:hover {
    border-color: var(--color-accent, #2c5f8d);
  }

  .product-page__option-values input[type="radio"]:checked + .product-page__option-value {
    border-color: var(--color-accent, #2c5f8d);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
  }

  .product-page__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-page__quantity label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-page__quantity-input {
    width: 100px;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

  .product-page__add-to-cart {
    display: inline-block;
    padding: var(--button-padding, 1rem 2rem);
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    border: none;
    border-radius: var(--button-border-radius, 8px);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .product-page__add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    background-color: color-mix(in srgb, var(--color-accent, #2c5f8d) 85%, black);
  }

  .product-page__add-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .shopify-payment-button {
    margin-top: 0.5rem;
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:22, 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:testimonials (INDEX:23, SCOPED:FALSE) */
.testimonials {
    padding: 4rem 0;
    background-color: #fafafa;
  }

  .testimonials__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
  }

  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: 2rem;
  }

  @media (max-width: 1024px) {
    .testimonials__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .testimonials__grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:collection-card (INDEX:24, SCOPED:FALSE) */
.collection-card {
    position: relative;
  }

  .collection-card__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: white;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .collection-card__link:hover {
    transform: translateY(-4px);
  }

  .collection-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .collection-card__image img,
  .collection-card__image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-card__link:hover .collection-card__image img {
    transform: scale(1.05);
  }

  .collection-card__image img {
    transition: transform 0.3s ease;
  }

  .collection-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
  }

  .collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 1;
  }

  .collection-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: white;
  }

  .collection-card__count {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .collection-card__placeholder {
    opacity: 0.6;
  }
/* END_BLOCK:collection-card */

/* START_BLOCK:faq-item (INDEX:25, SCOPED:FALSE) */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
  }

  .faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .faq-item__question::-webkit-details-marker {
    display: none;
  }

  .faq-item__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
  }

  .faq-item__answer {
    margin-top: 1rem;
    line-height: 1.6;
    color: #666;
    padding-right: 2rem;
  }
/* END_BLOCK:faq-item */

/* START_BLOCK:group (INDEX:26, 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:testimonial (INDEX:27, SCOPED:FALSE) */
.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    height: 100%;
  }

  .testimonial__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial__quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
    color: var(--color-foreground, #1a1a1a);
  }

  .testimonial__author {
    font-weight: 600;
    margin: 0;
    color: var(--color-accent, #2c5f8d);
  }
/* END_BLOCK:testimonial */

/* START_BLOCK:text (INDEX:28, 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:animations (INDEX:29, SCOPED:FALSE) */
/* Base animation styles */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Link hover animations */
  a {
    transition: color 0.3s ease, transform 0.2s ease;
  }

  /* Button hover effects */
  button,
  .hero__button,
  .mission__button,
  .image-with-text__button,
  .product-page__add-to-cart,
  .contact-page__submit,
  .page-404__button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  button:hover,
  .hero__button:hover,
  .mission__button:hover,
  .image-with-text__button:hover,
  .product-page__add-to-cart:hover:not(:disabled),
  .contact-page__submit:hover,
  .page-404__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  button:active,
  .hero__button:active,
  .mission__button:active,
  .image-with-text__button:active,
  .product-page__add-to-cart:active,
  .contact-page__submit:active,
  .page-404__button:active {
    transform: translateY(0);
  }

  /* Card hover effects */
  .product-card,
  .collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-card:hover,
  .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  /* Image scale on hover */
  .product-card__image,
  .collection-card__image {
    overflow: hidden;
  }

  .product-card__image img,
  .collection-card__image img {
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-card__image img,
  .collection-card:hover .collection-card__image img {
    transform: scale(1.08);
  }

  /* Testimonial cards */
  .testimonial {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  /* Input focus animations */
  input:focus,
  textarea:focus,
  select:focus {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
  }

  /* Header scroll effect */
  header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Navigation links */
  .header__menu a {
    position: relative;
  }

  .header__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent, #2c5f8d);
    transition: width 0.3s ease;
  }

  .header__menu a:hover::after {
    width: 100%;
  }

  /* FAQ accordion animation */
  details summary {
    transition: color 0.3s ease;
  }

  details[open] summary {
    color: var(--color-accent, #2c5f8d);
  }

  /* Loading animation for images */
  img {
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
/* END_SNIPPET:animations */

/* START_SNIPPET:back-to-top (INDEX:30, SCOPED:FALSE) */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent, #2c5f8d);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
  }

  .back-to-top:active {
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 1.5rem;
      right: 1.5rem;
      width: 45px;
      height: 45px;
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .back-to-top {
      transition: opacity 0.3s ease;
    }
  }
/* END_SNIPPET:back-to-top */

/* START_SNIPPET:breadcrumbs (INDEX:31, SCOPED:FALSE) */
.breadcrumbs {
    background-color: rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: var(--content-grid);
    padding: 1rem 0;
  }

  .breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    grid-column: 2;
  }

  .breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

  .breadcrumbs__link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumbs__link:hover {
    color: var(--color-accent, #2c5f8d);
  }

  .breadcrumbs__link svg {
    flex-shrink: 0;
  }

  .breadcrumbs__separator {
    color: rgba(0, 0, 0, 0.3);
    user-select: none;
  }

  .breadcrumbs__current {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .breadcrumbs {
      padding: 0.75rem var(--page-margin);
    }

    .breadcrumbs__item {
      font-size: 0.8125rem;
    }

    .breadcrumbs__link svg {
      width: 14px;
      height: 14px;
    }
  }
/* END_SNIPPET:breadcrumbs */

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