/** Shopify CDN: Minification failed

Line 851:12 Expected identifier but found whitespace
Line 851:13 Unexpected "var("
Line 2849:16 Expected identifier but found whitespace
Line 2849:17 Unexpected "700"

**/


/* CSS from section stylesheet tags */
.cart-page {
    padding: var(--space-8) 0;
    min-height: 60vh;
  }

  .cart__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
  }

  .cart__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-8);
    align-items: start;
  }

  /* Cart Items */
  .cart__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: var(--space-4);
    padding: var(--space-4);
    background-color: var(--color-background);
    border: 1px solid var(--color-border-light);
  }

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

  .cart-item__image {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .cart-item__placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background-alt);
    color: var(--color-text-light);
  }

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

  .cart-item__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
  }

  .cart-item__title:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  .cart-item__variant {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: var(--space-1) 0;
  }

  .cart-item__price {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin: 0;
  }

  .cart-item__quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
  }

  .cart-item__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
  }

  .cart-item__qty-btn:hover {
    background-color: var(--color-background-alt);
  }

  .cart-item__qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    font-size: var(--font-size-sm);
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    -moz-appearance: textfield;
  }

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

  .cart-item__total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cart-item__line-price {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
  }

  .cart-item__remove {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
  }

  .cart-item__remove:hover {
    color: var(--color-error);
  }

  .cart__update-btn {
    align-self: flex-start;
    margin-top: var(--space-4);
  }

  /* Cart Summary */
  .cart__summary {
    background-color: var(--color-background-alt);
    padding: var(--space-6);
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
  }

  .cart__summary-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }

  .cart__summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    font-size: var(--font-size-base);
  }

  .cart__summary-total {
    font-size: var(--font-size-lg);
    font-weight: 700;
    padding-top: var(--space-4);
    margin-top: var(--space-2);
    border-top: 2px solid var(--color-border);
  }

  .cart__shipping-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .cart__checkout-form {
    margin-top: var(--space-5);
  }

  .cart__checkout-btn {
    gap: var(--space-2);
  }

  .cart__trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
  }

  .cart__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
  }

  .cart__trust-item svg {
    color: var(--color-primary);
  }

  .cart__continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-decoration: none;
  }

  .cart__continue:hover {
    color: var(--color-primary);
    text-decoration: none;
  }

  /* Empty Cart */
  .cart__empty {
    text-align: center;
    padding: var(--space-12) 0;
  }

  .cart__empty svg {
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
  }

  .cart__empty h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
  }

  .cart__empty p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
  }

  @media (max-width: 1024px) {
    .cart__layout {
      grid-template-columns: 1fr;
    }

    .cart__summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-item {
      grid-template-columns: 80px 1fr;
      grid-template-rows: auto auto;
    }

    .cart-item__image,
    .cart-item__placeholder {
      width: 80px;
      height: 80px;
    }

    .cart-item__total {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: center;
      padding-top: var(--space-3);
      border-top: 1px solid var(--color-border-light);
    }
  }
.collection {
    padding: var(--space-8) 0;
  }

  .collection__header {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border-light);
  }

  .collection__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
  }

  .collection__description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: var(--space-5);
  }

  .collection__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .collection__count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .collection__sort-select {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-text);
    cursor: pointer;
  }

  .collection__grid {
    margin-bottom: var(--space-8);
  }

  .collection__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-10);
    color: var(--color-text-muted);
  }

  /* Pagination */
  .collection__pagination {
    display: flex;
    justify-content: center;
  }

  .pagination {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pagination__link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
  }

  .pagination__link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
  }

  .pagination__link--current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
  }

  .pagination__link--ellipsis {
    border: none;
    color: var(--color-text-muted);
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  @media (max-width: 768px) {
    .collection__title {
      font-size: var(--font-size-3xl);
    }

    .collection__meta {
      flex-direction: column;
      align-items: flex-start;
    }
  }
.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: var(--space-10) 0;
  }

  .featured-products__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
  }

  .featured-products__pretitle {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
  }

  .featured-products__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
  }

  .featured-products__description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
  }

  .featured-products__grid {
    margin-bottom: var(--space-8);
  }

  .featured-products__footer {
    text-align: center;
  }

  @media (max-width: 768px) {
    .featured-products__title {
      font-size: var(--font-size-2xl);
    }
  }
