/** Shopify CDN: Minification failed

Line 2371:15 Expected identifier but found whitespace
Line 2371:17 Unexpected "{"
Line 2371:26 Expected ":"
Line 2376:11 Expected identifier but found whitespace
Line 2376:13 Unexpected "{"
Line 2376:22 Expected ":"
Line 2376:72 Expected ":"
Line 2377:15 Expected identifier but found whitespace
Line 2377:17 Unexpected "{"
Line 2377:26 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
.error-404 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
  .error-404__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  .error-404__content {
    text-align: center;
    color: #fff;
  }
  .error-404__code {
    font-size: 8rem;
    font-weight: 900;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .error-404__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #fff;
  }
  .error-404__message {
    font-size: 1.2rem;
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .error-404__search {
    max-width: 500px;
    margin: 0 auto 2.5rem;
  }
  .error-404__search form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .error-404__search input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: #333;
  }
  .error-404__search input::placeholder {
    color: #999;
  }
  .error-404__search button {
    padding: 0.8rem 1.5rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  .error-404__search button:hover {
    background: #3a1530;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .error-404__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .error-404__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid transparent;
  }
  .error-404__button--primary {
    background: #fff;
    color: #4a1c40;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .error-404__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  }
  .error-404__button--secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .error-404__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  .error-404__links {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
  }
  .error-404__links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #fff;
  }
  .error-404__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .error-404__link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .error-404__link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
  }
  .error-404__link-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .error-404__link-text {
    font-size: 1rem;
    font-weight: 500;
  }
  .error-404__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .error-404__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  }

  @media (min-width: 1024px) {
    .error-404__container {
      grid-template-columns: 1fr 1fr;
    }
    .error-404__content {
      text-align: left;
    }
    .error-404__search,
    .error-404__message {
      margin-left: 0;
      margin-right: 0;
    }
    .error-404__actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 768px) {
    .error-404 {
      padding: 3rem 0;
    }
    .error-404__code {
      font-size: 5rem;
    }
    .error-404__title {
      font-size: 2rem;
    }
    .error-404__message {
      font-size: 1rem;
    }
    .error-404__actions {
      flex-direction: column;
      width: 100%;
    }
    .error-404__button {
      width: 100%;
      justify-content: center;
    }
    .error-404__links {
      padding: 1.5rem;
    }
    .error-404__links-grid {
      grid-template-columns: 1fr;
    }
  }
.brand-carousel {
    background: #fff;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
  }
  .brand-carousel__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
    position: relative;
  }
  .brand-carousel__track {
    display: flex;
    gap: 3rem;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
  }
  .brand-carousel__track::-webkit-scrollbar {
    display: none;
  }
  .brand-carousel__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  .brand-carousel__item:hover {
    opacity: 1;
  }
  .brand-carousel__link {
    display: block;
    text-decoration: none;
  }
  .brand-carousel__logo {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
  }
  .brand-carousel__item:hover .brand-carousel__logo {
    filter: grayscale(0%);
  }
  .brand-carousel__text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .brand-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .brand-carousel__nav:hover {
    background: #f5f5f5;
    border-color: #999;
  }
  .brand-carousel__nav--prev {
    left: 0;
  }
  .brand-carousel__nav--next {
    right: 0;
  }
  .brand-carousel__nav svg {
    color: #333;
  }

  @media (max-width: 768px) {
    .brand-carousel__track {
      gap: 2rem;
    }
    .brand-carousel__item {
      min-width: 100px;
    }
    .brand-carousel__logo {
      max-width: 100px;
      max-height: 50px;
    }
    .brand-carousel__nav {
      display: none;
    }
  }
.cart-page {
    background: #f9f9f9;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .cart-page__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  .cart-page__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .cart-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem;
  }

  .cart-page__count {
    font-size: 1rem;
    color: #666;
    margin: 0;
  }

  /* Trust Badges */
  .cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .trust-badge svg {
    flex-shrink: 0;
    color: #4a1c40;
  }

  .trust-badge__content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem;
  }

  .trust-badge__content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
  }

  /* Cart Layout */
  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
  }

  /* Cart Items */
  .cart-items {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .cart-items__header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .cart-items__header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
  }

  .cart-items__list {
    padding: 1rem;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
  }

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

  .cart-item:hover {
    background: #fafafa;
  }

  .cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  }

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

  .cart-item__info {
    flex: 1;
  }

  .cart-item__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

  .cart-item__title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }

  .cart-item__title a:hover {
    color: #4a1c40;
  }

  .cart-item__vendor {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
  }

  .cart-item__variant {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
  }

  .cart-item__properties {
    margin-top: 0.5rem;
  }

  .cart-item__properties p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.25rem 0;
  }

  .cart-item__price-mobile {
    display: none;
  }

  .cart-item__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
  }

  .quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .quantity-btn:hover {
    background: #f5f5f5;
  }

  .quantity-btn:active {
    background: #e0e0e0;
  }

  .quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .quantity-input::-webkit-inner-spin-button,
  .quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__remove {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }

  .cart-item__remove:hover {
    background: #ff4444;
    border-color: #ff4444;
    color: #fff;
  }

  .cart-item__price {
    text-align: right;
    padding-top: 0.5rem;
  }

  .cart-item__price--compare {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .cart-item__price--current {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
  }

  .cart-item__discounts {
    margin-top: 0.5rem;
  }

  .cart-item__discount-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
  }

  .cart-continue-shopping {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
  }

  .continue-shopping-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a1c40;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }

  .continue-shopping-link:hover {
    gap: 0.75rem;
  }

  /* Cart Summary */
  .cart-summary {
    position: sticky;
    top: 20px;
  }

  .cart-summary__inner {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
  }

  .cart-summary__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #333;
  }

  /* Discount Code */
  .cart-discount {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .cart-discount__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #333;
  }

  .cart-discount__input-wrapper {
    display: flex;
    gap: 0.5rem;
  }

  .cart-discount__input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
  }

  .cart-discount__button {
    padding: 0.75rem 1.5rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }

  .cart-discount__button:hover {
    background: #3a1530;
  }

  .cart-discount__applied {
    margin-top: 0.75rem;
  }

  .cart-discount__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
  }

  .cart-discount__remove {
    color: #2e7d32;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s;
  }

  .cart-discount__remove:hover {
    color: #1b5e20;
  }

  /* Cart Totals */
  .cart-totals {
    margin-bottom: 1.5rem;
  }

  .cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #666;
  }

  .cart-totals__row--discount {
    color: #2e7d32;
    font-weight: 600;
  }

  .cart-totals__row--total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #e0e0e0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
  }

  .cart-totals__value {
    font-weight: 600;
  }

  .cart-totals__shipping,
  .cart-totals__taxes {
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
  }

  /* Checkout Button */
  .cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
  }

  .cart-checkout-btn:hover {
    background: #3a1530;
  }

  .cart-checkout-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin: 0;
  }

  /* Payment Methods */
  .cart-payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
  }

  .cart-payment-methods__title {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 0.75rem;
  }

  .cart-payment-methods__icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Promotional Banner */
  .cart-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .cart-promo__icon {
    flex-shrink: 0;
  }

  .cart-promo__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

  .cart-promo__content p {
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    opacity: 0.9;
  }

  .cart-promo__progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
  }

  .cart-promo__progress-bar {
    height: 100%;
    background: #fff;
    transition: width 0.3s;
  }

  /* Empty Cart */
  .cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .cart-empty svg {
    color: #ccc;
    margin-bottom: 1.5rem;
  }

  .cart-empty h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem;
  }

  .cart-empty p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem;
  }

  .cart-empty__button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #4a1c40;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .cart-empty__button:hover {
    background: #3a1530;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .cart-page__content {
      grid-template-columns: 1fr;
    }

    .cart-summary {
      position: static;
    }

    .cart-trust-badges {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .cart-page__title {
      font-size: 2rem;
    }

    .cart-trust-badges {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .cart-item {
      grid-template-columns: 100px 1fr;
      gap: 1rem;
    }

    .cart-item__image {
      width: 100px;
      height: 100px;
    }

    .cart-item__price {
      display: none;
    }

    .cart-item__price-mobile {
      display: block;
      margin-top: 0.5rem;
    }

    .cart-item__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .cart-item__remove {
      justify-content: center;
    }

    .cart-promo {
      flex-direction: column;
      text-align: center;
    }
  }
.collection-page {
    background: #f8f8f8;
    min-height: 60vh;
  }
  .collection-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    color: #fff;
    text-align: center;
  }
  .collection-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: uppercase;
  }
  .collection-header__description {
    font-size: 1.1rem;
    margin: 0 0 1rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .collection-header__meta {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  .collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
  }
  .filter-toggle:hover {
    background: #f8f8f8;
    border-color: #4a1c40;
  }
  .collection-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .collection-toolbar__sort label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
  }
  .collection-toolbar__sort select {
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
  }
  .collection-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem 0 3rem;
  }
  .collection-filters {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .collection-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
  }
  .collection-filters__header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
  }
  .filter-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
  }
  .filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .filter-group:last-of-type {
    border-bottom: none;
  }
  .filter-group__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    cursor: pointer;
  }
  .filter-checkbox__input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4a1c40;
  }
  .filter-checkbox__label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
  }
  .filter-price-slider {
    padding: 0.5rem 0;
  }
  .price-slider__values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .price-slider__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a1c40;
    background: #f8f8f8;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
  }
  .price-slider__separator {
    color: #999;
    font-weight: 500;
  }
  .price-slider__container {
    position: relative;
    height: 6px;
    margin: 1rem 0;
  }
  .price-slider__track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
  }
  .price-slider__range {
    position: absolute;
    height: 6px;
    background: #4a1c40;
    border-radius: 3px;
    transition: all 0.1s;
  }
  .price-slider__input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
  }
  .price-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4a1c40;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
  }
  .price-slider__input::-webkit-slider-thumb:hover {
    background: #3a1530;
    transform: scale(1.1);
  }
  .price-slider__input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4a1c40;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
  }
  .price-slider__input::-moz-range-thumb:hover {
    background: #3a1530;
    transform: scale(1.1);
  }
  .price-slider__input--max {
    pointer-events: all;
  }
  .filter-clear-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: #4a1c40;
    border: 1px solid #4a1c40;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
  }
  .filter-clear-btn:hover {
    background: #4a1c40;
    color: #fff;
  }
  .collection-products {
    min-height: 400px;
  }
  .collection-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .product-card {
    display: block !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
  }
  .product-card__image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .product-card__image {
    position: absolute;
    object-fit: contain;
    transition: opacity 0.3s;
  }
  .product-card__image--hover {
    opacity: 0.6;
  }
  .product-card:hover .product-card__image--hover {
    opacity: 1;
  }
  .product-card:hover .product-card__image:not(.product-card__image--hover) {
    opacity: 0.6;
  }
  .product-card__placeholder {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  }
  .product-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
  }
  .product-card__badge--sale {
    background: #ff4444;
    color: #fff;
  }
  .product-card__badge--soldout {
    background: #666;
    color: #fff;
  }
  .product-card__wishlist {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    z-index: 2;
  }
  .product-card:hover .product-card__wishlist {
    opacity: 1;
  }
  .product-card__wishlist:hover {
    background: #fff;
    transform: scale(1.1);
  }
  .product-card__wishlist svg {
    color: #333;
  }
  .product-card__info {
    padding: 1.25rem;
  }
  .product-card__vendor {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    letter-spacing: 0.05em;
  }
  .product-card__title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.8rem;
    line-height: 1.4;
  }
  .product-card__title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
  .product-card__title a:hover {
    color: #4a1c40;
  }
  .product-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0 0 1rem;
  }
  .product-card__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
  }
  .product-card__price--current {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
  }
  .product-card__button {
    width: 100%;
    padding: 0.9rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  .product-card__button:hover {
    background: #3a1530;
  }
  .collection-pagination {
    margin-top: 3rem;
    text-align: center;
  }

  @media (max-width: 1024px) {
    .collection-content {
      grid-template-columns: 1fr;
    }
    .collection-filters {
      position: fixed;
      top: 0;
      left: -100%;
      width: 320px;
      max-width: 85vw;
      height: 100vh;
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
      box-shadow: none;
    }
    .collection-filters.active {
      left: 0;
      box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
    .filter-close {
      display: block;
    }
    .collection-filters::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      z-index: -1;
    }
    .collection-filters.active::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

  @media (max-width: 768px) {
    .collection-header__title {
      font-size: 1.8rem;
    }
    .collection-toolbar {
      flex-wrap: wrap;
      gap: 1rem;
    }
    .collection-toolbar__sort {
      width: 100%;
      justify-content: space-between;
    }
    .collection-toolbar__sort select {
      flex: 1;
    }
    .collection-products__grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1rem;
    }
    .product-card__image-wrapper {
      padding-bottom: 140%;
    }
  }
.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%;
  }
