/** Shopify CDN: Minification failed

Line 1606:10 Expected identifier but found whitespace
Line 1606:12 Unexpected "{"
Line 1606:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-404 {
    background-color: var(--section-bg);
    color: var(--text-color);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  .error-404__container {
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 10;
  }

  /* Illustration */
  .error-404__illustration {
    margin-bottom: 40px;
  }
  .error-404__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .error-404__digit {
    font-size: clamp(80px, 20vw, 150px);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  }
  .error-404__paw {
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    color: var(--accent-color);
    animation: pawBounce 2s ease-in-out infinite;
  }
  .error-404__paw svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.1));
  }

  @keyframes pawBounce {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
  }

  /* Content */
  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .error-404__title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
  }
  .error-404__message {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 450px;
    margin: 0;
  }

  /* Search */
  .error-404__search {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
  }
  .error-404__search-form {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 8px 5px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .error-404__search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 10px;
    font-size: 15px;
    outline: none;
    color: #333333;
    caret-color: #333333;
  }
  .error-404__search-input::placeholder {
    color: #888888;
  }
  .error-404__search-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: var(--accent-color);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .error-404__search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  /* Buttons */
  .error-404__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
  .error-404__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .error-404__button:hover {
    transform: translateY(-2px);
  }
  .error-404__button--primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .error-404__button--primary:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }
  .error-404__button--secondary {
    background-color: #fff;
    color: var(--heading-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .error-404__button--secondary:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  /* Popular Links */
  .error-404__links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .error-404__links-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 15px;
  }
  .error-404__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
  .error-404__link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
  }
  .error-404__link:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  /* Background Decorations */
  .error-404__decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
  }
  .error-404__decoration--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    opacity: 0.15;
  }
  .error-404__decoration--2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
  }

  /* Mobile */
  @media (max-width: 600px) {
    .error-404 {
      padding: 60px 20px;
    }
    .error-404__buttons {
      flex-direction: column;
      width: 100%;
    }
    .error-404__button {
      width: 100%;
      justify-content: center;
    }
  }
/* END_SECTION:404 */

/* START_SECTION:announcement-bar (INDEX:1) */
.announcement-bar {
    width: 100%;
  }
  .announcement-bar--sticky {
    position: sticky;
    top: 0;
    z-index: 1001;
  }
  .announcement-bar__item {
    background-color: var(--announcement-bg);
    color: var(--announcement-text);
    width: 100%;
  }
  .announcement-bar__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 15px var(--page-margin);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .announcement-bar__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .announcement-bar__link:hover {
    opacity: 0.8;
  }
  .announcement-bar__text {
    margin: 0;
  }

  @media (max-width: 768px) {
    .announcement-bar__container {
      padding: 12px var(--page-margin);
      font-size: 12px;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:cart (INDEX:4) */
.cart-section {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: 40px 0 80px;
    width: 100%;
  }
  .cart-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  .cart-section__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
  }

  /* Content Layout */
  .cart-section__content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
  }

  /* Items */
  .cart-section__items {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .cart-section__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    background-color: #f5f5f5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .cart-section__header-quantity,
  .cart-section__header-total {
    text-align: center;
  }

  /* Item */
  .cart-section__item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
  }
  .cart-section__item:last-child {
    border-bottom: none;
  }
  .cart-section__item-product {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .cart-section__item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    flex-shrink: 0;
  }
  .cart-section__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cart-section__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  .cart-section__item-title {
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 5px;
  }
  .cart-section__item-title:hover {
    color: var(--accent-color);
  }
  .cart-section__item-variant,
  .cart-section__item-selling-plan {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 3px;
  }

  .cart-section__item-price {
    text-align: center;
  }
  .cart-section__item-price-compare {
    display: block;
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 13px;
  }

  /* Quantity */
  .cart-section__item-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cart-section__quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
  }
  .cart-section__quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
  }
  .cart-section__quantity-btn:hover {
    background-color: #f5f5f5;
  }
  .cart-section__quantity-input {
    width: 40px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .cart-section__quantity-input::-webkit-inner-spin-button,
  .cart-section__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
  }
  .cart-section__item-remove {
    background: none;
    border: none;
    font-size: 12px;
    color: #e74c3c;
    cursor: pointer;
    text-decoration: underline;
  }

  .cart-section__item-total {
    text-align: center;
    font-weight: 600;
    position: relative;
  }

  /* Loading spinners on dynamic numbers while the cart is being updated */
  .cart-section__item-total,
  .cart-section__summary-row > span:nth-child(2) {
    position: relative;
    min-width: 24px;
    display: inline-block;
  }
  .cart-section__summary-row {
    align-items: center;
  }
  .cart-section--updating .cart-section__item-total,
  .cart-section--updating .cart-section__summary-row > span:nth-child(2) {
    color: transparent;
    text-shadow: none;
    pointer-events: none;
  }
  .cart-section--updating .cart-section__item-total::after,
  .cart-section--updating .cart-section__summary-row > span:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid var(--accent-color, #1F3B4D);
    border-top-color: transparent;
    border-radius: 50%;
    animation: cart-section-spin 0.7s linear infinite;
  }
  .cart-section--updating .cart-section__quantity-btn,
  .cart-section--updating .cart-section__item-remove {
    cursor: progress;
  }
  @keyframes cart-section-spin {
    to { transform: rotate(360deg); }
  }

  /* Summary */
  .cart-section__summary-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
  }
  .cart-section__summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .cart-section__summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .cart-section__summary-discount {
    color: #27ae60;
  }
  .cart-section__summary-shipping {
    opacity: 0.7;
    font-size: 13px;
  }
  .cart-section__summary-total {
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #f0f0f0;
  }

  /* Note */
  .cart-section__note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
  }
  .cart-section__note-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .cart-section__note-input {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    resize: vertical;
    font-size: 14px;
  }

  /* Checkout */
  .cart-section__checkout {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cart-section__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .cart-section__continue {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--accent-color);
    text-decoration: none;
  }
  .cart-section__continue:hover {
    text-decoration: underline;
  }

  /* Trust */
  .cart-section__trust {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cart-section__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.7;
  }

  /* Empty Cart */
  .cart-section__empty {
    text-align: center;
    padding: 80px 20px;
    background-color: white;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
  }
  .cart-section__empty svg {
    opacity: 0.3;
    margin-bottom: 20px;
  }
  .cart-section__empty-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .cart-section__empty-text {
    opacity: 0.7;
    margin-bottom: 30px;
  }
  .cart-section__empty-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cart-section__empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Mobile */
  @media (max-width: 991px) {
    .cart-section__content {
      grid-template-columns: 1fr;
    }
    .cart-section__summary-card {
      position: static;
    }
  }
  @media (max-width: 768px) {
    .cart-section__header {
      display: none;
    }
    .cart-section__item {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .cart-section__item-product {
      flex-direction: row;
    }
    .cart-section__item-price,
    .cart-section__item-quantity,
    .cart-section__item-total {
      text-align: left;
    }
    .cart-section__item-quantity {
      flex-direction: row;
      justify-content: space-between;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:category-circles (INDEX:5) */
.category-circles {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    position: relative;
    width: 100%;
  }
  .category-circles__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  /* Text */
  .category-circles__text {
    max-width: 500px;
  }
  .category-circles__heading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .category-circles__description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
  }

  /* Items */
  .category-circles__items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .category-circles__item {
    text-align: center;
  }
  .category-circles__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .category-circles__image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--circle-bg, #2A5A5A);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .category-circles__link:hover .category-circles__image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  .category-circles__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .category-circles__link:hover .category-circles__image {
    transform: scale(1.1);
  }
  .category-circles__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-circles__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.5;
  }
  .category-circles__button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--button-bg, #FFFFFF);
    color: var(--button-text, #000000);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
  }
  .category-circles__link:hover .category-circles__button {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .category-circles__container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .category-circles__text {
      max-width: none;
    }
  }
  @media (max-width: 600px) {
    .category-circles__image-wrapper {
      width: 140px;
      height: 140px;
    }
    .category-circles__items {
      gap: 20px;
    }
  }