.footer {
    background-color: var(--color-background);
    color: var(--color-text);
    padding: var(--space-10) 0 var(--space-6);
  }

  .footer__container {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Brand column */
  .footer__logo {
    display: inline-block;
    margin-bottom: var(--space-4);
  }

  .footer__logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .footer__logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #FFFFFF;
  }

  .footer__description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-5);
  }

  .footer__social {
    display: flex;
    gap: var(--space-3);
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast), color var(--transition-fast);
  }

  .footer__social-link:hover {
    background-color: var(--color-accent);
    color: #000000;
  }

  /* Navigation columns */
  .footer__heading {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
  }

  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .footer__link {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
  }

  .footer__link:hover {
    color: #FFFFFF;
    text-decoration: none;
  }

  /* Newsletter */
  .footer__newsletter-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
  }

  .footer__newsletter-input-wrapper {
    display: flex;
    gap: 0;
  }

  .footer__newsletter-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: var(--space-3) var(--space-4);
  }

  .footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .footer__newsletter-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  }

  .footer__newsletter-btn {
    padding: var(--space-3);
    border: none;
  }

  /* Contact form */
  .footer__contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .footer__contact-input,
  .footer__contact-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
  }

  .footer__contact-input::placeholder,
  .footer__contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .footer__contact-input:focus,
  .footer__contact-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  }

  .footer__contact-textarea {
    resize: vertical;
    min-height: 80px;
  }

  .footer__contact-btn {
    width: 100%;
    padding: var(--space-3);
  }

  .footer__contact-success {
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    padding: var(--space-4);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-accent);
  }

  .section--light .footer__contact-input,
  .section--light .footer__contact-textarea {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--color-text);
  }

  .section--light .footer__contact-input::placeholder,
  .section--light .footer__contact-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
  }

  /* Trust badges */
  .footer__trust {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
  }

  .footer__trust-item svg {
    color: var(--color-accent);
  }

  /* Localization selector */
  .footer__localization {
    display: flex;
    justify-content: center;
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section--light .footer__localization {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .section--alt .footer__localization {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  /* Bottom bar */
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-6);
  }

  .footer__copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
  }

  .footer__payment {
    display: flex;
    gap: var(--space-2);
  }

  .footer__payment svg {
    height: 24px;
    width: auto;
    opacity: 0.7;
  }

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

  @media (max-width: 768px) {
    .footer__top {
      grid-template-columns: 1fr;
      gap: var(--space-6);
    }

    .footer__trust {
      flex-wrap: wrap;
      gap: var(--space-4);
    }

    .footer__bottom {
      flex-direction: column;
      gap: var(--space-4);
      text-align: center;
    }
  }