.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;
  }
.featured-products {
    padding: 4rem 0;
    background: #fff;
  }
    .featured-products .featured-products__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
    .featured-products .featured-products__heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: #000;
  }
    .featured-products .featured-products__subheading {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem;
  }
    .featured-products .featured-products__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
    .featured-products .filter-btn {
    padding: 0.6rem 1.5rem;
    background: #fff;
    border: 1px solid #4a1c40;
    color: #4a1c40;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
  }
    .featured-products .filter-btn:hover,
    .featured-products .filter-btn--active {
    background: #4a1c40;
    color: #fff;
  }
    .featured-products .featured-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
    .featured-products .product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
  }
  .product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }
  .featured-products .product-card__image {
    position: relative;
    width: 100%;
    padding: 5%;
    overflow: hidden;
    background: #f5f5f5;
 
  }
    .featured-products .product-card__image img {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
  }
  .featured-products .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }
    .featured-products .product-card__placeholder {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  }
    .featured-products .product-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    background: #ff0000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 5;
  }
    .featured-products .product-card__content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
    .featured-products .product-card__vendor {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
  }
    .featured-products .product-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.8rem;
    flex: 1;
  }
    .featured-products .product-card__title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
    .featured-products .product-card__title a:hover {
    color: #4a1c40;
  }
    .featured-products .product-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0 0 1rem;
  }
    .featured-products .product-card__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
  }
    .featured-products .product-card__price--current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
  }
    .featured-products .product-card__button {
    width: 100%;
    padding: 0.8rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
    .featured-products .product-card__button:hover {
    background: #3a1530;
  }
  .featured-products .featured-products__footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
    .featured-products .featured-products__load-more {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #4a1c40;
    color: #4a1c40;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
    min-width: 150px;
  }
    .featured-products .featured-products__load-more:hover {
    background: #4a1c40;
    color: #fff;
  }

  @media (max-width: 768px) {
      .featured-products .featured-products__grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
    }
  }