/* END_SECTION:category-circles */

/* START_SECTION:collection (INDEX:6) */
.collection-section {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: 40px 0 80px;
    width: 100%;
  }
  .collection-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .collection-section__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .collection-section__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
  }
  .collection-section__description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
  }

  /* Toolbar */
  .collection-section__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 15px;
  }
  .collection-section__count {
    font-size: 14px;
    opacity: 0.7;
  }
  .collection-section__actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .collection-section__sort {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .collection-section__sort-label {
    font-size: 14px;
    font-weight: 500;
  }
  .collection-section__sort-select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  /* View Toggle */
  .collection-section__view-toggle {
    display: flex;
    gap: 5px;
  }
  .collection-section__view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .collection-section__view-btn.active,
  .collection-section__view-btn:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }

  /* Grid */
  .collection-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--products-per-row), 1fr);
    gap: 30px;
  }
  .collection-section__grid.list-view {
    grid-template-columns: 1fr;
  }
  .collection-section__grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }
  .collection-section__grid.list-view .product-card__image-wrapper {
    aspect-ratio: 1;
  }
  .collection-section__grid.list-view .product-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Empty State */
  .collection-section__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
  }

  /* Pagination */
  .collection-section__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
  }
  .collection-section__pagination-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.2s ease;
  }
  .collection-section__pagination-arrow:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }
  .collection-section__pagination-numbers {
    display: flex;
    gap: 5px;
  }
  .collection-section__pagination-number {
    min-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .collection-section__pagination-number.active,
  .collection-section__pagination-number:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }

  /* Mobile */
  @media (max-width: 991px) {
    .collection-section__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 768px) {
    .collection-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .collection-section__toolbar {
      flex-direction: column;
      align-items: stretch;
    }
    .collection-section__actions {
      justify-content: space-between;
    }
    .collection-section__grid.list-view .product-card {
      grid-template-columns: 120px 1fr;
    }
  }
  @media (max-width: 480px) {
    .collection-section__grid:not(.list-view) {
      grid-template-columns: 1fr 1fr;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.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) */
.contact-section {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
  }
  .contact-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  .contact-section__header {
    text-align: center;
    margin-bottom: 50px;
  }
  .contact-section__subheading {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
  }
  .contact-section__heading {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
  }
  .contact-section__description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
  }

  /* Grid Layout */
  .contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* Form Styles */
  .contact-section__form-wrapper {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }
  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contact-form__field {
    margin-bottom: 20px;
  }
  .contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
  }
  .contact-form__label .required {
    color: #e74c3c;
  }
  .contact-form__input,
  .contact-form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background-color: #fafafa;
    color: #333333;
    caret-color: #333333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
  }
  .contact-form__input::placeholder,
  .contact-form__textarea::placeholder {
    color: #999999;
    opacity: 1;
  }
  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    color: #333333;
  }
  .contact-form__textarea {
    resize: vertical;
    min-height: 150px;
  }
  .contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* Success & Error Messages */
  .contact-form__success {
    text-align: center;
    padding: 40px 20px;
    color: #27ae60;
  }
  .contact-form__success svg {
    margin-bottom: 20px;
  }
  .contact-form__success h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--heading-color);
  }
  .contact-form__success p {
    opacity: 0.7;
  }
  .contact-form__errors {
    background-color: #fee;
    border: 1px solid #e74c3c;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #c0392b;
  }
  .contact-form__errors ul {
    margin: 10px 0 0 20px;
  }

  /* Contact Info */
  .contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-info-item__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 12px;
    flex-shrink: 0;
  }
  .contact-info-item__content {
    flex: 1;
  }
  .contact-info-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
  }
  .contact-info-item__link,
  .contact-info-item__text {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.8;
    text-decoration: none;
    line-height: 1.5;
  }
  .contact-info-item__link:hover {
    color: var(--accent-color);
    opacity: 1;
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .contact-section__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .contact-section__info {
      order: -1;
    }
  }
  @media (max-width: 600px) {
    .contact-form__row {
      grid-template-columns: 1fr;
    }
    .contact-section__form-wrapper {
      padding: 25px;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:9) */
.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:footer (INDEX:10) */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    width: 100%;
  }
  .footer__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Main Footer */
  .footer__main {
    padding: 60px 0 40px;
  }

  /* Grid Layout */
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  /* Columns */
  .footer__column {
    min-width: 0;
  }
  .footer__column-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--footer-heading);
    margin-bottom: 20px;
  }
  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer__links li {
    margin-bottom: 10px;
  }
  .footer__link {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  .footer__link:hover {
    opacity: 1;
  }

  /* Newsletter */
  .footer__column--newsletter {
    grid-column: span 1;
  }
  .footer__newsletter-form {
    display: block;
  }
  .footer__newsletter-input-wrapper {
    display: flex;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 0;
    overflow: hidden;
  }
  .footer__newsletter-input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
  }
  .footer__newsletter-input::placeholder {
    color: #999;
  }
  .footer__newsletter-button {
    background: none;
    border: none;
    padding: 14px 16px;
    color: #333;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .footer__newsletter-button:hover {
    opacity: 0.7;
  }

  /* Social */
  .footer__column--social {
    grid-column: span 1;
  }
  .footer__social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer__social-link {
    color: var(--footer-text);
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .footer__social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

  /* Copyright */
  .footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }
  .footer__copyright-text {
    font-size: 13px;
    margin: 0;
    opacity: 0.7;
  }

  /* Mobile */
  @media (max-width: 991px) {
    .footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .footer__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .footer__column--newsletter,
    .footer__column--social {
      grid-column: span 1;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:fullwidth-banner (INDEX:11) */
.fullwidth-banner {
    position: relative;
    width: 100%;
    height: var(--banner-height);
    overflow: hidden;
  }
  .fullwidth-banner__slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .fullwidth-banner__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .fullwidth-banner__slide.active {
    opacity: 1;
    visibility: visible;
  }
  .fullwidth-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fullwidth-banner__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  .fullwidth-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
  }

  /* Content */
  .fullwidth-banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-color);
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
  }
  .fullwidth-banner__subheading {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
  }
  .fullwidth-banner__heading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .fullwidth-banner__description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Button */
  .fullwidth-banner__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .fullwidth-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: var(--button-bg, #D4FF4C);
    color: var(--button-text, #000000);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .fullwidth-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Dots */
  .fullwidth-banner__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
  }
  .fullwidth-banner__dot {
    width: 40px;
    height: 4px;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
  }
  .fullwidth-banner__dot.active,
  .fullwidth-banner__dot:hover {
    background-color: rgba(255, 255, 255, 1);
  }

  /* Mobile */
  @media (max-width: 768px) {
    .fullwidth-banner {
      height: var(--banner-height-mobile);
    }
  }
/* END_SECTION:fullwidth-banner */

/* START_SECTION:header (INDEX:12) */
.header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  .header__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: 20px;
  }

  /* Three Column Layout */
  .header__left,
  .header__right {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .header__left {
    justify-content: flex-start;
  }
  .header__center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__right {
    justify-content: flex-end;
  }

  /* Logo */
  .header__logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
  }
  .header__logo-text {
    color: {{ section.settings.text_color }};
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
  }

  .header__logo-img {
    max-height: 30px;
    width: auto;
  }
  .header__logo-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* Navigation */
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .header__menu-item {
    position: relative;
  }
  .header__menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 15px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .header__menu-link:hover {
    opacity: 0.7;
  }
  .header__dropdown-arrow {
    transition: transform 0.2s;
  }
  .header__menu-item.has-dropdown:hover .header__dropdown-arrow,
  .header__dropdown-toggle[aria-expanded='true'] .header__dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Dropdown */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-background);
    color: var(--color-foreground);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    list-style: none;
  }
  .header__menu-item.has-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header__dropdown-item {
    padding: 0;
  }
  .header__dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    transition: background-color 0.2s;
  }
  .header__dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .header__dropdown-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Actions */
  .header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header__icon {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .header__cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--header-text);
    color: var(--header-bg);
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Currency/Language Selectors - Enhanced */
  .header__currency,
  .header__language {
    position: relative;
  }

  .header__currency-toggle,
  .header__language-toggle {
    background: none;
    border: none;
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    transition: opacity 0.2s ease;
  }

  .header__currency-toggle:hover,
  .header__language-toggle:hover {
    opacity: 0.8;
  }

  .header__currency-toggle svg,
  .header__language-toggle svg {
    transition: transform 0.2s ease;
  }

  .header__currency-toggle[aria-expanded='true'] svg,
  .header__language-toggle[aria-expanded='true'] svg {
    transform: rotate(180deg);
  }

  /* Dropdown Container */
  .header__currency-dropdown,
  .header__language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--color-background);
    color: var(--color-foreground);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
  }

  .header__currency-dropdown.active,
  .header__language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Search Input */
  .header__currency-search-wrapper,
  .header__language-search-wrapper {
    position: relative;
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
  }

  .header__currency-search-icon,
  .header__language-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    pointer-events: none;
  }

  .header__currency-search,
  .header__language-search {
    width: 100%;
    padding: 10px 40px 10px 38px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 13px;
    background-color: white;
    color: var(--color-foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .header__currency-search:focus,
  .header__language-search:focus {
    outline: none;
    border-color: #2f788a;
    box-shadow: 0 0 0 3px rgba(47, 120, 138, 0.1);
  }

  .header__currency-search::placeholder,
  .header__language-search::placeholder {
    color: #999;
  }

  .header__currency-count,
  .header__language-count {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    pointer-events: none;
  }

  /* Options List */
  .header__currency-list,
  .header__language-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    max-height: 320px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header__currency-list--scrollable,
  .header__language-list--scrollable {
    max-height: 280px;
  }

  /* Custom scrollbar */
  .header__currency-list::-webkit-scrollbar,
  .header__language-list::-webkit-scrollbar {
    width: 6px;
  }

  .header__currency-list::-webkit-scrollbar-track,
  .header__language-list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .header__currency-list::-webkit-scrollbar-thumb,
  .header__language-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .header__currency-list::-webkit-scrollbar-thumb:hover,
  .header__language-list::-webkit-scrollbar-thumb:hover {
    background: #999;
  }

  /* Option Buttons */
  .header__currency-option,
  .header__language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-foreground);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .header__currency-option:hover,
  .header__language-option:hover,
  .header__currency-option:focus,
  .header__language-option:focus {
    background-color: rgba(47, 120, 138, 0.06);
    outline: none;
  }

  .header__currency-option.active,
  .header__language-option.active {
    font-weight: 600;
    color: #2f788a;
    background-color: rgba(47, 120, 138, 0.08);
  }

  .header__currency-option[hidden],
  .header__language-option[hidden] {
    display: none;
  }

  .header__currency-option-name,
  .header__language-option-name {
    flex: 1;
  }

  .header__currency-option-code {
    font-size: 11px;
    opacity: 0.7;
  }

  /* No Results State */
  .header__currency-no-results,
  .header__language-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
  }

  .header__currency-no-results svg,
  .header__language-no-results svg {
    opacity: 0.3;
    margin-bottom: 12px;
  }

  .header__currency-no-results p,
  .header__language-no-results p {
    font-size: 13px;
    margin: 0;
  }

  .header__currency-no-results[hidden],
  .header__language-no-results[hidden] {
    display: none;
  }

  /* Mobile Toggle */
  .header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 10px;
    order: 3;
  }
  .header__toggle-close {
    display: none;
  }
  .header__toggle[aria-expanded='true'] .header__toggle-open {
    display: none;
  }
  .header__toggle[aria-expanded='true'] .header__toggle-close {
    display: block;
  }

  /* Mobile Drawer */
  .header__mobile-drawer {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--header-bg);
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
  }
  .header__mobile-drawer.active {
    display: block;
  }
  .header__mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header__mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
  }
  .header__mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0 0 15px 20px;
    margin: 0;
  }
  .header__mobile-menu-item.active .header__mobile-dropdown {
    display: block;
  }
  .header__mobile-dropdown-link {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    opacity: 0.8;
  }
  .header__mobile-dropdown-link:hover {
    opacity: 1;
  }

  /* Search Toggle */
  .header__search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
  }
  .header__search-toggle:hover {
    opacity: 0.7;
  }

  /* Search Modal */
  .search-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .search-modal.active {
    opacity: 1;
    visibility: visible;
  }
  .search-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .search-modal__container {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    z-index: 1;
  }
  .search-modal__close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.2s;
    z-index: 2;
  }
  .search-modal__close:hover {
    opacity: 0.7;
  }
  .search-modal__content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }
  .search-modal.active .search-modal__content {
    transform: translateY(0);
  }
  .search-modal__form {
    width: 100%;
  }
  .search-modal__input-wrapper {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }
  .search-modal__input {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    color: #000000;
  }
  .search-modal__input::placeholder {
    color: #666666;
  }
  .search-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background-color: #000000;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .search-modal__submit:hover {
    background-color: #333333;
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .header__toggle {
      display: flex;
    }
    .header__left {
      display: none;
    }
    .header__center {
      flex: 1;
      justify-content: flex-start;
    }
    .header__right {
      flex: 0 0 auto;
    }
    .header__currency,
    .header__language {
      display: none;
    }
    .search-modal__close {
      top: 20px;
      right: 20px;
    }
    .search-modal__input {
      padding: 15px 18px;
      font-size: 16px;
    }
    .search-modal__submit {
      padding: 15px 18px;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:13) */