/* Header - Sticky with luxury styling */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border-light);
    transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .header.is-scrolled {
    box-shadow: var(--shadow-md);
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height, 80px);
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  
  /* Logo */
  .header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .header__logo img {
    height: 40px;
    width: auto;
  }
  
  .header__logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
  }
  
  /* Desktop Navigation */
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  
  .header__nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
    line-height: 1;
  }
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
  }
  
  .header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
  }
  
  .header__nav-link:hover,
  .header__nav-link.is-active {
    color: var(--color-accent);
    text-decoration: none;
  }
  
  .header__nav-link:hover::after,
  .header__nav-link.is-active::after {
    width: 100%;
  }
  
  /* Navigation Dropdown */
  .header__nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .header__nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
  }
  
  .header__nav-link--dropdown svg {
    width: 10px;
    height: 10px;
    margin-top: 1px;
    transition: transform var(--transition-fast);
  }
  
  .header__nav-dropdown:hover .header__nav-link--dropdown svg,
  .header__nav-dropdown.is-active .header__nav-link--dropdown svg {
    transform: rotate(180deg);
  }
  
  /* Catalog dropdown - fullwidth below header */
  .dropdown__menu--catalog {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    border-top: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 100;
  }
  
  /* Invisible bridge to keep dropdown open when moving mouse */
  .dropdown__menu--catalog::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
  }
  
  .dropdown__menu--catalog.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .catalog-dropdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-8);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-8) var(--space-6);
  }
  
  .catalog-dropdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s ease;
    flex: 1 1 0;
    max-width: 160px;
  }
  
  .catalog-dropdown__item:hover {
    text-decoration: none;
    transform: translateY(-4px);
  }
  
  .catalog-dropdown__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
  }
  
  .catalog-dropdown__item:hover .catalog-dropdown__image-wrapper {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .catalog-dropdown__step {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    z-index: 1;
  }
  
  .catalog-dropdown__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .catalog-dropdown__grit {
    margin-top: var(--space-3);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-text);
  }
  
  .catalog-dropdown__title {
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
  }
  
  /* Responsive catalog dropdown */
  @media (max-width: 1024px) {
    .catalog-dropdown {
      gap: var(--space-3);
    }
    .catalog-dropdown__item {
      padding: var(--space-2);
    }
    .catalog-dropdown__image {
      width: 60px;
      height: 60px;
    }
    .catalog-dropdown__title {
      font-size: 10px;
      max-width: 80px;
    }
  }
  
  @media (max-width: 768px) {
    .dropdown__menu--catalog {
      display: none;
    }
  }
  
  /* Header Actions */
  .header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
  }
  
  .header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    transition: color var(--transition-fast);
  }
  
  .header__icon-btn:hover {
    color: var(--color-accent);
  }
  
  .header__icon-btn svg {
    width: 24px;
    height: 24px;
  }
  
  /* Cart with count badge */
  .header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .header__cart:hover {
    color: var(--color-accent);
  }
  
  .header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #000;
    background-color: var(--color-accent);
    border-radius: 9px;
  }
  
  /* Dropdown-specific header positioning */
  .dropdown {
    position: relative;
  }
  
  .dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 320px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius, 0px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
    z-index: 300;
  }
  
  .dropdown__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown__menu--left {
    right: auto;
    left: 0;
  }
  
  .dropdown__menu--center {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .dropdown__menu--center.is-open {
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown__header {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
  }
  
  .dropdown__content {
    padding: var(--space-3) 0;
    max-height: 400px;
    overflow-y: auto;
  }
  
  .dropdown__item {
    display: flex;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
  }
  
  .dropdown__item:hover {
    background-color: var(--color-background-alt);
    color: var(--color-primary);
  }
  
  .dropdown__item-icon {
    width: 40px;
    height: 40px;
    margin-right: var(--space-3);
    flex-shrink: 0;
  }
  
  .dropdown__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .dropdown__item-content {
    flex: 1;
  }
  
  .dropdown__item-title {
    font-weight: 500;
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
  }
  
  .dropdown__item-subtitle {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
  }
  
  .dropdown__item-meta {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    margin-left: var(--space-2);
  }
  
  .dropdown__footer {
    padding: var(--space-4);
    border-top: 1px solid var(--color-border-light);
  }
  
  .dropdown__footer-btn {
    display: block;
    width: 100%;
    padding: var(--space-3);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-bottom: var(--space-2);
    text-decoration: none;
  }
  
  .dropdown__footer-btn:last-child {
    margin-bottom: 0;
  }
  
  .dropdown__empty {
    padding: var(--space-6) var(--space-4);
    text-align: center;
    color: var(--color-text-muted);
  }
  
  .dropdown__divider {
    height: 1px;
    background-color: var(--color-border-light);
    margin: var(--space-2) 0;
  }
  
  /* Hamburger Menu Button */
  .header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: transform var(--transition-normal), opacity var(--transition-fast);
  }
  
  .header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .header__hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Header Spacer */
  .header__spacer {
    height: var(--header-height, 80px);
  }
  
  /* Mobile Navigation */
  .header__mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-background);
    padding: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 199;
  }
  
  .header__mobile-nav.is-open {
    transform: translateX(0);
  }
  
  .mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .mobile-nav__link {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: color var(--transition-fast);
  }
  
  .mobile-nav__link:hover,
  .mobile-nav__link.is-active {
    color: var(--color-accent);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header__container {
      height: var(--header-height-mobile, 60px);
    }
    
    .header__nav {
      display: none;
    }
    
    .header__hamburger {
      display: flex;
    }
    
    .header__mobile-nav {
      display: block;
    }
    
    .header__spacer {
      height: var(--header-height-mobile, 60px);
    }
    
    /* Mobile dropdown adjustments */
    .dropdown__menu {
      min-width: 280px;
      max-width: 90vw;
      max-height: 70vh;
    }
    
    .dropdown__menu--center {
      left: auto;
      right: 10px;
    }
    
    .dropdown__menu--center.is-open {
      transform: translateY(0);
    }
    
    .dropdown__content {
      max-height: 400px;
    }
  }
  
  /* Cart Drawer */
  .cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  
  .cart-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 90vw;
    background-color: var(--color-background);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .cart-drawer.is-open {
    transform: translateX(0);
  }
  
  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5);
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
  }
  
  .cart-drawer__title {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin: 0;
  }
  
  .cart-drawer__count {
    font-weight: 400;
    opacity: 0.7;
  }
  
  .cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    border-radius: 50%;
    transition: background 0.2s ease;
  }
  
  .cart-drawer__close:hover {
    background: var(--color-background-alt);
  }
  
  .cart-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4);
  }
  
  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .cart-drawer__item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-background-alt);
    border-radius: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .cart-drawer__item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .cart-drawer__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .cart-drawer__item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .cart-drawer__item-title {
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.3;
  }
  
  .cart-drawer__item-title:hover {
    color: var(--color-accent);
  }
  
  .cart-drawer__item-variant {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }
  
  .cart-drawer__item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--color-background);
    border-radius: 6px;
    padding: 4px;
    width: fit-content;
  }
  
  .cart-drawer__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-background-alt);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-text);
    transition: all 0.2s ease;
  }
  
  .cart-drawer__qty-btn:hover {
    background: var(--color-accent);
    color: white;
  }
  
  .cart-drawer__qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .cart-drawer__item-qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: var(--font-size-base);
  }
  
  .cart-drawer__item-price {
    font-weight: 700;
    color: var(--color-accent);
    font-size: var(--font-size-base);
    margin-top: auto;
  }
  
  .cart-drawer__item-remove {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-2);
    color: var(--color-text-muted);
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .cart-drawer__item-remove:hover {
    color: #e74c3c;
  }
  
  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-10) var(--space-5);
    gap: var(--space-4);
  }
  
  .cart-drawer__empty svg {
    opacity: 0.3;
  }
  
  .cart-drawer__empty p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
    opacity: 0.7;
  }
  
  .cart-drawer__footer {
    padding: var(--space-5);
    border-top: 1px solid var(--color-border);
    background: var(--color-background);
    flex-shrink: 0;
  }
  
  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
  }
  
  .cart-drawer__subtotal-price {
    color: var(--color-accent);
    font-size: var(--font-size-xl);
  }
  
  .cart-drawer__shipping-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-4) 0;
  }
  
  .cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .cart-drawer__view-cart,
  .cart-drawer__checkout {
    width: 100%;
    justify-content: center;
  }
  
  .cart-drawer-trigger {
    position: relative;
  }
  
  @media (max-width: 480px) {
    .cart-drawer {
      width: 100%;
      max-width: 100%;
    }
    
    .cart-drawer__item {
      grid-template-columns: 60px 1fr auto;
    }
    
    .cart-drawer__item-image {
      width: 60px;
      height: 60px;
    }
  }