.site-footer {
    background: #2c1a29;
    color: #fff;
    margin-top: 4rem;
  }
  .footer__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .footer__top {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #333;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
  .footer__column--about {
    max-width: 400px;
  }
  .footer__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }
  .footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }
  .footer__top .footer__heading {
    color: #333;
  }
  .footer__top .footer__text {
    color: #666;
  }
  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer__links li {
    margin-bottom: 0.5rem;
  }
  .footer__links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer__links a:hover {
    color: #333;
  }
  .footer__top .footer__links a {
    color: #666;
  }
  .footer__top .footer__links a:hover {
    color: #333;
  }
  .footer__contact p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.5rem;
  }
  .footer__contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer__contact a:hover {
    color: #333;
  }
  .footer__middle {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
  }
  .footer__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .footer__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .footer__feature-icon {
    flex-shrink: 0;
    color: #fff;
  }
  .footer__feature-text {
    font-size: 0.85rem;
  }
  .footer__feature-text strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }
  .footer__feature-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  .footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .footer__payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer__payment-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer__payment-icons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer__payment-icon {
    height: 32px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .footer__payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: #fff;
  }
  .footer__newsletter {
    background: #fff;
    padding: 2rem 0;
  }
  .footer__newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .footer__newsletter-info {
    flex: 1;
    text-align: left;
  }
  .footer__newsletter-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }
  .footer__newsletter-text {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
  }
  .footer__newsletter-form {
    display: flex;
    max-width: 500px;
    gap: 0.5rem;
    flex: 1;
  }
  .footer__newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    outline: none;
  }
  .footer__newsletter-form input::placeholder {
    color: #999;
  }
  .footer__newsletter-form input:focus {
    border-color: #333;
  }
  .footer__newsletter-form button {
    padding: 0.8rem 2rem;
    background: #333;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  .footer__newsletter-form button:hover {
    background: #000;
  }

  @media (max-width: 1024px) {
    .footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .footer__grid {
      grid-template-columns: 1fr;
    }
    .footer__features {
      grid-template-columns: 1fr;
    }
    .footer__bottom-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    .footer__payment {
      justify-content: center;
    }
    .footer__payment-icons {
      justify-content: center;
    }
    .footer__newsletter-content {
      flex-direction: column;
      text-align: center;
    }
    .footer__newsletter-info {
      text-align: center;
    }
    .footer__newsletter-form {
      flex-direction: column;
      max-width: 100%;
    }
  }