.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-slideshow (INDEX:14) */
.hero-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .hero-slideshow__wrapper {
    position: relative;
    height: var(--slide-height);
    overflow: hidden;
  }
  .hero-slideshow__slides {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: grab;
  }
  .hero-slideshow__slides.hero-slideshow__slides--dragging {
    cursor: grabbing;
    user-select: none;
  }
  .hero-slideshow__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  .hero-slideshow__slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 100%;
    position: relative;
  }
  .hero-slideshow__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-slideshow__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2F788A 0%, #1a4a55 100%);
  }
  .hero-slideshow__placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
  }
  .hero-slideshow__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
  }

  /* Content */
  .hero-slideshow__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--page-margin);
    z-index: 10;
  }
  .hero-slideshow__content-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    width: 100%;
  }
  .hero-slideshow__text {
    max-width: 700px;
    color: var(--text-color);
  }

  /* Text Alignment Variants */
  .text-align-center .hero-slideshow__content-inner {
    display: flex;
    justify-content: center;
  }
  .text-align-center .hero-slideshow__text {
    text-align: center;
  }
  .text-align-center .hero-slideshow__buttons {
    justify-content: center;
  }
  .text-align-right .hero-slideshow__content-inner {
    display: flex;
    justify-content: flex-end;
  }
  .text-align-right .hero-slideshow__text {
    text-align: right;
  }
  .text-align-right .hero-slideshow__buttons {
    justify-content: flex-end;
  }

  .hero-slideshow__subheading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.8;
  }
  .hero-slideshow__heading {
    font-size: clamp(36px, 6vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
  }
  .hero-slideshow__description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
  }

  /* Buttons */
  .hero-slideshow__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-slideshow__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 64px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 35px;
  }
  .hero-slideshow__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .hero-slideshow__button--primary {
    background-color: var(--button-bg, #FFFFFF);
    color: var(--button-text, #333333);
  }
  .hero-slideshow__button--secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
  }
  .hero-slideshow__button--secondary:hover {
    background-color: var(--text-color);
    color: var(--overlay-color);
  }

  /* Navigation Dots - Square/Rectangle Style */
  .hero-slideshow__dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
  }
  .hero-slideshow__dot {
    width: 50px;
    height: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
  }
  .hero-slideshow__dot.active,
  .hero-slideshow__dot:hover {
    background-color: rgba(255, 255, 255, 1);
  }

  /* Arrows */
  .hero-slideshow__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
  }
  .hero-slideshow__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: all;
  }
  .hero-slideshow__arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .hero-slideshow__wrapper {
      height: var(--slide-height-mobile);
    }
    .hero-slideshow__text {
      text-align: center;
      margin: 0 auto;
    }
    .hero-slideshow__content-inner {
      justify-content: center !important;
    }
    .hero-slideshow__buttons {
      justify-content: center;
    }
    .hero-slideshow__dots {
      bottom: 30px;
    }
    .hero-slideshow__arrow {
      width: 40px;
      height: 40px;
    }
  }