.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 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--hero-height, 80vh);
    overflow: hidden;
  }

  .hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  /* Style-specific overlays */
  .hero--light .hero__overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 250, 250, 0.75) 100%);
  }

  .hero--alt .hero__overlay {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.9) 0%, rgba(245, 245, 245, 0.8) 100%);
  }

  .hero--dark .hero__overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
  }

  .hero--teal .hero__overlay {
    background: linear-gradient(135deg, rgba(0, 79, 79, 0.85) 0%, rgba(10, 110, 110, 0.7) 100%);
  }

  .hero--dark-gold .hero__overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
  }

  .hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--space-8) var(--space-5);
    color: var(--color-text);
  }

  .hero__pretitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
  }

  .hero__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-xl);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--space-7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    margin-right: var(--space-4);
  }

  .hero__cta-secondary {
    border-color: var(--color-text);
    color: var(--color-text);
  }

  .hero__cta-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-background);
  }

  .hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      min-height: 70vh;
    }

    .hero__title {
      font-size: var(--font-size-3xl);
    }

    .hero__subtitle {
      font-size: var(--font-size-lg);
    }

    .hero__cta,
    .hero__cta-secondary {
      display: block;
      width: 100%;
      margin: var(--space-3) 0;
    }
  }
.newsletter {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: var(--space-10) 0;
  }

  .newsletter__container {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }

  .newsletter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
  }

  .newsletter__text {
    flex: 1;
  }

  .newsletter__pretitle {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
  }

  .newsletter__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-3);
  }

  .newsletter__description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 500px;
  }

  .newsletter__form-wrapper {
    flex: 1;
    max-width: 500px;
  }

  .newsletter__input-group {
    display: flex;
    gap: 0;
  }

  .newsletter__input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-base);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transition: all var(--transition-fast);
  }

  .newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .newsletter__input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
  }

  .newsletter__btn {
    padding: var(--space-4) var(--space-6);
    white-space: nowrap;
    border: 2px solid var(--color-accent);
  }

  .newsletter__disclaimer {
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.6);
  }

  .newsletter__success {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-weight: 500;
  }

  .newsletter__success svg {
    color: var(--color-accent);
  }

  .newsletter__error {
    margin-top: var(--space-2);
    font-size: var(--font-size-sm);
    color: #FF6B6B;
  }

  @media (max-width: 768px) {
    .newsletter__content {
      flex-direction: column;
      text-align: center;
    }

    .newsletter__form-wrapper {
      width: 100%;
      max-width: none;
    }

    .newsletter__input-group {
      flex-direction: column;
    }

    .newsletter__input,
    .newsletter__btn {
      width: 100%;
    }
  }