.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .header__container {
    width: 100%;
  }
  .header__top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 10px var(--page-margin, 20px);
    background: #4a1c40;
    color: #fff;
    font-size: 0.85rem;
    width: 100%;
  }
  .header__email,
  .header__phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--page-margin, 20px);
    gap: 2rem;
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo img {
    max-height: 60px;
    width: auto;
  }
  .logo__text a {
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .logo__primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a1c40;
  }
  .logo__secondary {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.1em;
  }
  .header__nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
  }
  .nav__link {
    text-decoration: none;
    color: var(--color-foreground);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav__link:hover,
  .nav__link--active {
    color: #4a1c40;
  }
  .header__search {
    flex-shrink: 0;
    width: 250px;
  }
  .header__search form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
  }
  .header__search input {
    flex: 1;
    border: none;
    padding: 0.5rem;
    font-size: 0.9rem;
    outline: none;
  }
  .header__search button {
    background: #4a1c40;
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__search button:hover {
    background: #3a1530;
  }
  .header__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
  }
  .header__action-icon {
    position: relative;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__action-icon:hover {
    color: #4a1c40;
  }
  .header__action-icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .header__action-cart {
    position: relative;
  }
  .cart__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
  }

  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .header__mobile-actions {
    display: none;
    gap: 1.2rem;
    align-items: center;
  }
  .mobile-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s;
  }
  .mobile-search-toggle:hover {
    color: #4a1c40;
  }
  .mobile-search {
    display: none;
    padding: 1rem var(--page-margin, 20px);
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
  }
  .mobile-search.active {
    display: block;
  }
  .mobile-search form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }
  .mobile-search input {
    flex: 1;
    border: none;
    padding: 0.8rem;
    font-size: 0.95rem;
    outline: none;
  }
  .mobile-search button {
    background: #4a1c40;
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .header__nav {
      gap: 1rem;
    }
    .nav__link {
      font-size: 0.85rem;
    }
    .header__actions {
      gap: 1rem;
    }
  }

  @media (max-width: 768px) {
    .header__top {
      font-size: 0.75rem;
      padding: 8px var(--page-margin, 20px);
    }
    .header__email,
    .header__phone {
      font-size: 0.7rem;
    }
    .header__main {
      padding: 0.8rem var(--page-margin, 20px);
      gap: 1rem;
    }
    .mobile-menu-toggle {
      display: flex;
    }
    .header__logo {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    .header__logo a {
      text-decoration: none;
    }
    .header__logo img {
      max-height: 45px;
    }
    .logo__text {
      margin: 0;
    }
    .logo__primary {
      font-size: 1.2rem;
    }
    .logo__secondary {
      font-size: 0.8rem;
    }
    .header__mobile-actions {
      display: flex;
    }
    .header__nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      max-width: 80vw;
      height: 100vh;
      background: #fff;
      z-index: 1000;
      flex-direction: column;
      gap: 0;
      padding: 5rem 0 2rem;
      overflow-y: auto;
      transition: left 0.3s;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    .header__nav.active {
      left: 0;
    }
    .nav__link {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #f0f0f0;
      font-size: 1rem;
    }
    .nav__link:hover {
      background: #f8f8f8;
    }
    .header__search {
      display: none;
    }
    .header__actions {
      display: none;
    }
  }
.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;
  }
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: {{ section.settings.background_color | default: '#f5f5f5' }};
  }
  .hero-slider__wrapper {
    position: relative;
    width: 100%;
    height: {{ section.settings.slider_height_mobile | default: 400 }}px;
    min-height: {{ section.settings.slider_height_mobile | default: 400 }}px;
  }
  @media (min-width: 768px) {
    .hero-slider__wrapper {
      height: {{ section.settings.slider_height_tablet | default: 500 }}px;
      min-height: {{ section.settings.slider_height_tablet | default: 500 }}px;
    }
  }
  @media (min-width: 1024px) {
    .hero-slider__wrapper {
      height: {{ section.settings.slider_height_desktop | default: 600 }}px;
      min-height: {{ section.settings.slider_height_desktop | default: 600 }}px;
    }
  }
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
    pointer-events: none;
    z-index: 1;
  }
  .hero-slide--active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    z-index: 2;
    transition: opacity 0.5s ease-in-out, visibility 0s;
  }
  .hero-slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: {{ section.settings.background_color | default: '#f5f5f5' }};
  }
  .hero-slide__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .hero-slide__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-slide__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-slide__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--page-margin, 20px);
    z-index: 3;
  }
  .hero-slide__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
  }
  .hero-slide__subheading {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 500;
    opacity: 0.95;
  }
  .hero-slide__heading {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 2rem;
    color: #fff;
    max-width: 700px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  .hero-slide__button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  .hero-slide__button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  .hero-slider__controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--page-margin, 20px);
    pointer-events: none;
    z-index: 10;
  }
  .hero-slider__arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .hero-slider__arrow:hover {
    background: #fff;
    transform: scale(1.1);
  }
  .hero-slider__arrow svg {
    color: #333;
  }
  .hero-slider__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }
  .hero-slider__dot--active,
  .hero-slider__dot:hover {
    background: #fff;
    transform: scale(1.2);
  }

  @media (max-width: 767px) {
    .hero-slide__heading {
      font-size: 2rem;
    }
    .hero-slider__arrow {
      width: 40px;
      height: 40px;
    }
    .hero-slide__subheading {
      font-size: 0.9rem;
    }
    .hero-slide__container {
      padding: 0 1rem;
    }
  }