/* END_SECTION:hero-slideshow */

/* START_SECTION:image-with-text (INDEX:15) */
.image-with-text {
    background-color: var(--section-bg);
    color: var(--text-color);
    overflow: hidden;
    width: 100%;
  }

  /* Full Width Layout */
  .layout-full_width .image-with-text__fullwidth-wrapper {
    display: flex;
    min-height: 500px;
  }
  .layout-full_width .image-with-text__content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
  }
  .layout-full_width .image-with-text__image-side {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
  }
  .layout-full_width .image-with-text__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .layout-full_width .image-with-text__content {
    width: 100%;
    max-width: calc(var(--page-width) / 2);
    padding: 0 60px 0 var(--page-margin);
    margin-left: auto;
  }

  /* Image Position Variants */
  .image-position-left.layout-full_width .image-with-text__fullwidth-wrapper {
    flex-direction: row-reverse;
  }
  .image-position-left.layout-full_width .image-with-text__content-side {
    justify-content: flex-start;
  }
  .image-position-left.layout-full_width .image-with-text__content {
    padding: 0 var(--page-margin) 0 60px;
    margin-left: 0;
    margin-right: auto;
  }

  /* Contained Layout */
  .layout-contained .image-with-text__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: var(--section-padding-top) var(--page-margin) var(--section-padding-bottom);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .layout-contained.image-position-left .image-with-text__image-wrapper {
    order: -1;
  }
  .layout-contained .image-with-text__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
  }
  .layout-contained .image-with-text__image {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Content Styling */
  .image-with-text__content {
    max-width: 500px;
  }
  .image-with-text__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.5;
  }
  .image-with-text__subheading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.6;
  }
  .image-with-text__heading {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 25px;
    line-height: 1.3;
  }
  .image-with-text__text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.85;
  }
  .image-with-text__text p:not(:last-child) {
    margin-bottom: 1em;
  }

  /* Button - Underline style like reference */
  .image-with-text__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .image-with-text__button {
    display: inline-block;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
  }
  .image-with-text__button:hover {
    opacity: 0.7;
  }

  /* Placeholder */
  .image-with-text__placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-with-text__placeholder-svg {
    width: 50%;
    opacity: 0.3;
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .layout-full_width .image-with-text__fullwidth-wrapper {
      flex-direction: column;
    }
    .image-position-left.layout-full_width .image-with-text__fullwidth-wrapper {
      flex-direction: column-reverse;
    }
    .layout-full_width .image-with-text__content-side,
    .layout-full_width .image-with-text__image-side {
      flex: 0 0 auto;
      width: 100%;
    }
    .layout-full_width .image-with-text__image-side {
      height: 350px;
    }
    .layout-full_width .image-with-text__content {
      max-width: 100%;
      padding: 40px var(--page-margin);
      text-align: center;
    }
    .layout-full_width .image-with-text__buttons {
      justify-content: center;
    }
    .layout-contained .image-with-text__container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .layout-contained .image-with-text__content {
      max-width: none;
      text-align: center;
    }
    .layout-contained .image-with-text__buttons {
      justify-content: center;
    }
  }