/* Visually hidden but accessible */
  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .product {
    padding: var(--space-8) 0;
  }

  .product__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }

  /* Gallery */
  .product__gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-5));
    align-self: start;
  }

  .product__main-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--color-background-alt);
    margin-bottom: var(--space-4);
    overflow: hidden;
    border-radius: 12px;
  }

  .product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .product__badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product__badge--sale {
    background-color: var(--color-error);
    color: #FFFFFF;
  }

  .product__thumbnails {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    padding-bottom: var(--space-2);
  }

  .product__thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    transition: border-color var(--transition-fast);
  }

  .product__thumbnail.is-active {
    border-color: var(--color-accent);
  }

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

  /* Info */
  .product__meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
  }

  .product__vendor,
  .product__sku {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
  }

  .product__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-3);
  }

  .product__rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
  }

  .product__rating-text {
    margin-left: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .product__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .product__price-regular,
  .product__price-sale {
    font-size: var(--font-size-3xl);
    font-weight: 700;
  }

  .product__price-sale {
    color: var(--color-error);
  }

  .product__price-compare {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    text-decoration: line-through;
  }

  .product__price-save {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-success);
    padding: var(--space-1) var(--space-2);
    background-color: rgba(40, 167, 69, 0.1);
  }

  .product__short-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border-light);
  }

  /* Form */
  .product__option {
    margin-bottom: var(--space-5);
  }

  .product__option-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product__option-value {
    font-weight: 400;
    color: var(--color-text-muted);
  }

  .product__variants {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .product__variant {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 120px;
  }

  .product__variant input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product__variant.is-selected {
    border-color: var(--color-accent);
    background-color: rgba(212, 175, 55, 0.05);
  }

  .product__variant.is-soldout {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .product__variant:hover:not(.is-soldout) {
    border-color: var(--color-primary);
  }

  .product__variant-title {
    font-size: var(--font-size-sm);
    font-weight: 500;
  }

  .product__variant-price {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
  }

  /* Color Swatches */
  .product__color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
  }

  .product__color-swatch {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 3px solid var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .product__color-swatch:hover {
    transform: scale(1.05);
    border-color: var(--color-text-muted);
  }

  .product__color-swatch.is-selected {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--color-accent);
  }

  /* Color swatch backgrounds */
  .product__color-swatch--black { background-color: #1a1a1a; }
  .product__color-swatch--orange { background-color: #FF8C00; }
  .product__color-swatch--red { background-color: #DC143C; }
  .product__color-swatch--blue { background-color: #0047AB; }
  .product__color-swatch--yellow { background-color: #FFD700; }
  .product__color-swatch--green { background-color: #228B22; }
  .product__color-swatch--buff { background-color: #D4B896; }
  .product__color-swatch--brown { background-color: #8B4513; }

  .product__option-selected {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
  }

  /* Size Options */
  .product__size-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .product__size-btn {
    padding: var(--space-3) var(--space-5);
    border: 2px solid var(--color-border);
    background: transparent;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product__size-btn:hover {
    border-color: var(--color-text);
  }

  .product__size-btn.is-selected {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: white;
  }

  .product__variant-description {
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background-color: var(--color-background-alt);
    border-left: 3px solid var(--color-accent);
  }

  /* Quantity */
  .product__quantity {
    margin-bottom: var(--space-5);
  }

  .product__quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
  }

  .product__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
  }

  .product__quantity-btn:hover {
    background-color: var(--color-background-alt);
  }

  .product__quantity-input {
    width: 60px;
    height: 44px;
    text-align: center;
    font-size: var(--font-size-base);
    font-weight: 600;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    -moz-appearance: textfield;
  }

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

  /* Actions */
  .product__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }

  .product__add-to-cart {
    gap: var(--space-3);
  }
  
  .product__buy-now {
    gap: var(--space-3);
  }
  
  .btn-teal {
    background-color: #0bb5a0 !important;
    color: #ffffff !important;
    border: none !important;
  }
  
  .btn-teal:hover {
    background-color: #0a9b8a !important;
    transform: translateY(-1px);
  }
  
  .btn-teal:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
  }

  /* Trust badges */
  .product__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border-light);
  }

  .product__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

  .product__trust-item svg {
    color: var(--color-primary);
  }

  /* Full description */
  .product__description-full {
    max-width: var(--page-width, 1200px);
    margin: var(--space-10) auto 0;
    padding: 0 var(--space-5);
  }

  .product__section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-accent);
  }

  .product__description-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
  }

  /* Sticky bar */
  .product__sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-3) var(--space-4);
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
  }

  .product__sticky-bar.is-visible {
    transform: translateY(0);
  }

  .product__sticky-info {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-2);
  }

  .product__sticky-title {
    font-weight: 600;
    font-size: var(--font-size-sm);
  }

  .product__sticky-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-accent);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .product__container {
      gap: var(--space-6);
    }
  }

  @media (max-width: 768px) {
    .product__container {
      grid-template-columns: 1fr;
    }

    .product__gallery {
      position: static;
    }

    .product__title {
      font-size: var(--font-size-3xl);
    }

    .product__sticky-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product__sticky-info {
      margin-bottom: 0;
    }

    .product__sticky-btn {
      padding: var(--space-3) var(--space-6);
    }
  }

  /* Product Description Section - Full Width with styles */
  .product__description-section {
    padding: var(--space-10) 0;
    margin-top: var(--space-8);
  }
  
  .product__description-container {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  
  .product__description-section.section--light {
    background: var(--color-background);
  }
  
  .product__description-section.section--alt {
    background: #f8f8f8;
  }
  
  .product__description-section.section--dark {
    background: #1a1a1a;
  }
  
  .product__description-section.section--dark .product__section-title,
  .product__description-section.section--dark .product__description-content {
    color: #ffffff;
  }
  
  .product__description-section.section--teal {
    background: var(--color-primary);
  }
  
  .product__description-section.section--teal .product__section-title,
  .product__description-section.section--teal .product__description-content {
    color: #ffffff;
  }
  
  .product__description-section.section--teal .product__section-title {
    border-color: var(--color-accent-gold);
  }
  
  .product__description-section.accent--gold .product__section-title {
    border-color: var(--color-accent-gold);
  }

  /* Complete Your Set Section - Full Width with styles */
  .product__complete-set {
    padding: var(--space-10) 0;
    margin-top: 0;
  }
  
  .product__complete-set-container {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  
  .product__complete-set.section--light {
    background: var(--color-background);
  }
  
  .product__complete-set.section--alt {
    background: #f8f8f8;
  }
  
  .product__complete-set.section--dark {
    background: #1a1a1a;
  }
  
  .product__complete-set.section--dark .product__section-title,
  .product__complete-set.section--dark .product__step-name {
    color: #ffffff;
  }
  
  .product__complete-set.section--dark .product__complete-intro,
  .product__complete-set.section--dark .product__step-grit,
  .product__complete-set.section--dark .product__steps-total span:first-child,
  .product__complete-set.section--dark .product__steps-total-price span:first-child {
    color: #aaaaaa;
  }
  
  .product__complete-set.section--dark .product__step-item {
    background: #222222;
    border-color: #333333;
  }
  
  .product__complete-set.section--dark .product__step-item:hover {
    border-color: #444444;
  }
  
  .product__complete-set.section--dark .product__steps-size-selector {
    background: #222222;
  }
  
  .product__complete-set.section--dark .product__size-btn {
    border-color: #444444;
    color: #ffffff;
  }
  
  .product__complete-set.section--dark .product__steps-summary {
    border-color: #333333;
  }
  
  .product__complete-set.section--teal {
    background: var(--color-primary);
  }
  
  .product__complete-set.section--teal .product__section-title,
  .product__complete-set.section--teal .product__step-name,
  .product__complete-set.section--teal .product__steps-total span:first-child,
  .product__complete-set.section--teal .product__steps-total-price span:first-child {
    color: #ffffff;
  }
  
  .product__complete-set.section--teal .product__complete-intro,
  .product__complete-set.section--teal .product__step-grit {
    color: rgba(255,255,255,0.8);
  }
  
  .product__complete-set.section--teal .product__step-item {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
  }
  
  .product__complete-set.section--teal .product__step-price {
    color: var(--color-accent-gold);
  }
  
  .product__complete-set.section--teal .product__steps-size-selector {
    background: rgba(255,255,255,0.1);
  }
  
  .product__complete-set.section--teal .product__size-btn {
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
  }
  
  .product__complete-set.section--teal .product__size-btn.is-selected {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: #000000;
  }
  
  .product__complete-set.section--teal .product__steps-summary {
    border-color: rgba(255,255,255,0.2);
  }
  
  .product__complete-set.accent--gold .product__step-price,
  .product__complete-set.accent--gold #selected-count,
  .product__complete-set.accent--gold #total-price {
    color: var(--color-accent-gold);
  }
  
  .product__complete-set.accent--gold #selected-count {
    background: var(--color-accent-gold);
    color: #000000;
  }

  .product__complete-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .product__steps-size-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--color-background);
    border-radius: 8px;
  }

  .product__steps-size-selector .product__option-label {
    margin: 0;
    font-weight: 600;
  }

  .product__steps-size-selector .product__size-options {
    display: flex;
    gap: var(--space-2);
  }

  .product__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }

  .product__step-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-background);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product__step-item:hover {
    border-color: var(--color-border);
  }

  .product__step-item.is-current {
    border-color: var(--color-accent);
    background: color-mix(in srgb, var(--color-accent) 5%, var(--color-background));
  }

  .product__step-item:has(.product__step-checkbox:checked) {
    border-color: var(--color-accent);
  }

  .product__step-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product__step-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }

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

  .product__step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .product__step-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text);
  }

  .product__step-grit {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
  }

  .product__step-price {
    font-weight: 600;
    color: var(--color-accent);
  }

  .product__step-check {
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .product__step-check svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: white;
  }

  .product__step-item:has(.product__step-checkbox:checked) .product__step-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
  }

  .product__step-item:has(.product__step-checkbox:checked) .product__step-check svg {
    opacity: 1;
    transform: scale(1);
  }

  .product__steps-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
  }

  .product__steps-total,
  .product__steps-total-price {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-lg);
  }

  .product__steps-total span:last-child,
  .product__steps-total-price span:last-child {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.25em;
  }

  #selected-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: var(--color-background);
    border-radius: 50%;
    font-weight: 700;
  }
    font-weight: 700;
    color: var(--color-accent);
  }

  .product__steps-add {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }

  @media (max-width: 768px) {
    .product__complete-set {
      margin: var(--space-8) var(--space-4) 0;
      padding: var(--space-6);
    }

    .product__steps-grid {
      grid-template-columns: 1fr;
    }

    .product__steps-summary {
      flex-direction: column;
      gap: var(--space-4);
    }

    .product__steps-add {
      width: 100%;
      justify-content: center;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.testimonials {
    padding: var(--space-10) 0;
  }

  .testimonials__header {
    text-align: center;
    margin-bottom: var(--space-8);
  }

  .testimonials__pretitle {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
  }

  .testimonials__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
  }

  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .testimonial {
    background-color: var(--color-background);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  }

  .testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .testimonial__rating {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
  }

  .testimonial__quote {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 var(--space-5);
    padding: 0;
    border: none;
  }

  .testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border-light);
  }

  .testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }

  .testimonial__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-transform: uppercase;
  }

  .section--dark .testimonial__avatar--placeholder,
  .section--teal .testimonial__avatar--placeholder {
    background-color: var(--color-primary);
    color: #FFFFFF;
  }

  .testimonial__author-info {
    display: flex;
    flex-direction: column;
  }

  .testimonial__name {
    font-style: normal;
    font-weight: 600;
    font-size: var(--font-size-base);
  }

  .testimonial__title {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
  }

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

  @media (max-width: 640px) {
    .testimonials__grid {
      grid-template-columns: 1fr;
    }
  }
.value-props {
    padding: var(--space-10) 0;
  }

  .value-props__header {
    text-align: center;
    margin-bottom: var(--space-8);
  }

  .value-props__pretitle {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
  }

  .section--dark .value-props__pretitle {
    color: var(--color-accent-light);
  }

  .section--teal .value-props__pretitle {
    color: var(--color-accent-light);
  }

  .value-props__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
  }

  .value-props__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
  }

  .value-prop {
    text-align: center;
  }

  .value-prop__icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--color-accent);
  }

  .section--dark .value-prop__icon,
  .section--teal .value-prop__icon {
    color: var(--color-accent-light);
  }

  .value-prop__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
  }

  .value-prop__description {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-muted);
  }

  @media (max-width: 768px) {
    .value-props__title {
      font-size: var(--font-size-2xl);
    }

    .value-props__grid {
      grid-template-columns: 1fr;
      gap: var(--space-6);
    }
  }

/* 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;
  }