.about-page {
    background: #fff;
  }
  .about-hero {
    padding: 4rem 0;
    background: #f8f8f8;
    text-align: center;
  }
  .about-hero__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .about-hero__image {
    margin-bottom: 2rem;
  }
  .about-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .about-hero__heading {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
  }
  .about-hero__text {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .about-content {
    padding: 4rem 0;
  }
  .about-content__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .content-section {
    margin-bottom: 3rem;
    text-align: center;
  }
  .section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #333;
  }
  .section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
  }
  .image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  .image-text-block--reverse {
    direction: rtl;
  }
  .image-text-block--reverse > * {
    direction: ltr;
  }
  .image-text-block__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .image-text-block__heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }
  .image-text-block__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  .stats-section {
    background: #4a1c40;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
  }
  .stats-heading {
    font-size: 2rem;
    margin: 0 0 2rem;
    color: #fff;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }
  .stat-item {
    text-align: center;
  }
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  .values-section {
    margin: 4rem 0;
    text-align: center;
  }
  .values-heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 3rem;
    color: #333;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .value-item {
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
  }
  .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #4a1c40;
  }
  .value-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  @media (max-width: 768px) {
    .about-hero__heading {
      font-size: 2rem;
    }
    .image-text-block {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .image-text-block--reverse {
      direction: ltr;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
      font-size: 2rem;
    }
  }
.contact-page {
    padding: 3rem 0;
    background: #fff;
  }
  .contact-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .contact-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
  }
  .contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
  }
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
  }
  .contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  .contact-info-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }
  .contact-info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
  }
  .contact-info-text a {
    color: #4a1c40;
    text-decoration: none;
  }
  .contact-info-text a:hover {
    text-decoration: underline;
  }
  .contact-form {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  }
  .contact-form__heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #333;
  }
  .contact-form__text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem;
  }
  .form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .form-success svg {
    flex-shrink: 0;
  }
  .form-success p {
    margin: 0;
  }
  .form-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }
  .form-errors p {
    margin: 0;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #4a1c40;
  }
  .form-group textarea {
    resize: vertical;
  }
  .contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  .contact-submit:hover {
    background: #3a1530;
    transform: translateY(-2px);
  }
  .contact-map {
    margin-top: 3rem;
  }
  .contact-map__heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    text-align: center;
    color: #333;
  }
  .contact-map__embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
  }
  .contact-map__embed iframe {
    width: 100%;
    height: 400px;
    border: none;
  }

  @media (max-width: 768px) {
    .contact-title {
      font-size: 2rem;
    }
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .form-row {
      grid-template-columns: 1fr;
    }
    .contact-form {
      padding: 1.5rem;
    }
  }