/* END_SECTION:image-with-text */

/* START_SECTION:multi-column (INDEX:16) */
.multi-column {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    width: 100%;
  }
  .multi-column__border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: var(--page-width);
    margin: 0 auto 40px;
  }
  .multi-column__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .multi-column__header {
    text-align: center;
    margin-bottom: 50px;
  }
  .multi-column__subheading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 10px;
  }
  .multi-column__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
  }

  /* Grid */
  .multi-column__grid {
    display: grid;
    gap: 40px;
  }
  .multi-column__grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .multi-column__grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .multi-column__grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Item */
  .multi-column__item {
    text-align: center;
    padding: 20px;
  }
  .multi-column__icon {
    color: var(--icon-color);
    margin-bottom: 20px;
  }
  .multi-column__icon svg {
    margin: 0 auto;
  }

  /* Icon Shapes */
  .icon-shape-square .multi-column__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    /* background-color: rgba(0, 0, 0, 0.03); */
    border-radius: 8px;
  }
  .icon-shape-circle .multi-column__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
  }
  .icon-shape-none .multi-column__icon {
    display: block;
  }

  /* Content */
  .multi-column__item-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    margin-bottom: 10px;
  }
  .multi-column__item-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
  }

  /* Mobile */
  @media (max-width: 991px) {
    .multi-column__grid.columns-3,
    .multi-column__grid.columns-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .multi-column__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .multi-column__item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
/* END_SECTION:multi-column */

/* START_SECTION:multi-image-text (INDEX:17) */
.multi-image-text {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    width: 100%;
  }
  .multi-image-text__container {
    width: 100%;
    padding: 0;
  }

  /* Header */
  .multi-image-text__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 var(--page-margin);
  }
  .multi-image-text__subheading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 10px;
  }
  .multi-image-text__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    margin: 0;
  }

  /* Grid */
  .multi-image-text__grid {
    display: grid;
    gap: 25px;
  }
  .multi-image-text__grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .multi-image-text__grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .multi-image-text__grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Item */
  .multi-image-text__item {
    position: relative;
  }
  .multi-image-text__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .multi-image-text__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
  }

  .multi-image-text__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .multi-image-text__link:hover .multi-image-text__image {
    transform: scale(1.05);
  }
  .multi-image-text__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .multi-image-text__placeholder-svg {
    width: 50%;
    opacity: 0.3;
  }

  /* Overlay */
  .multi-image-text__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
    transition: opacity 0.3s ease;
  }
  .multi-image-text__link:hover .multi-image-text__overlay {
    opacity: calc(var(--overlay-opacity) + 0.1);
  }

  /* Content */
  .multi-image-text__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
  }
  .multi-image-text__item-title {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .multi-image-text__item-subtitle {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  /* Mobile */
  @media (max-width: 991px) {
    .multi-image-text__grid.columns-3,
    .multi-image-text__grid.columns-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    .multi-image-text__image-wrapper {
      height: 300px;
    }
  }
  @media (max-width: 600px) {
    .multi-image-text__grid {
      grid-template-columns: 1fr;
    }
    .multi-image-text__image-wrapper {
      height: 250px;
    }
  }
/* END_SECTION:multi-image-text */

/* START_SECTION:newsletter (INDEX:18) */
.newsletter {
    background-color: var(--newsletter-bg);
    color: var(--newsletter-text);
    padding: 60px 0;
    width: 100%;
  }
  .newsletter__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  .newsletter__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .newsletter__heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--newsletter-heading);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .newsletter__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  .newsletter__form {
    width: 100%;
  }
  .newsletter__input-wrapper {
    display: flex;
    background-color: var(--color-background, #ffffff);
    border-radius: 50px;
    overflow: hidden;
    padding: 5px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .newsletter__input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    color: var(--color-foreground, #333333);
    min-width: 0;
  }
  .newsletter__input::placeholder {
    color: var(--color-accent, #666666);
    opacity: 0.7;
  }
  .newsletter__button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background-color: var(--newsletter-button-bg);
    color: var(--newsletter-button-text);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity var(--transition-fast, 0.15s ease), transform var(--transition-fast, 0.15s ease),
      box-shadow var(--transition-fast, 0.15s ease);
    white-space: nowrap;
  }
  .newsletter__button:hover {
    opacity: 0.9;
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .newsletter__button svg {
    flex-shrink: 0;
  }
  .newsletter__success {
    margin-top: 16px;
    font-size: 14px;
    color: #4caf50;
  }
  .newsletter__error {
    margin-top: 16px;
    font-size: 14px;
    color: #f44336;
  }

  /* Mobile */
  @media (max-width: 600px) {
    .newsletter {
      padding: 40px 0;
    }
    .newsletter__input-wrapper {
      flex-direction: column;
      border-radius: var(--style-border-radius-cards, 12px);
      padding: 8px;
    }
    .newsletter__input {
      text-align: center;
      padding: 14px;
    }
    .newsletter__button {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:product-collage (INDEX:21) */
.product-collage {
    background-color: var(--section-bg);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    width: 100%;
  }
  .product-collage__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .product-collage__header {
    text-align: center;
    margin-bottom: 40px;
  }
  .product-collage__heading {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color, #1F3B4D);
  }
  .product-collage__description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
  }

  /* Grid Layout - 2:1 ratio makes all cards square */
  .product-collage__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 950px;
  }

  /* Large item spans both rows */
  .product-collage__item--large {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  /* Small items on right */
  .product-collage__item--top {
    grid-column: 2;
    grid-row: 1;
  }
  .product-collage__item--bottom {
    grid-column: 2;
    grid-row: 2;
  }

  /* Item fills grid cell */
  .product-collage__item {
    height: 100%;
  }

  /* Card Styles */
  .product-collage__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-collage__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  /* Image Wrapper */
  .product-collage__image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    flex: 1;
    /* Ensure images fill equally */
    min-height: 0;
  }
  .product-collage__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
  }
  .product-collage__card:hover .product-collage__image {
    transform: scale(1.05);
  }
  .product-collage__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  /* Badge */
  .product-collage__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Info */
  .product-collage__info {
    padding: 16px;
  }
  .product-collage__card--large .product-collage__info {
    padding: 20px;
  }
  .product-collage__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-collage__card--large .product-collage__title {
    font-size: 18px;
    font-weight: 600;
  }
  .product-collage__price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  .product-collage__card--large .product-collage__price {
    font-size: 16px;
  }
  .product-collage__price-compare {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 8px;
  }
  .product-collage__price-sale {
    color: #e53935;
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .product-collage__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      min-height: auto;
    }
    .product-collage__item--large {
      grid-column: 1 / 3;
      grid-row: 1;
    }
    .product-collage__item--top {
      grid-column: 1;
      grid-row: 2;
    }
    .product-collage__item--bottom {
      grid-column: 2;
      grid-row: 2;
    }
    .product-collage__image-wrapper {
      aspect-ratio: 1;
    }
  }
  @media (max-width: 576px) {
    .product-collage__grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
    }
    .product-collage__item--large {
      grid-column: 1;
      grid-row: 1;
    }
    .product-collage__item--top {
      grid-column: 1;
      grid-row: 2;
    }
    .product-collage__item--bottom {
      grid-column: 1;
      grid-row: 3;
    }
    .product-collage__header {
      margin-bottom: 24px;
    }
    .product-collage__info {
      padding: 14px;
    }
    .product-collage__card--large .product-collage__info {
      padding: 14px;
    }
    .product-collage__title {
      font-size: 14px;
    }
    .product-collage__card--large .product-collage__title {
      font-size: 15px;
    }
  }
/* END_SECTION:product-collage */

/* START_SECTION:product-slider (INDEX:22) */
.product-slider {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    overflow: hidden;
  }
  .product-slider__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .product-slider__header {
    margin-bottom: 40px;
    position: relative;
  }

  .product-slider__subheading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    background-color: var(--section-bg);
    padding: 0 20px;
  }
  .product-slider__heading {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background-color: var(--section-bg);
    padding: 0 30px;
  }
  .product-slider__description {
    font-size: 16px;
    opacity: 0.7;
    max-width: 600px;
    margin: 10px auto 0;
  }

  /* Slider Wrapper */
  .product-slider__wrapper {
    position: relative;
    margin: 0 -10px;
  }
  .product-slider__track-container {
    overflow: hidden;
    padding: 0 10px;
    margin: 0 -10px;
  }
  .product-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: grab;
  }
  .product-slider__track:active {
    cursor: grabbing;
  }
  .product-slider__slide {
    flex: 0 0 calc((100% - (var(--products-per-row) - 1) * 20px) / var(--products-per-row));
    min-width: calc((100% - (var(--products-per-row) - 1) * 20px) / var(--products-per-row));
  }

  /* Navigation Arrows */
  .product-slider__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
  .product-slider__arrow:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
  }
  .product-slider__arrow--prev {
    left: -22px;
  }
  .product-slider__arrow--next {
    right: -22px;
  }
  .product-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* Dots - Square Style */
  .product-slider__dots {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 30px;
  }
  .product-slider__dot {
    width: 50px;
    height: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
    padding: 0;
  }
  .product-slider__dot.active,
  .product-slider__dot:hover {
    background-color: var(--heading-color, #fff);
  }

  /* Footer */
  .product-slider__footer {
    text-align: center;
    margin-top: 30px;
  }
  .product-slider__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--heading-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }
  .product-slider__view-all:hover {
    gap: 12px;
  }

  /* Product Card */
  .product-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .product-card__image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-card__image {
    transform: scale(1.05);
  }
  .product-card__placeholder-svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  .product-card__info {
    padding: 15px;
  }
  .product-card__vendor {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 5px;
  }
  .product-card__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .product-card__price {
    font-size: 14px;
    font-weight: 600;
  }
  .product-card__price-compare {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 8px;
  }
  .product-card__price-sale {
    color: #e74c3c;
  }

  /* Mobile Styles */
  @media (max-width: 991px) {
    .product-slider__slide {
      flex: 0 0 calc((100% - 40px) / 3);
      min-width: calc((100% - 40px) / 3);
    }
    .product-slider__arrow {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .product-slider__slide {
      flex: 0 0 calc((100% - 20px) / 2);
      min-width: calc((100% - 20px) / 2);
    }
  }
  @media (max-width: 480px) {
    .product-slider__slide {
      flex: 0 0 calc(100% - 40px);
      min-width: calc(100% - 40px);
    }
  }
/* END_SECTION:product-slider */

/* START_SECTION:product (INDEX:23) */
.product-section {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: 40px 0;
    width: 100%;
  }
  .product-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* Gallery */
  .product-section__gallery {
    position: sticky;
    top: 100px;
  }
  .product-section__main-image {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 15px;
  }
  .product-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-section__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  .product-section__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
  }
  .product-section__badge--sale {
    background-color: #e74c3c;
    color: white;
  }
  .product-section__thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .product-section__thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.2s ease;
  }
  .product-section__thumbnail.active,
  .product-section__thumbnail:hover {
    border-color: var(--accent-color);
  }
  .product-section__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Info blocks */
  .product-section__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .product-section__vendor {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin: 0;
  }
  .product-section__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
  }
  .product-section__price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .product-section__price {
    font-size: 24px;
    font-weight: 600;
  }
  .product-section__price--compare {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 18px;
    font-weight: 400;
  }
  .product-section__price--sale {
    color: #e74c3c;
  }

  /* Form */
  .product-section__form {
    display: contents;
  }
  .product-section__variants {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .product-section__option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .product-section__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .product-section__option-value {
    cursor: pointer;
  }
  .product-section__option-value input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .product-section__option-swatch {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
  }
  .product-section__option-value input:checked + .product-section__option-swatch {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: white;
  }
  /* Unavailable variant value — crossed out */
  .product-section__option-value--unavailable .product-section__option-swatch {
    color: #999;
    border-color: #e0e0e0;
    background-color: #fafafa;
    opacity: 0.7;
  }
  .product-section__option-value--unavailable .product-section__option-swatch::before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1.5px;
    background-color: #b0b0b0;
    transform: rotate(-12deg);
    pointer-events: none;
  }
  .product-section__option-value--unavailable input:checked + .product-section__option-swatch {
    background-color: #f0f0f0;
    color: #777;
    border-color: #bbb;
  }
  .product-section__variant-select {
    display: none;
  }

  /* Quantity */
  .product-section__quantity-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: fit-content;
    transition: opacity 0.2s ease;
  }
  .product-section__quantity-wrapper[data-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
  }
  .product-section__quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s ease;
  }
  .product-section__quantity-btn:hover {
    background-color: #f5f5f5;
  }
  .product-section__quantity-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
  .product-section__quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .product-section__quantity-input::-webkit-inner-spin-button,
  .product-section__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
  }
  .product-section__quantity-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
  }

  /* Add to Cart */
  .product-section__add-to-cart {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .product-section__add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .product-section__add-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  /* Description */
  .product-section__description {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
  }
  .product-section__description h2,
  .product-section__description h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
  .product-section__description ul,
  .product-section__description ol {
    margin-left: 20px;
  }

  /* Share */
  .product-section__share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }
  .product-section__share-label {
    font-size: 14px;
    font-weight: 500;
  }
  .product-section__share-buttons {
    display: flex;
    gap: 10px;
  }
  .product-section__share-buttons a {
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.2s ease;
  }
  .product-section__share-buttons a:hover {
    opacity: 1;
  }

  .product-section__custom-text,
  .product-section__custom-liquid {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-section__sku {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
  }
  .product-section__sku-label {
    font-weight: 600;
    margin-right: 4px;
  }

  .product-section__inventory {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
  }
  .product-section__inventory--in {
    color: #27ae60;
  }
  .product-section__inventory--low {
    color: #e67e22;
  }
  .product-section__inventory--out {
    color: #e74c3c;
  }

  .product-section__icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 12px 16px;
    background-color: #f7f7f7;
    border-radius: 8px;
  }
  .product-section__icon-row-icon {
    font-size: 18px;
  }

  .product-section__collapsible {
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
  }
  .product-section__collapsible-summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
  }
  .product-section__collapsible-summary::-webkit-details-marker {
    display: none;
  }
  .product-section__collapsible-summary::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.2s ease;
  }
  .product-section__collapsible[open] .product-section__collapsible-summary::after {
    content: '−';
  }
  .product-section__collapsible-content {
    padding-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* Mobile */
  @media (max-width: 991px) {
    .product-section__container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .product-section__gallery {
      position: static;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:24) */
.search-section {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: 60px 0 100px;
    min-height: 60vh;
  }
  .search-section__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Hero Area */
  .search-section__hero {
    text-align: center;
    margin-bottom: 50px;
  }
  .search-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
  }

  /* Search Form */
  .search-section__form {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  .search-section__input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
  }
  .search-section__input-icon {
    position: absolute;
    left: 20px;
    opacity: 0.5;
    pointer-events: none;
  }
  .search-section__input {
    width: 100%;
    padding: 18px 50px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background-color: white;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .search-section__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(213, 182, 238, 0.4);
  }
  .search-section__input::placeholder {
    color: #999;
  }
  .search-section__clear {
    position: absolute;
    right: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.5;
    transition: opacity 0.2s ease;
    border-radius: 50%;
    background: #f0f0f0;
  }
  .search-section__clear:hover {
    opacity: 1;
  }
  .search-section__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
  }
  .search-section__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* Search Tips */
  .search-section__tips {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    text-align: left;
  }
  .search-section__tips-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
  }
  .search-section__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .search-section__tips-list li {
    font-size: 14px;
    opacity: 0.7;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
  }
  .search-section__tips-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
  }

  /* No Results */
  .search-section__no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .search-section__no-results-icon {
    display: inline-block;
    margin-bottom: 25px;
    opacity: 0.4;
  }
  .search-section__no-results-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .search-section__no-results-text {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 30px;
  }
  .search-section__suggestions {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
  .search-section__suggestions-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .search-section__suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .search-section__suggestions-list li {
    font-size: 14px;
    opacity: 0.7;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
  }
  .search-section__suggestions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
  }
  .search-section__browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .search-section__browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* Toolbar */
  .search-section__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 15px;
  }
  .search-section__results-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .search-section__count {
    font-size: 16px;
    font-weight: 600;
  }
  .search-section__terms {
    font-size: 14px;
    opacity: 0.7;
  }
  .search-section__actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .search-section__filter {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .search-section__filter-label {
    font-size: 14px;
    font-weight: 500;
  }
  .search-section__filter-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }

  /* View Toggle */
  .search-section__view-toggle {
    display: flex;
    gap: 5px;
  }
  .search-section__view-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .search-section__view-btn.active,
  .search-section__view-btn:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }

  /* Results Grid */
  .search-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--results-per-row), 1fr);
    gap: 30px;
  }
  .search-section__grid.list-view {
    grid-template-columns: 1fr;
  }

  /* Result Card */
  .search-result-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  .search-result-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .search-result-card__image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
  }
  .search-result-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .search-result-card:hover .search-result-card__image {
    transform: scale(1.05);
  }
  .search-result-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  }
  .search-result-card__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.3;
  }
  .search-result-card__badge {
    position: absolute;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
  }
  .search-result-card__badge--product {
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: #fff;
  }
  .search-result-card__badge--article {
    top: 10px;
    right: 10px;
    background-color: #6366f1;
    color: white;
  }
  .search-result-card__badge--page {
    top: 10px;
    right: 10px;
    background-color: #8b5cf6;
    color: white;
  }
  .search-result-card__badge--sale {
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
  }
  .search-result-card__content {
    padding: 18px;
  }
  .search-result-card__vendor,
  .search-result-card__meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 6px;
  }
  .search-result-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .search-result-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .search-result-card__price {
    font-size: 15px;
    font-weight: 600;
  }
  .search-result-card__price-compare {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 8px;
    font-weight: 400;
  }
  .search-result-card__price-sale {
    color: #e74c3c;
  }
  .search-result-card__date {
    font-size: 13px;
    opacity: 0.6;
  }

  /* List View */
  .search-section__grid.list-view .search-result-card {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .search-section__grid.list-view .search-result-card__link {
    display: contents;
  }
  .search-section__grid.list-view .search-result-card__image-wrapper {
    aspect-ratio: 1;
    border-radius: 12px 0 0 12px;
  }
  .search-section__grid.list-view .search-result-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
  }
  .search-section__grid.list-view .search-result-card__excerpt {
    -webkit-line-clamp: 3;
  }

  /* Pagination */
  .search-section__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
  }
  .search-section__pagination-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.2s ease;
  }
  .search-section__pagination-arrow:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }
  .search-section__pagination-numbers {
    display: flex;
    gap: 6px;
  }
  .search-section__pagination-number {
    min-width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .search-section__pagination-number.active,
  .search-section__pagination-number:hover {
    background-color: var(--text-color);
    color: white;
    border-color: var(--text-color);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .search-section__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 768px) {
    .search-section {
      padding: 40px 0 60px;
    }
    .search-section__form {
      flex-direction: column;
    }
    .search-section__submit {
      width: 100%;
      justify-content: center;
    }
    .search-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .search-section__toolbar {
      flex-direction: column;
      align-items: stretch;
    }
    .search-section__actions {
      justify-content: space-between;
    }
    .search-section__grid.list-view .search-result-card {
      grid-template-columns: 120px 1fr;
    }
    .search-section__grid.list-view .search-result-card__content {
      padding: 15px;
    }
  }
  @media (max-width: 480px) {
    .search-section__grid:not(.list-view) {
      grid-template-columns: 1fr 1fr;
    }
    .search-section__filter {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
    .search-section__filter-select {
      width: 100%;
    }
  }
/* END_SECTION:search */

/* START_SECTION:testimonials (INDEX:25) */
.testimonials {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    width: 100%;
  }
  .testimonials__border {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: var(--page-width);
    margin: 0 auto 50px;
  }
  .testimonials__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .testimonials__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  .testimonials__subheading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    background-color: var(--section-bg);
    padding: 0 20px;
  }
  .testimonials__title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    margin: 0;
    position: relative;
    display: inline-block;
    background-color: var(--section-bg);
    padding: 0 30px;
  }

  /* Grid */
  .testimonials__grid {
    display: grid;
    gap: 40px;
  }
  .testimonials__grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials__grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Item */
  .testimonials__item {
    text-align: center;
    padding: 30px 20px;
  }

  /* Avatar */
  .testimonials__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .testimonials__avatar-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
  }
  .testimonials__avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.3);
  }

  /* Icon Shape Variants */
  .icon-shape-circle .testimonials__avatar-image,
  .icon-shape-circle .testimonials__avatar-placeholder {
    border-radius: 50%;
  }
  .icon-shape-square .testimonials__avatar-image,
  .icon-shape-square .testimonials__avatar-placeholder {
    border-radius: 12px;
  }

  /* Content */
  .testimonials__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
  }
  .testimonials__quote {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: italic;
  }

  /* Rating */
  .testimonials__rating {
    display: flex;
    justify-content: center;
    gap: 4px;
  }
  .testimonials__star {
    color: var(--accent-color, #f5c518);
  }

  /* Mobile */
  @media (max-width: 991px) {
    .testimonials__grid.columns-3,
    .testimonials__grid.columns-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .testimonials__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:trust-badges (INDEX:26) */
.trust-badges {
    background-color: var(--section-bg);
    color: var(--text-color);
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    width: 100%;
  }
  .trust-badges__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  .trust-badges__item {
    text-align: center;
    padding: 20px;
  }
  .trust-badges__icon {
    color: var(--icon-color);
    margin-bottom: 20px;
  }
  .trust-badges__icon svg {
    margin: 0 auto;
  }
  .trust-badges__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .trust-badges__description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .trust-badges__container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .trust-badges__item {
      display: flex;
      align-items: center;
      text-align: left;
      gap: 20px;
      padding: 15px;
    }
    .trust-badges__icon {
      margin-bottom: 0;
      flex-shrink: 0;
    }
  }
/* END_SECTION:trust-badges */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:27) */
.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:28) */
.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:30) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-card (INDEX:32) */
.product-card {
    background-color: var(--card-bg, #f5f5f5);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .product-card__image-wrapper {
    aspect-ratio: var(--image-ratio, 1);
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
  }
  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .product-card__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  /* Only apply hover effect when product has multiple images */
  .product-card--has-hover-image:hover .product-card__image:not(.product-card__image--hover) {
    opacity: 0;
  }
  .product-card--has-hover-image:hover .product-card__image--hover {
    opacity: 1;
    transform: scale(1.05);
  }
  /* Zoom effect for single-image products */
  .product-card:not(.product-card--has-hover-image):hover .product-card__image {
    transform: scale(1.05);
  }
  .product-card__placeholder-svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  .product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
  }
  .product-card__badge--sale {
    background-color: #e74c3c;
    color: white;
  }
  .product-card__badge--sold-out {
    background-color: #333;
    color: white;
  }
  .product-card__info {
    padding: 15px;
  }
  .product-card__vendor {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 5px;
  }
  .product-card__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card__price {
    font-size: 14px;
    font-weight: 600;
  }
  .product-card__price-compare {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 8px;
    font-weight: 400;
  }
  .product-card__price-sale {
    color: #e74c3c;
  }

  /* Minimal Style */
  .product-card--minimal {
    background-color: transparent;
    border-radius: 0;
  }
  .product-card--minimal:hover {
    transform: none;
    box-shadow: none;
  }
  .product-card--minimal .product-card__image-wrapper {
    border-radius: 8px;
    overflow: hidden;
  }
  .product-card--minimal .product-card__info {
    padding: 15px 5px;
  }
  .product-card--minimal .product-card__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .product-card--minimal .product-card__price {
    font-size: 15px;
    font-weight: 500;
    color: #666;
  }
/* END_SNIPPET:product-card */