.faq-page {
    padding: 3rem 0;
    background: #fff;
  }
  .faq-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
  }
  .faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
  }
  .faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  .faq-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  .faq-search input:focus {
    border-color: #4a1c40;
  }
  .faq-search svg {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
  }
  .faq-content {
    margin-bottom: 3rem;
  }
  .faq-category {
    margin: 3rem 0 1.5rem;
  }
  .faq-category__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a1c40;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4a1c40;
  }
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0.5rem;
  }
  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
  }
  .faq-question:hover {
    color: #4a1c40;
  }
  .faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s;
  }
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  .faq-answer__content {
    padding: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  .faq-answer__content p {
    margin: 0 0 1rem;
  }
  .faq-answer__content ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
  }
  .faq-answer__content li {
    margin-bottom: 0.5rem;
  }
  .faq-contact-box {
    background: #f8f3f0;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #4a1c40;
  }
  .faq-contact-box h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }
  .faq-contact-box p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1.5rem;
  }
  .faq-contact-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #4a1c40;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .faq-contact-button:hover {
    background: #3a1530;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }
    .faq-question {
      font-size: 1rem;
    }
  }
.page-content {
    padding: 3rem 0;
    background: #fff;
  }
  .page-content__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
  }
  .breadcrumbs a {
    color: #4a1c40;
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumbs a:hover {
    color: #000;
  }
  .breadcrumb-divider {
    margin: 0 0.5rem;
    color: #999;
  }
  .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
  }
  .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
  }
  .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 1rem;
    line-height: 1.6;
  }
  .page-meta {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
  }
  .page-content__body {
    margin-bottom: 3rem;
  }
  .content-section {
    margin-bottom: 2.5rem;
  }
  .section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }
  .section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  .section-content p {
    margin: 0 0 1rem;
  }
  .section-content strong {
    color: #000;
    font-weight: 600;
  }
  .content-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
  }
  .content-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
  }
  .page-footer {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
  }
  .page-footer h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }
  .page-footer p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1.5rem;
  }
  .page-footer__button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #4a1c40;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .page-footer__button:hover {
    background: #3a1530;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .page-title {
      font-size: 2rem;
    }
    .section-heading {
      font-size: 1.3rem;
    }
  }
.page-content {
    padding: 3rem 0;
    background: #fff;
  }
  .page-content__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .breadcrumbs {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
  }
  .breadcrumbs a {
    color: #4a1c40;
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumbs a:hover {
    color: #000;
  }
  .breadcrumb-divider {
    margin: 0 0.5rem;
    color: #999;
  }
  .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
  }
  .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
  }
  .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 1rem;
    line-height: 1.6;
  }
  .page-meta {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
  }
  .page-content__body {
    margin-bottom: 3rem;
  }
  .content-section {
    margin-bottom: 2.5rem;
  }
  .section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }
  .section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
  }
  .section-content p {
    margin: 0 0 1rem;
  }
  .section-content strong {
    color: #000;
    font-weight: 600;
  }
  .content-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
  }
  .content-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
  }
  .highlight-box {
    background: #f8f3f0;
    border-left: 4px solid #4a1c40;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
  }
  .highlight-box__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .highlight-box__heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #4a1c40;
  }
  .highlight-box__content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  .page-footer {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
  }
  .page-footer h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #333;
  }
  .page-footer p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 1.5rem;
  }
  .page-footer__button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #4a1c40;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .page-footer__button:hover {
    background: #3a1530;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .page-title {
      font-size: 2rem;
    }
    .section-heading {
      font-size: 1.3rem;
    }
  }
.product-page {
    background: #fff;
    padding: 2rem 0 4rem;
  }
  .product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
  }
  .product-breadcrumb a {
    color: #4a1c40;
    text-decoration: none;
    transition: color 0.3s;
  }
  .product-breadcrumb a:hover {
    color: #3a1530;
  }
  .product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .product-gallery {
    position: sticky;
    top: 100px;
  }
  .product-gallery__main {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
  }
  .product-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  }
  .product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
  }
  .product-gallery__thumb {
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f8f8;
    padding: 0;
  }
  .product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
  }
  .product-gallery__thumb:hover,
  .product-gallery__thumb--active {
    border-color: #4a1c40;
  }
  .product-info {
    padding: 1rem 0;
  }
  .product-info__vendor {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
  }
  .product-info__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #000;
    line-height: 1.2;
  }
  .product-info__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .rating-stars {
    display: flex;
    gap: 0.2rem;
  }
  .star {
    font-size: 1.2rem;
    color: #ddd;
  }
  .star--filled {
    color: #ffc107;
  }
  .rating-count {
    font-size: 0.9rem;
    color: #666;
  }
  .product-info__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .price--current,
  .price--sale {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
  }
  .price--compare {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
  }
  .price--save {
    padding: 0.3rem 0.8rem;
    background: #ff4444;
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .product-info__availability {
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  .product-info__availability--in {
    background: #e8f5e9;
    color: #2e7d32;
  }
  .product-info__availability--out {
    background: #ffebee;
    color: #c62828;
  }
  .product-info__description {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
  }
  .product-form {
    margin-bottom: 2rem;
  }
  .product-form__variants,
  .product-form__quantity {
    margin-bottom: 1.5rem;
  }
  .product-form__variants label,
  .product-form__quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .product-form__select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
  }
  .product-form__select:hover,
  .product-form__select:focus {
    border-color: #4a1c40;
    outline: none;
  }
  .quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  .quantity-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  .quantity-btn:hover {
    background: #e0e0e0;
  }
  .quantity-input {
    width: 70px;
    height: 45px;
    border: none;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
  }
  .quantity-input::-webkit-inner-spin-button,
  .quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .product-form__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .product-form__add-to-cart {
    flex: 1;
    padding: 1.2rem 2rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  .product-form__add-to-cart:hover:not(:disabled) {
    background: #3a1530;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 28, 64, 0.3);
  }
  .product-form__add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  .product-form__actions-secondary {
    margin-bottom: 2rem;
  }
  .product-action-btn {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 2px solid #4a1c40;
    color: #4a1c40;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }
  .product-action-btn:hover {
    background: #4a1c40;
    color: #fff;
  }
  .product-info__meta {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 6px;
    margin-bottom: 2rem;
  }
  .product-meta__item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #555;
  }
  .product-meta__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .product-meta__item strong {
    color: #333;
    margin-right: 0.5rem;
  }
  .product-info__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 6px;
  }
  .feature-item svg {
    color: #4a1c40;
    flex-shrink: 0;
  }
  .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
  }

  @media (max-width: 1024px) {
    .product-main {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .product-gallery {
      position: relative;
      top: 0;
    }
    .product-info__title {
      font-size: 2rem;
    }
  }

  @media (max-width: 768px) {
    .product-gallery__thumbs {
      grid-template-columns: repeat(4, 1fr);
    }
    .product-info__title {
      font-size: 1.5rem;
    }
    .product-info__price .price--current,
    .product-info__price .price--sale {
      font-size: 1.5rem;
    }
    .product-info__features {
      grid-template-columns: 1fr;
    }
  }
.promo-banners {
    padding: 3rem 0;
    background: #fff;
  }
  .promo-banners__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }
  .promo-banners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  .promo-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 300px;
    background: #f5f5f5;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .promo-banner__link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
  }
  .promo-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .promo-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
  }
  .promo-banner:hover .promo-banner__image img {
    transform: scale(1.02);
  }
  .promo-banner__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  .promo-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: background 0.3s;
  }
  .promo-banner:hover .promo-banner__overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  .promo-banner__content {
    text-align: center;
    color: #fff;
  }
  .promo-banner__subheading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
    font-weight: 500;
  }
  .promo-banner__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
  }

  @media (max-width: 768px) {
    .promo-banners__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .promo-banner {
      min-height: 250px;
    }
    .promo-banner__heading {
      font-size: 1.5rem;
    }
  }
.search-page {
    background: #f9f9f9;
    min-height: 100vh;
  }

  .search-page__header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
  }

  .search-page__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  .search-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem;
    text-align: center;
    text-transform: uppercase;
  }

  .search-page__form {
    max-width: 800px;
    margin: 0 auto;
  }

  .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .search-input-icon {
    position: absolute;
    left: 1.5rem;
    color: #999;
    pointer-events: none;
  }

  .search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
  }

  .search-input::placeholder {
    color: #999;
  }

  .search-submit-btn {
    padding: 1rem 2.5rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }

  .search-submit-btn:hover {
    background: #3a1530;
  }

  .search-no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 8px;
    margin-top: 2rem;
  }

  .search-no-results svg {
    color: #ccc;
    margin-bottom: 1.5rem;
  }

  .search-no-results h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
  }

  .search-no-results p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 0.5rem;
  }

  .search-no-results__suggestion {
    color: #999;
    font-size: 0.9rem;
  }

  .search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .search-results-count {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .search-results-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .search-results-filter label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
  }

  .search-filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
  }

  .search-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .search-result-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

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

  .search-result-card__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
  }

  .search-result-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .search-result-card:hover .search-result-card__image img {
    transform: scale(1.05);
  }

  .search-result-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
  }

  .search-result-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 5;
  }

  .search-result-card__badge--sale {
    background: #ff0000;
    color: #fff;
  }

  .search-result-card__badge--sold-out {
    background: #999;
    color: #fff;
  }

  .search-result-card__content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .search-result-card__type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    width: fit-content;
  }

  .search-result-card__vendor {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .search-result-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.4;
  }

  .search-result-card__title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }

  .search-result-card__title a:hover {
    color: #4a1c40;
  }

  .search-result-card__excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem;
    flex: 1;
  }

  .search-result-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0 0 1rem;
  }

  .search-result-card__price--compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
  }

  .search-result-card__price--current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
  }

  .search-result-card__button {
    width: 100%;
    padding: 0.85rem;
    background: #4a1c40;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border-radius: 4px;
  }

  .search-result-card__button:hover:not(:disabled) {
    background: #3a1530;
  }

  .search-result-card__button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  .search-result-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    background: #4a1c40;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
  }

  .search-result-card__link:hover {
    background: #3a1530;
  }

  /* Pagination */
  .search-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
  }

  .search-pagination__info {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .search-pagination__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .search-pagination__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .search-pagination__btn:hover:not(.search-pagination__btn--disabled) {
    background: #4a1c40;
    color: #fff;
    border-color: #4a1c40;
  }

  .search-pagination__btn--disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .search-pagination__pages {
    display: flex;
    gap: 0.25rem;
  }

  .search-pagination__page {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .search-pagination__page:hover:not(.search-pagination__page--current):not(.search-pagination__page--ellipsis) {
    background: #4a1c40;
    color: #fff;
    border-color: #4a1c40;
  }

  .search-pagination__page--current {
    background: #4a1c40;
    color: #fff;
    border-color: #4a1c40;
  }

  .search-pagination__page--ellipsis {
    border: none;
    cursor: default;
  }

  @media (max-width: 768px) {
    .search-page__title {
      font-size: 2rem;
    }

    .search-input {
      padding: 0.85rem 0.85rem 0.85rem 3rem;
      font-size: 0.9rem;
    }

    .search-input-icon {
      left: 1rem;
    }

    .search-submit-btn {
      padding: 0.85rem 1.5rem;
      font-size: 0.9rem;
    }

    .search-results__grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
    }

    .search-results-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .search-results-count {
      font-size: 1.2rem;
    }

    .search-pagination__pages {
      display: none;
    }
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

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