/** Shopify CDN: Minification failed

Line 1412:2 All "@import" rules must come first
Line 1477:2 Unexpected "{"
Line 1477:3 Expected identifier but found "%"
Line 1483:2 Unexpected "{"
Line 1483:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.section-clean-collection {
    background: #ffffff;
  width: 100%;
    padding: 0;
    margin: 0;
  }

  .collection-container {
  width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .collection-layout {
  display: grid;
  grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  @media screen and (min-width: 1024px) {
    .collection-layout {
      grid-template-columns: 280px 1fr;
      gap: 2rem;
    }
  }

  .collection-header {
    display: none;
  }

  /* Filter Sidebar */
  .collection-filters {
    background: #ffffff;
  padding: 1.5rem;
    border-radius: 4px;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .filter-group {
  margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0;
  }

  .filter-group:last-child {
    border-bottom: none;
  margin-bottom: 0;
}

  .filter-title {
    font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
    padding: 1rem 0;
    color: #000;
  text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

  .filter-title:hover {
    color: #666;
  }

  .filter-title::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: normal;
  transition: transform 0.2s ease;
  }

  .filter-title.active::after {
    content: '−';
    transform: rotate(0deg);
  }

  .filter-options {
  display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
    animation: slideDown 0.3s ease;
  }

  .filter-options.active {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 300px;
    }
  }

  .filter-option {
    display: flex;
  align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .filter-option:hover {
    color: #000;
  }

  .filter-option input {
    margin: 0;
  }

  .clear-filters-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #000;
  color: #000;
    padding: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
  }

  .clear-filters-btn:hover {
    background: #000;
    color: white;
  }

  /* Sorting Section */
  .sorting-section {
  display: flex;
    justify-content: space-between;
  align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
  }

  @media screen and (max-width: 767px) {
    .sorting-section {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  }

  .results-count {
    font-size: 0.85rem;
    color: #666;
  }

  .sort-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  }

  .sort-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
  }

  .sort-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 0.8rem;
    background: white;
    cursor: pointer;
    min-width: 160px;
  }

  .sort-select:focus {
    outline: none;
    border-color: #000;
  }

  @media screen and (max-width: 1023px) {
    .collection-filters {
      order: 2;
      margin-top: 2rem;
  position: relative;
      max-height: none;
      overflow-y: visible;
    }
    
    .collection-grid-container {
      order: 1;
    }
  }

  /* Ensure sticky works better */
  .collection-layout {
    align-items: flex-start;
  }

  /* Product Grid with Lines */
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.5px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
  }

  @media screen and (min-width: 768px) {
    .collection-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .product-card-item {
    background-color: #ffffff;
  }

  .product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: border 0.2s ease;
    padding: 1rem;
    height: 100%;
    border: 2px solid transparent;
  }

  .product-card:hover {
    border-color: #000;
  }

  .product-card--sold-out {
    opacity: 0.65;
  }

  .product-image-container {
  position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 0.75rem;
    background: #ffffff;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .product-image--primary {
  position: absolute;
  top: 0;
  left: 0;
    opacity: 1;
  }

  .product-image--secondary {
  position: absolute;
  top: 0;
  left: 0;
    opacity: 0;
  }

  .product-card:hover .has-secondary-image .product-image--primary {
    opacity: 0;
  }

  .product-card:hover .has-secondary-image .product-image--secondary {
    opacity: 1;
  }

  .sold-out-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 2;
  }

  .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 2;
  }

  .product-info {
    text-align: left;
  }

  .product-vendor {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }

  .product-title {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-colors {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .current-color {
  font-weight: 500;
    color: #333;
    text-transform: capitalize;
  }

  .color-count {
    color: #999;
  }

  .product-price {
    font-size: 0.8rem;
  font-weight: 500;
    color: #000;
  }

  .price--on-sale .price--compare {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
  }

  .price--on-sale .price--sale {
    color: #000;
  }

  .auto-loading-section {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem 0;
    transition: opacity 0.5s ease;
  }

  .loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .loading-text {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
  }

  .progress-info {
    margin-top: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .progress-bar {
    height: 2px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 1px;
  }

  .progress-fill {
    height: 100%;
    background: #000;
    transition: width 0.4s ease;
  }

  .progress-text {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.25px;
  }

  /* Empty state */
  .collection-empty {
    text-align: center;
    padding: 4rem 1rem;
  }

  .collection-empty h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
  }

  .collection-empty p {
    color: #999;
    font-size: 0.9rem;
  }

  /* Loading state */
  .loading-overlay {
    position: absolute;
  top: 0;
    left: 0;
  right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .loading-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.custom-product-listing {
    padding: 2rem 0;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Source Code Pro', monospace;
    position: relative;
  }

  .custom-product-listing__container {
    width: 100%;
    position: relative;
  }

  .custom-product-listing__header {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .custom-product-listing__title {
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Source Code Pro', 'Courier New', monospace;
    font-size: 1.75rem;
    font-weight: 500;
    color: #0f0f0f;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .custom-product-listing__title::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #1a1a1a 0%, #666 50%, #1a1a1a 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .custom-product-listing__title:hover::before {
    opacity: 0.6;
  }

  .custom-product-listing__title:hover {
    color: #000;
    letter-spacing: 0.06em;
  }

  .custom-product-listing__title::after {
    content: '[' attr(data-count) ']';
    font-size: 0.65em;
    color: #666;
    margin-left: 0.5em;
    font-weight: 400;
    opacity: 0.7;
  }

  @media screen and (max-width: 767px) {
    .custom-product-listing__title {
      font-size: 1.25rem;
      letter-spacing: 0.03em;
    }
    
    .custom-product-listing__title::after {
      font-size: 0.6em;
      margin-left: 0.3em;
    }
  }

  .custom-product-listing__scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    width: 100%;
  }

  .custom-product-listing__scroll-container::-webkit-scrollbar {
    display: none;
  }

  .custom-product-listing__scroll-wrapper {
    position: relative;
  }

  .custom-product-listing__grid {
    display: flex;
    gap: 5px;
    padding: 0 1rem;
    min-width: min-content;
  }

  .custom-product-listing__grid--centered {
    justify-content: center;
  }

  .custom-product-listing__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    margin-top: -1rem;
    line-height: 1;
    text-align: center;
  }

  .custom-product-listing__nav:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #1a1a1a;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    margin-top: -1rem;
  }

  .custom-product-listing__nav:hover span {
    transform: translateY(-1px);
  }

  .custom-product-listing__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    margin-top: -1rem;
  }

  .custom-product-listing__nav:disabled span {
    transform: translateY(-1px);
  }

  .custom-product-listing__nav--prev {
    left: 1.5rem;
  }

  .custom-product-listing__nav--next {
    right: 1.5rem;
  }

  .custom-product-listing__nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    transform: translateY(-1px);
  }

  @media screen and (max-width: 767px) {
    .custom-product-listing__scroll-container {
      overflow: visible;
    }

    .custom-product-listing__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 5px 5px;
      row-gap: 20px;
      padding: 0 1rem;
      min-width: auto;
    }

    .custom-product-listing__nav {
      display: none;
    }
  }

  .product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0;
    width: 350px;
  }

  @media screen and (max-width: 767px) {
    .product-card {
      width: 100%;
    }
  }

  .product-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-1px);
  }

  .product-card__image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f8f8f8;
  }

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

  .product-card:hover .product-card__image {
    transform: scale(1.02);
  }

  .product-card__content {
    padding: 1rem;
  }

  .product-card__vendor {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
  }

  .product-card__price--compare {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 400;
  }

  .product-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }

  .product-card__badge--sale {
    background: #dc2626;
  }

  .product-card__badge--new {
    background: #059669;
  }

  .custom-product-listing__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .custom-product-listing__load-more {
    text-align: center;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .custom-product-listing__button {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
  }

  .custom-product-listing__button:hover {
    background: #333;
    transform: translateY(-1px);
  }

  .custom-product-listing__scroll-indicator {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  @media screen and (max-width: 767px) {
    .custom-product-listing__scroll-indicator {
      display: none;
    }
  }
/* Tab Navigation */
  .tab-button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 1rem 0.25rem;
    transition: all 0.2s ease-in-out;
  }

  .tab-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #6366f1;
  }

  .tab-button.tab-active {
    color: #111827;
    border-bottom-color: #111827;
  }

  .tab-button:not(.tab-active):hover {
    color: #374151;
    border-bottom-color: #d1d5db;
  }

  /* Tab Content */
  .tab-pane {
    display: none;
  }

  .tab-pane.tab-pane-active {
    display: block;
  }

  /* Feature List Styling */
  .tab-pane ul li {
    line-height: 1.625;
  }

  .tab-pane ul li svg {
    margin-top: 0.125rem;
  }

  /* Specifications Grid */
  .tab-pane dl div:first-child {
    border-top: none;
    padding-top: 0;
  }

  .tab-pane dt {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .tab-pane dd {
    font-weight: 400;
  }

  /* Responsive Design */
  @media (max-width: 640px) {
    .product-tabs-section {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .product-info-content .flex.space-x-8 {
      flex-direction: column;
      space-x: 0;
      gap: 0;
    }

    .tab-button {
      flex: 1;
      text-align: center;
      padding: 0.75rem 1rem;
      border-bottom: 2px solid transparent;
      border-radius: 0.5rem 0.5rem 0 0;
      background-color: #f9fafb;
      margin-bottom: -1px;
    }

    .tab-button.tab-active {
      background-color: white;
      border-bottom-color: transparent;
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }

    .tab-button:not(.tab-active) {
      color: #6b7280;
    }

    .tab-pane dl {
      grid-template-columns: 1fr;
    }

    .tab-pane dl div {
      padding-top: 1rem;
      border-top: 1px solid #e5e7eb;
    }
  }

  /* Animation for tab transitions */
  .tab-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .tab-pane.tab-pane-active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Empty state styling */
  .tab-pane .text-center svg {
    opacity: 0.6;
  }

  .tab-pane .text-center h3 {
    margin-top: 0.5rem;
  }

  .tab-pane .text-center p {
    margin-top: 0.25rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hover effects for better interactivity */
  .tab-button:hover:not(.tab-active) {
    background-color: #f3f4f6;
  }

  /* Focus-visible for better accessibility */
  .tab-button:focus-visible {
    box-shadow: 0 0 0 2px #6366f1, 0 0 0 4px rgba(99, 102, 241, 0.1);
  }
.luxury-product-grid {
    width: 100%;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    background: #ffffff;
    position: relative;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.025rem;
    line-height: 1.5rem;
    -webkit-font-smoothing: antialiased;
  }

  .luxury-product-grid__container {
    width: 100%;
    max-width: none;
  }

  .luxury-product-grid__header {
    text-align: left;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
  }

  .luxury-product-grid__title {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    -webkit-font-smoothing: antialiased;
  }

  .luxury-product-grid__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #000000;
  }

  .luxury-product-grid__subtitle {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: #666666;
    margin-top: 1rem;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    font-weight: 300;
  }

  .luxury-product-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0;
    gap: 0;
  }

  @media screen and (max-width: 768px) {
    .luxury-product-grid__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .luxury-product-grid__header {
      padding: 2rem 1rem 1.5rem;
      text-align: left;
    }
    
    .luxury-product-grid__title {
      font-size: 1.2rem;
    }

    .luxury-product-grid__empty {
      text-align: left;
      padding: 3rem 1rem;
    }

    .luxury-product-grid__load-more {
      text-align: left;
      padding: 2rem 1rem;
    }
  }

  @media screen and (max-width: 480px) {
    .luxury-product-grid__grid {
      grid-template-columns: 1fr;
    }
  }

  .lv-product-card {
    background: #ffffff;
    border: 1px solid #e2e0df;
    border-width: 0 1px 1px 0;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    list-style: none;
    grid-column: span 1;
  }

  .lv-product-card:hover {
    background: #fafafa;
  }

  .lv-product-card:nth-child(3n) {
    border-right: none;
  }

  .lv-product-card:nth-last-child(-n+3) {
    border-bottom: none;
  }

  @media screen and (max-width: 768px) {
    .lv-product-card:nth-child(3n) {
      border-right: 1px solid #e2e0df;
    }
    
    .lv-product-card:nth-child(2n) {
      border-right: none;
    }

    .lv-product-card:nth-last-child(-n+3) {
      border-bottom: 1px solid #e2e0df;
    }
    
    .lv-product-card:nth-last-child(-n+2) {
      border-bottom: none;
    }
  }

  @media screen and (max-width: 480px) {
    .lv-product-card {
      border-right: none;
    }

    .lv-product-card:last-child {
      border-bottom: none;
    }
  }

  .lv-product-card__wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }

  .lv-product-card__media {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background: #f8f8f8;
    overflow: hidden;
  }

  .lv-product-card__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .lv-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent;
  }

  .lv-product-card:hover .lv-product-card__image {
    transform: scale(1.05);
  }

  .lv-product-card__info-wrapper {
    padding: 1.5rem;
    flex-grow: 0;
    flex-shrink: 0;
  }

  @media screen and (max-width: 768px) {
    .lv-product-card__info-wrapper {
      padding: 1rem;
    }
  }

  .lv-product-card__info {
    text-align: left;
  }

  .lv-product-card__name-wrapper {
    margin-bottom: 0.5rem;
  }

  .lv-product-card__name {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.025rem;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
  }



  .lv-product-card__price {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.025rem;
    color: #000;
    margin: 0;
  }

  .lv-product-card__price--compare {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
  }

  .lv-product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: #ffffff;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
    font-weight: 400;
    z-index: 3;
  }

  .lv-product-card__badge--sale {
    background: #000000;
  }

  .lv-product-card__badge--new {
    background: #666666;
  }

  .luxury-product-grid__empty {
    text-align: left;
    padding: 4rem 2rem;
    color: #666666;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    letter-spacing: 0.025rem;
  }

  .luxury-product-grid__load-more {
    text-align: left;
    padding: 3rem 2rem;
    border-top: 1px solid #e2e0df;
    background: #fafafa;
  }

  .luxury-product-grid__button {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 1rem 2rem;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
  }

  .luxury-product-grid__button:hover {
    background: #ffffff;
    color: #000000;
  }
/* Product Gallery Styles */
  .product-gallery .aspect-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-thumbnails .product-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  }

  .product-thumbnails .product-thumbnail:hover {
    border-color: #e5e7eb;
  }

  .product-thumbnails .product-thumbnail.is-active {
    border-color: #374151;
  }

  .product-thumbnails .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Product Information Spacing */
  .product-information {
    max-width: none;
  }

  /* Modal Styles */
  .product-popup-modal__content {
    background: white;
    border-radius: 12px;
    max-width: 32rem;
    margin: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  /* Navigation Arrows */
  .flickity-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    z-index: 10;
  }

  .flickity-nav:hover {
    background: #f9fafb;
    border-color: #d1d5db;
  }

  .flickity-nav.flickity-prev {
    left: 16px;
  }

  .flickity-nav.flickity-next {
    right: 16px;
  }

  .flickity-nav svg {
    width: 16px;
    height: 16px;
  }

  /* Page Dots */
  .flickity-page-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .flickity-page-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .flickity-page-dots .dot.is-selected {
    background: white;
  }

  /* Responsive Design */
  @media (max-width: 1023px) {
    .lg\:grid {
      display: block;
    }
    
    .lg\:col-span-1 {
      width: 100%;
    }
    
    .lg\:gap-12 {
      gap: 0;
    }
    
    .product-information {
      padding-top: 2rem;
    }
  }

  @media (max-width: 640px) {
    .product-thumbnails {
      margin-top: 1rem;
    }
    
    .product-thumbnails .flex {
      gap: 0.5rem;
    }
    
    .product-thumbnails .product-thumbnail {
      width: 60px;
      height: 60px;
    }
    
    .flickity-nav {
      display: none;
    }
  }
/* Import Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
  
  /* Utility Classes */
  .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;
  }

  /* Font Awesome Icon Styling - Modern Sharp Aesthetic */
  .modern-header__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
  }

  /* Enhanced icon crispness */
  .modern-header__icon:before {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-feature-settings: "liga" off !important;
  }

  /* Ensure Font Awesome icons display properly */
  .modern-header__icon.fas:before,
  .modern-header__icon.far:before,
  .modern-header__icon.fab:before {
    font-family: "Font Awesome 6 Free" !important;
  }

  .modern-header__icon.fas:before {
    font-weight: 900 !important;
  }

  .modern-header__icon.far:before {
    font-weight: 400 !important;
  }

  .modern-header__icon.fab:before {
    font-weight: 400 !important;
  }

  /* Clean Modern Header Styles - Black Top Theme */
  .modern-header {
    position: relative;
    background: #ffffff;
    z-index: 99;
    font-family: 'Roboto', sans-serif;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  {% if sticky_header %}
    .modern-header {
      position: sticky !important;
      top: 0 !important;
      z-index: 999 !important;
    }
  {% endif %}
  
  .modern-header__top {
    background: var(--color-header-bg, #000000) !important;
    border-bottom: 1px solid #333333 !important;
    color: var(--color-header-text, #ffffff) !important;
    height: auto !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .modern-header__top * {
    color: var(--color-header-text, #ffffff) !important;
  }

  .modern-header__top a {
    color: var(--color-header-links, #ffffff) !important;
  }
  
  .modern-header__container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0.75rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    min-height: 60px !important;
    box-sizing: border-box !important;
  }
  
  /* Logo Component */
  .modern-header__logo {
    flex-shrink: 0 !important;
    padding: 0 1rem 0 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .modern-header__logo .logoimg {
    height: var(--logo-height, 40px) !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  @media (max-width: 1023px) {
    .modern-header__logo .logoimg {
      height: var(--logo-height-mobile, 28px) !important;
    }
  }
  
  .modern-header__logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* Search Component */
  .modern-header__search {
    display: none !important;
    flex: 1 !important;
    max-width: 256px !important;
    margin-left: auto !important;
    margin-right: 1rem !important;
  }

  @media (min-width: 1024px) {
    .modern-header__search {
      display: flex !important;
    }
  }
  
  .modern-header__search-form {
    position: relative;
    width: 100%;
  }
  
  .modern-header__search-input {
    width: 100% !important;
    padding: 0.625rem 2.75rem 0.625rem 0.875rem !important;
    border: 1px solid #444444 !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    font-size: 0.875rem !important;
    border-radius: 4px !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 !important;
    height: 38px !important;
    box-sizing: border-box !important;
  }
  
  .modern-header__search-input:hover {
    border-color: #666666;
    background-color: #222222;
  }
  
  .modern-header__search-input:focus {
    border-color: #ffffff;
    background-color: #222222;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  }
  
  .modern-header__search-input::placeholder {
    color: #ffffff;
  }
  
  .modern-header__search-btn {
    position: absolute !important;
    top: 50% !important;
    right: 0.625rem !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    color: var(--color-header-icons, #ffffff) !important;
    cursor: pointer !important;
    padding: 0.375rem !important;
    border-radius: 4px !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 1.75rem !important;
    height: 1.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .modern-header__search-btn svg {
    color: #ffffff !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
  }

  .modern-header__search-btn:hover svg {
    color: #e51d1d !important;
    transform: scale(1.05) !important;
  }

  .modern-header__search-btn:active svg {
    transform: scale(0.95) !important;
  }

  .modern-header__search-btn:focus-visible {
    outline: 2px solid #e51d1d !important;
    outline-offset: 2px !important;
    border-radius: 4px !important;
  }
  
  /* Secondary Navigation */
  .modern-header__secondary {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    visibility: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Search Form Visibility */
  .modern-header__search {
    visibility: visible !important;
  }

  /* Force visibility for all header elements */
  .modern-header__container > * {
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .modern-header__icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-header-icons, #ffffff) !important;
    text-decoration: none !important;
    padding: 0.625rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 4px !important;
    position: relative !important;
    box-sizing: border-box !important;
  }
  
  .modern-header__icon-btn svg {
    color: #ffffff !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
  }

  .modern-header__icon-btn:hover svg {
    color: #e51d1d !important;
    transform: scale(1.05) !important;
  }

  .modern-header__icon-btn:active svg {
    transform: scale(0.95) !important;
  }

  .modern-header__icon-btn:focus-visible {
    outline: 2px solid #e51d1d !important;
    outline-offset: 2px !important;
    border-radius: 4px !important;
  }
  
  .modern-header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modern-header__cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: #d80032;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 50%;
    min-width: 1.25rem;
    text-align: center;
  }
  
  /* Mobile Toggle */
  .modern-header__mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background: transparent !important;
    border: none !important;
    color: var(--color-header-icons, #ffffff) !important;
    cursor: pointer !important;
    margin-left: 0.75rem !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 4px !important;
    padding: 0.625rem !important;
    box-sizing: border-box !important;
  }

  .modern-header__mobile-toggle svg,
  .modern-header__mobile-toggle .mobile-menu-bars {
    color: #ffffff !important;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
  }

  .modern-header__mobile-toggle:hover svg,
  .modern-header__mobile-toggle:hover .mobile-menu-bars {
    color: #e51d1d !important;
    transform: scale(1.05) !important;
  }

  .modern-header__mobile-toggle:active svg,
  .modern-header__mobile-toggle:active .mobile-menu-bars {
    transform: scale(0.95) !important;
  }

  .modern-header__mobile-toggle:focus-visible {
    outline: 2px solid #e51d1d !important;
    outline-offset: 2px !important;
    border-radius: 4px !important;
  }
  
  @media (min-width: 1024px) {
    .modern-header__mobile-toggle {
      display: none !important;
    }
  }

  /* Mobile Menu Hamburger */
  .mobile-menu-bars {
    display: flex !important;
    flex-direction: column !important;
    width: 18px !important;
    height: 14px !important;
    justify-content: space-between !important;
  }

  .mobile-menu-bars span {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    background-color: currentColor !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
  }

  /* Cart Drawer Styles */
  .side-panel {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 9999 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15) !important;
  }

  .side-panel.active {
    transform: translateX(0) !important;
  }

  /* Overlay for cart drawer */
  .side-panel::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
  }

  .side-panel.active::before {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Blur header when cart drawer is open */
  body.cart-drawer-open .modern-header {
    filter: blur(3px) !important;
    pointer-events: none !important;
    transition: filter 0.3s ease !important;
  }

  /* Ensure cart drawer itself is not blurred */
  .side-panel.active {
    filter: none !important;
    pointer-events: auto !important;
  }

  .side-panel-inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .side-panel-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid #e2e4e3 !important;
    background: #ffffff !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1 !important;
  }

  .side-panel-content {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 1rem !important;
  }

  .side-panel-close {
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    color: #666 !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    transition: color 0.2s ease !important;
  }

  .side-panel-close:hover {
    color: #000 !important;
  }

  .side-panel-footer {
    padding: 1rem 1.5rem !important;
    border-top: 1px solid #e2e4e3 !important;
    background: #ffffff !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 1 !important;
  }

  /* Ensure all cart drawer sections are white */
  .cart-drawer__empty-cart,
  .cart-drawer__empty-cart * {
    background: #ffffff !important;
  }

  /* Mobile responsive adjustments */
  @media (max-width: 480px) {
    .side-panel {
      max-width: 100% !important;
    }
  }
  
  /* Navigation Bar - Mobile First */
  .modern-header__nav-bar {
    position: fixed;
    left: 0;
    top: 76px;
    width: 100%;
    border-top: 1px solid #E2E4E3;
    border-bottom: 1px solid #C7CBCA;
    background: #ffffff;
    z-index: 90;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    height: 40px;
  }
  
  .modern-header__nav-bar.open {
    transform: translateX(0);
  }
  
  /* Desktop - Part of Sticky Header */
  @media (min-width: 1024px) {
    .modern-header__nav-bar {
      position: static !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
      border-top: 1px solid #E2E4E3 !important;
      border-bottom: 1px solid #C7CBCA !important;
      background: #F9F9F9 !important;
      height: 40px !important;
      min-height: 40px !important;
      z-index: auto !important;
      width: 100% !important;
      display: block !important;
      margin: 0 !important;
      padding: 0 !important;
      box-sizing: border-box !important;
    }
  }
  
  .modern-header__nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
  }
  
  @media (min-width: 1024px) {
    .modern-header__nav-container {
      flex-direction: row !important;
      height: 40px !important;
      align-items: center !important;
    }
  }
  
  .modern-header__nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  @media (min-width: 1024px) {
    .modern-header__nav-list {
      flex-direction: row !important;
      margin: 0 !important;
      height: 100% !important;
      align-items: center !important;
    }
  }
  
  .modern-header__nav-item {
    position: relative;
    border-bottom: 1px solid #E2E4E3;
    background: #F9F9F9;
  }

  .modern-header__nav-item.custom-nav-item-40px {
    position: relative !important;
    z-index: 10 !important;
  }
  
  @media (min-width: 1024px) {
    .modern-header__nav-item {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-bottom: none;
      background: transparent;
      padding: 0 0.75rem;
      margin: 0;
      height: 40px;
    }
  }
  
  .modern-header__nav-link {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    color: #323332;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.2s ease;
  }
  
  @media (min-width: 1024px) {
    .modern-header__nav-link {
      padding: 0.5rem 0.75rem;
      color: #646565;
      font-size: 0.875rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }
  }
  
  .modern-header__nav-link:hover,
  .modern-header__nav-link.active {
    color: #323332;
  }
  
  .modern-header__nav-link span:first-child {
    flex: 1;
  }
  
  .modern-header__nav-arrow {
    margin-left: 1rem !important;
    transform: rotate(-90deg) !important;
    transition: transform 0.2s ease !important;
  }

  @media (min-width: 1024px) {
    .modern-header__nav-arrow {
      display: none !important;
    }
  }
  
  /* Mega Menu */
  .modern-header__mega-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border-top: 1px solid #C7CBCA;
    border-bottom: 1px solid #E2E4E3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    scrollbar-width: thin;
    scrollbar-color: #C7CBCA #f5f5f5;
  }
  
  @media (min-width: 1024px) {
    .modern-header__mega-menu {
      top: 100px; /* Height of sticky header top + nav */
      max-height: calc(100vh - 100px);
    }
    
    .modern-header__nav-item:hover .modern-header__mega-menu {
      opacity: 1;
      visibility: visible;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(15px) translateZ(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) translateZ(0);
    }
  }

  @keyframes fadeOutUp {
    0% {
      opacity: 1;
      transform: translateY(0) translateZ(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-15px) translateZ(0);
    }
  }
  
  .modern-header__mega-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    align-items: start;
    height: 100%;
    overflow-y: auto;
  }
  
  @media (min-width: 768px) {
    .modern-header__mega-content {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .modern-header__mega-content {
      grid-template-columns: repeat(4, 1fr);
      padding: 2rem;
      gap: 2rem;
    }
  }

  @media (min-width: 1200px) {
    .modern-header__mega-content {
      grid-template-columns: repeat(5, 1fr);
      padding: 2rem;
    }
  }
  
  .modern-header__mega-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 1024px) {
    .modern-header__mega-main {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
  
  .modern-header__mega-section h3 {
    color: #7C7F7E;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    margin: 0 0 1rem 0;
    padding: 1rem 0 0 0;
    border-bottom: 1px solid #E2E4E3;
  }
  
  @media (min-width: 1024px) {
    .modern-header__mega-section h3 {
      padding: 0 0 0 0;
      border-bottom: 1px solid #E2E4E3;
    }
  }
  
  .modern-header__mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 1;
  }
  
  @media (min-width: 1024px) {
    .modern-header__mega-list.columns-2 {
      columns: 2;
    }
  }
  
  .modern-header__mega-link {
    display: block;
    padding: 0.5rem 0;
    color: #323332;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .modern-header__mega-link:hover {
    color: #d80032;
  }
  
  .modern-header__mega-link.featured {
    font-weight: 500;
    text-decoration: underline;
  }
  
  /* Featured Section */
  .modern-header__featured {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    border-left: none;
  }
  
  @media (min-width: 1024px) {
    .modern-header__featured {
      padding-left: 1.5rem;
      border-left: 1px solid #E2E4E3;
    }
  }
  
  .modern-header__featured-image {
    position: relative;
    margin-bottom: 2.5rem;
    order: 2;
  }
  
  @media (min-width: 1024px) {
    .modern-header__featured-image {
      order: 1;
      margin-bottom: 0;
      margin-top: 0;
    }
  }
  
  .modern-header__featured-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  
  .modern-header__featured-content {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 100%;
    padding: 0 1.5rem;
  }
  
  .modern-header__featured-content h3 {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
  }
  
  .modern-header__featured-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #d80032;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease;
  }
  
  .modern-header__featured-btn:hover {
    background: #B20029;
  }
  
  .modern-header__featured-links {
    order: 1;
  }
  
  @media (min-width: 1024px) {
    .modern-header__featured-links {
      order: 2;
      margin-top: 2rem;
    }
  }
  
  .modern-header__featured-links h3 {
    color: #7C7F7E;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    margin: 0 0 0.5rem 0;
    padding: 1rem 0 0 0;
    border-bottom: 1px solid #E2E4E3;
  }
  
  @media (min-width: 1024px) {
    .modern-header__featured-links h3 {
      padding: 0;
      margin-top: 2rem;
      border-bottom: 1px solid #E2E4E3;
    }
  }


  /* Mega Menu Styles for 40px Navigation */
  .custom-mega-menu-40px {
    position: fixed !important;
    top: 38px !important;
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: calc(100vh - 38px) !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-top: 1px solid #C7CBCA !important;
    border-bottom: 1px solid #E2E4E3 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
    z-index: 9999 !important;
    scrollbar-width: thin !important;
    scrollbar-color: #C7CBCA #f5f5f5 !important;
  }

  @media (min-width: 1024px) {
    .custom-mega-menu-40px {
      top: 40px !important;
      max-height: calc(100vh - 40px) !important;
    }
  }

  /* Custom scrollbar for webkit browsers */
  .custom-mega-menu-40px::-webkit-scrollbar {
    width: 8px !important;
  }

  .custom-mega-menu-40px::-webkit-scrollbar-track {
    background: #f5f5f5 !important;
    border-radius: 4px !important;
  }

  .custom-mega-menu-40px::-webkit-scrollbar-thumb {
    background: #C7CBCA !important;
    border-radius: 4px !important;
  }

  .custom-mega-menu-40px::-webkit-scrollbar-thumb:hover {
    background: #a0a4a3 !important;
  }

  .custom-mega-menu-40px.show {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Fade-in animation for mega menu content */
  .custom-mega-menu-40px.show .custom-mega-content-40px {
    animation: fadeInContent 0.4s ease 0.1s both !important;
  }

  @keyframes fadeInContent {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* Hiding state for smooth fade out */
  .custom-mega-menu-40px.hiding {
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
  }

  /* Background blur effect for main content when mega menu is open */
  body.mega-menu-open #main-content,
  body.mega-menu-open #wrapper > *:not(header):not(.shopify-section-group-header-group) {
    filter: blur(4px) !important;
    -webkit-filter: blur(4px) !important;
    transition: filter 0.3s ease !important;
    pointer-events: none !important;
  }

  /* Ensure header and mega menu stay sharp */
  body.mega-menu-open header,
  body.mega-menu-open .shopify-section-group-header-group,
  body.mega-menu-open .modern-header,
  body.mega-menu-open .custom-mega-menu-40px {
    filter: none !important;
    -webkit-filter: none !important;
  }

  /* Smooth content transitions */
  .custom-mega-content-40px {
    max-width: 1600px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    align-items: start !important;
    height: 100% !important;
    overflow-y: auto !important;
  }





  @media (min-width: 768px) {
    .custom-mega-content-40px {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
      padding: 2rem !important;
      gap: 1.5rem !important;
    }
  }

  @media (min-width: 1024px) {
    .custom-mega-content-40px {
      grid-template-columns: repeat(4, 1fr) !important;
      padding: 2rem !important;
      gap: 2rem !important;
    }
  }

  @media (min-width: 1200px) {
    .custom-mega-content-40px {
      grid-template-columns: repeat(5, 1fr) !important;
      padding: 2rem !important;
    }
  }

  .custom-mega-main-40px {
    display: contents !important;
  }

  /* Brand Grid Mega Menu */
  .custom-mega-brands-grid {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 0 !important;
    opacity: 1 !important;
    border: 1px solid #000000 !important;
    background: #ffffff !important;
    border-collapse: collapse !important;
  }

  .custom-brand-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 10px !important;
    background: #ffffff !important;
    border-right: 1px solid #000000 !important;
    border-bottom: 1px solid #000000 !important;
    border-top: 0 !important;
    border-left: 0 !important;
    transition: background-color 0.2s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    min-height: 120px !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .custom-brand-card:hover {
    background: #f8f9fa !important;
  }

  /* Remove right border from last column (6th items) */
  .custom-brand-card:nth-child(6n) {
    border-right: 0 !important;
  }

  .custom-brand-logo {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain !important;
    margin-bottom: 8px !important;
    transition: transform 0.2s ease !important;
    max-width: 100% !important;
  }

  .custom-brand-card:hover .custom-brand-logo {
    transform: scale(1.05) !important;
  }

  .custom-brand-name {
    font-family: 'Roboto Mono', monospace !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
  }

  .custom-brand-card:hover .custom-brand-name {
    color: #1F2937 !important;
  }

  /* Responsive adjustments for brand grid */
  @media (max-width: 768px) {
    .custom-mega-brands-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }

    .custom-brand-card {
      padding: 12px 8px !important;
      min-height: 100px !important;
    }

    .custom-brand-logo {
      width: 60px !important;
      height: 60px !important;
      margin-bottom: 6px !important;
    }

    .custom-brand-name {
      font-size: 10px !important;
    }

    /* Remove borders to prevent doubling on mobile */
    .custom-brand-card:nth-child(6n) {
      border-right: 1px solid #000000 !important;
    }
    .custom-brand-card:nth-child(3n) {
      border-right: 0 !important;
    }
  }

  /* Special layout for brand grids */
  .custom-mega-content-40px[data-has-brands="true"] {
    display: block !important;
    padding: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  /* Mega Menu Section Styles - Sharp Edges & Monospace */
  .custom-mega-section-40px {
    background: #ffffff !important;
    border-radius: 0 !important;
    padding: 1.5rem !important;
    box-shadow: 0 0 0 1px #000000 !important;
    transition: all 0.15s ease !important;
    border: none !important;
    font-family: 'Courier New', monospace !important;
  }

  .custom-mega-section-40px:hover {
    box-shadow: 0 0 0 2px #d80032 !important;
    background: #f9f9f9 !important;
  }

  .custom-mega-section-40px h3 {
    color: #000000 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin: 0 0 1rem 0 !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid #000000 !important;
    font-family: 'Courier New', monospace !important;
  }

  .custom-mega-section-40px .modern-header__mega-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-mega-section-40px .modern-header__mega-list li {
    margin-bottom: 0.5rem !important;
  }

  .custom-mega-section-40px .modern-header__mega-link {
    display: block !important;
    padding: 0.5rem 0 !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    font-family: 'Courier New', monospace !important;
    transition: all 0.15s ease !important;
    border-radius: 0 !important;
    padding-left: 0.5rem !important;
    border-left: 2px solid transparent !important;
    letter-spacing: 0.05em !important;
  }

  .custom-mega-section-40px .modern-header__mega-link:hover {
    color: #d80032 !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border-left-color: #d80032 !important;
  }

  .custom-mega-section-40px .modern-header__mega-link.featured {
    font-weight: 600 !important;
    color: #000000 !important;
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
    padding: 0.75rem !important;
    text-align: center !important;
    border-radius: 0 !important;
    margin-top: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-size: 0.8rem !important;
    font-family: 'Courier New', monospace !important;
  }

  .custom-mega-section-40px .modern-header__mega-link.featured:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #d80032 !important;
  }

  /* Featured Section Block */
  .custom-mega-featured-40px {
    background: linear-gradient(135deg, #d80032, #B20029) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(216, 0, 50, 0.2) !important;
  }

  .custom-mega-featured-40px .modern-header__featured-image {
    margin-bottom: 2rem !important;
    width: 100% !important;
  }

  .custom-mega-featured-40px .modern-header__featured-image img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  .custom-mega-featured-40px h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 1rem 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
  }

  .custom-mega-featured-40px .modern-header__featured-btn {
    background: #ffffff !important;
    color: #d80032 !important;
    border: none !important;
    padding: 0.75rem 2rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
  }

  .custom-mega-featured-40px .modern-header__featured-btn:hover {
    background: #f8f8f8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links {
    margin-top: 2rem !important;
    width: 100% !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links h3 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin: 0 0 1rem 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links li {
    margin-bottom: 0.5rem !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
    display: block !important;
    padding: 0.25rem 0 !important;
  }

  .custom-mega-featured-40px .modern-header__featured-links a:hover {
    color: #ffcccc !important;
    transform: translateX(4px) !important;
  }

  /* Ensure no conflicts with existing theme styles */
  .modern-header .modern-header__nav-bar {
    height: 40px !important;
  }

  .modern-header .modern-header__nav-container {
    height: 40px !important;
  }

  .modern-header .modern-header__nav-list {
    height: 100% !important;
  }

  .modern-header .modern-header__nav-item {
    height: 40px !important;
  }

  .modern-header .modern-header__nav-link {
    height: 100% !important;
  }

  /* Prevent any theme CSS from overriding our custom styles */
  .modern-header .modern-header__nav-bar,
  .modern-header .modern-header__nav-container,
  .modern-header .modern-header__nav-list,
  .modern-header .modern-header__nav-item,
  .modern-header .modern-header__nav-link {
    box-sizing: border-box !important;
  }
.product-upsell {
    width: 100%;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    background: #ffffff;
    position: relative;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.025rem;
    line-height: 1.5rem;
    -webkit-font-smoothing: antialiased;
  }

  .product-upsell__container {
    width: 100%;
    max-width: none;
  }

  .product-upsell__header {
    text-align: left;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
  }

  .product-upsell__title {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    -webkit-font-smoothing: antialiased;
  }

  .product-upsell__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #000000;
  }

  .product-upsell__subtitle {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: #666666;
    margin-top: 1rem;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    font-weight: 300;
  }

  .product-upsell__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0;
    gap: 0;
  }

  @media screen and (max-width: 768px) {
    .product-upsell__header {
      padding: 2rem 1rem 1.5rem;
      text-align: left;
    }
    
    .product-upsell__title {
      font-size: 1.2rem;
    }

    .product-upsell__empty {
      text-align: left;
      padding: 3rem 1rem;
    }
  }

  .up-product-card {
    background: #ffffff;
    border: 1px solid #e2e0df;
    border-width: 0 1px 1px 0;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    list-style: none;
    grid-column: span 1;
  }

  .up-product-card:hover {
    background: #fafafa;
  }

  .up-product-card:nth-child(4n) {
    border-right: none;
  }

  .up-product-card:nth-last-child(-n+4) {
    border-bottom: none;
  }

  .up-product-card__wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }

  .up-product-card__media {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    background: #f8f8f8;
    overflow: hidden;
  }

  .up-product-card__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .up-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: transparent;
  }

  .up-product-card:hover .up-product-card__image {
    transform: scale(1.05);
  }

  .up-product-card__info-wrapper {
    padding: 1.5rem;
    flex-grow: 0;
    flex-shrink: 0;
  }

  @media screen and (max-width: 768px) {
    .up-product-card__info-wrapper {
      padding: 1rem;
    }
  }

  .up-product-card__info {
    text-align: left;
  }

  .up-product-card__name-wrapper {
    margin-bottom: 0.5rem;
  }

  .up-product-card__name {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.025rem;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
  }

  .up-product-card__price {
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.025rem;
    color: #000;
    margin: 0;
  }

  .up-product-card__price--compare {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
  }

  .up-product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: #ffffff;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
    font-weight: 400;
    z-index: 3;
  }

  .up-product-card__badge--sale {
    background: #000000;
  }

  .up-product-card__badge--new {
    background: #666666;
  }

  .product-upsell__empty {
    text-align: left;
    padding: 4rem 2rem;
    color: #666666;
    font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
    font-size: 0.875rem;
    letter-spacing: 0.025rem;
  }
/* Ring Rental Product - Sharp Technical Styling */
  :root {
    --rrp-border-radius: 0;
    --rrp-transition: all 0.15s linear;
    --rrp-gray-100: #fafafa;
    --rrp-gray-200: #f0f0f0;
    --rrp-gray-400: #999;
    --rrp-gray-800: #333;
    --rrp-font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Courier New', monospace;
  }

  .section-ring-rental-product * {
    box-sizing: border-box;
  }

  .section-ring-rental-product {
    background: var(--rrp-bg-color, #ffffff);
    padding: 2rem 0;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .rrp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
  }

  .rrp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media screen and (min-width: 768px) {
    .rrp-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  @media screen and (min-width: 1024px) {
    .rrp-grid {
      grid-template-columns: 60% 40%;
    }
  }

  /* Gallery Section */
  .rrp-gallery {
    position: relative;
  }

  .rrp-main-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: var(--rrp-gray-100);
    border: 1px solid #000;
    border-radius: var(--rrp-border-radius);
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .rrp-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .rrp-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
  }

  .rrp-thumbnail {
    aspect-ratio: 1;
    border: 1px solid #000;
    border-radius: var(--rrp-border-radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--rrp-gray-100);
    transition: var(--rrp-transition);
    opacity: 0.6;
  }

  .rrp-thumbnail:hover,
  .rrp-thumbnail.active {
    opacity: 1;
    background: #ffffff;
  }

  .rrp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Info Section */
  .rrp-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .rrp-vendor {
    font-family: var(--rrp-font-mono);
    font-size: 0.5rem;
    color: var(--rrp-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.2;
  }

  .rrp-title {
    font-family: var(--rrp-font-mono);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    color: #000;
    line-height: 1.3;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .rrp-description {
    font-family: var(--rrp-font-mono);
    font-size: 0.625rem;
    color: var(--rrp-gray-800);
    line-height: 1.6;
    letter-spacing: 0.025em;
    margin: 0;
  }

  .rrp-description p {
    margin: 0 0 1rem 0;
  }

  .rrp-description p:last-child {
    margin-bottom: 0;
  }

  .rrp-divider {
    height: 1px;
    background: #000;
    border: none;
    margin: 0;
  }

  .rrp-call-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .rrp-call-label {
    font-family: var(--rrp-font-mono);
    font-size: 0.5rem;
    color: var(--rrp-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .rrp-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--rrp-btn-color, #000);
    color: var(--rrp-btn-text-color, #fff);
    padding: 1rem 1.5rem;
    border: 1px solid #000;
    border-radius: var(--rrp-border-radius);
    font-family: var(--rrp-font-mono);
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--rrp-transition);
    width: 100%;
    text-align: center;
  }

  .rrp-call-btn:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
  }

  .rrp-call-btn:active {
    transform: none;
    opacity: 0.7;
  }

  .rrp-call-btn:focus {
    outline: 1px solid #000;
    outline-offset: 2px;
  }

  .rrp-phone-icon {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
  }

  .rrp-phone-display {
    font-family: var(--rrp-font-mono);
    font-size: 0.75rem;
    color: #000;
    text-align: center;
    letter-spacing: 0.05em;
  }

  .rrp-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rrp-gray-200);
  }

  .rrp-meta-item {
    display: flex;
    justify-content: space-between;
    font-family: var(--rrp-font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }

  .rrp-meta-label {
    color: var(--rrp-gray-400);
    text-transform: uppercase;
  }

  .rrp-meta-value {
    color: #000;
  }

  @media (prefers-reduced-motion: reduce) {
    .rrp-thumbnail,
    .rrp-call-btn {
      transition: none;
    }
  }
/* Ring Rental Showcase - Sharp Technical Styling */
  :root {
    --rrsc-gap: 0.75rem;
    --rrsc-border-radius: 0;
    --rrsc-transition: all 0.15s linear;
    --rrsc-gray-100: #fafafa;
    --rrsc-gray-200: #f0f0f0;
    --rrsc-gray-400: #999;
    --rrsc-gray-800: #333;
    --rrsc-font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Courier New', monospace;
  }

  .section-ring-rental * {
    box-sizing: border-box;
  }

  .section-ring-rental {
    background: var(--rrsc-bg-color, #ffffff);
    padding: 2rem 0;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .rrsc-container {
    width: 100%;
    margin: 0;
    padding: 0 0.75rem;
  }

  .rrsc-header {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .rrsc-heading {
    font-family: var(--rrsc-font-mono);
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
  }

  .rrsc-subheading {
    font-family: var(--rrsc-font-mono);
    font-size: 0.625rem;
    color: var(--rrsc-gray-400);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.05em;
    max-width: 600px;
  }

  .rrsc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--rrsc-gap);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  @media screen and (min-width: 768px) {
    .rrsc-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .rrsc-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .rrsc-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #000;
    border-radius: var(--rrsc-border-radius);
    overflow: hidden;
    transition: var(--rrsc-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .rrsc-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--rrsc-gray-100);
    border: 1px solid #000;
  }

  .rrsc-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--rrsc-gray-100);
    flex-shrink: 0;
  }

  .rrsc-image-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
  }

  .rrsc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    display: block;
  }

  .rrsc-content {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .rrsc-vendor {
    font-family: var(--rrsc-font-mono);
    font-size: 0.5rem;
    color: var(--rrsc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.2;
  }

  .rrsc-title {
    font-family: var(--rrsc-font-mono);
    font-size: 0.625rem;
    font-weight: 400;
    margin: 0;
    color: #000;
    line-height: 1.3;
    flex: 1;
    letter-spacing: 0.025em;
  }

  .rrsc-title a {
    color: inherit;
    text-decoration: none;
    transition: none;
  }

  .rrsc-title a:hover {
    color: var(--rrsc-gray-800);
  }

  .rrsc-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: var(--rrsc-btn-color, #000);
    color: var(--rrsc-btn-text-color, #fff);
    padding: 0.625rem 0.875rem;
    border: 1px solid #000;
    border-radius: var(--rrsc-border-radius);
    font-family: var(--rrsc-font-mono);
    font-size: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--rrsc-transition);
    width: 100%;
    text-align: center;
  }

  .rrsc-call-btn:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
  }

  .rrsc-call-btn:active {
    transform: none;
    opacity: 0.7;
  }

  .rrsc-call-btn:focus {
    outline: 1px solid #000;
    outline-offset: 2px;
  }

  .rrsc-phone-icon {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
  }

  .rrsc-empty {
    text-align: center;
    padding: 4rem 1rem;
  }

  .rrsc-empty h2 {
    font-family: var(--rrsc-font-mono);
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .rrsc-empty p {
    font-family: var(--rrsc-font-mono);
    font-size: 0.625rem;
    color: #999;
    letter-spacing: 0.05em;
  }

  @media (prefers-reduced-motion: reduce) {
    .rrsc-card,
    .rrsc-call-btn {
      transition: none;
    }
  }
/* Trust Badges Section (TBS) - Clean Grid System */
/* Matches luxury product grid and modern header aesthetic exactly */

.trust-badges-section {
  width: 100%;
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  background: #000000;
  position: relative;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025rem;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  /* Blueprint grid variables */
  --tbs-grid-color: rgba(255, 255, 255, 0.08);
  --tbs-grid-size: 20px;
  --tbs-grid-accent-color: rgba(255, 255, 255, 0.15);
  --tbs-grid-accent-size: 100px;
}

.trust-badges-section__container {
  width: 100%;
  max-width: none;
  /* Blueprint grid pattern with fine and accent lines */
  background-image: 
    /* Fine grid lines */
    linear-gradient(var(--tbs-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--tbs-grid-color) 1px, transparent 1px),
    /* Accent grid lines - thicker every 5th line */
    linear-gradient(var(--tbs-grid-accent-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--tbs-grid-accent-color) 1px, transparent 1px);
  background-size: 
    var(--tbs-grid-size) var(--tbs-grid-size),
    var(--tbs-grid-size) var(--tbs-grid-size),
    var(--tbs-grid-accent-size) var(--tbs-grid-accent-size),
    var(--tbs-grid-accent-size) var(--tbs-grid-accent-size);
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: blueprint-drift 60s linear infinite;
}

.trust-badges-section__header {
  text-align: left;
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid #333333;
  background: #000000;
}

.trust-badges-section__title {
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.trust-badges-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #ffffff;
}

.trust-badges-section__subtitle {
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #cccccc;
  margin-top: 1rem;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  font-weight: 300;
}

.trust-badges-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  gap: 0;
}

@media screen and (max-width: 768px) {
  .trust-badges-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-badges-section__header {
    padding: 2rem 1rem 1.5rem;
    text-align: left;
  }
  
  .trust-badges-section__title {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .trust-badges-section__grid {
    grid-template-columns: 1fr;
  }
}

/* Trust Badge Cards - Dark theme version */
.tb-card {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-width: 0 1px 1px 0;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #ffffff;
  display: block;
  position: relative;
  list-style: none;
  grid-column: span 1;
  min-height: 240px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tb-card:hover {
  background: #2a2a2a;
}

/* Remove borders for edge items - 3 column layout */
.tb-card:nth-child(3n) {
  border-right: none;
}

.tb-card:nth-last-child(-n+3) {
  border-bottom: none;
}

/* Remove borders for edge items - 2 column layout (tablet) */
@media screen and (max-width: 768px) {
  .tb-card:nth-child(3n) {
    border-right: 1px solid #333333;
  }
  
  .tb-card:nth-child(2n) {
    border-right: none;
  }

  .tb-card:nth-last-child(-n+3) {
    border-bottom: 1px solid #333333;
  }
  
  .tb-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Remove borders for edge items - 1 column layout (mobile) */
@media screen and (max-width: 480px) {
  .tb-card {
    border-right: none;
    border-bottom: 1px solid #333333;
    min-height: 220px;
    padding: 1.25rem 1rem;
  }
  
  .tb-card:last-child {
    border-bottom: none;
  }
}

/* Badge Image */
.tb-card__image {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: all 0.2s ease;
}

.tb-card:hover .tb-card__image img {
  filter: contrast(1.05);
}

/* Placeholder for missing images */
.tb-card__placeholder {
  width: 120px;
  height: 120px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555555;
  color: #cccccc;
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* Badge Content */
.tb-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tb-card__title {
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.025rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.tb-card__description {
  font-family: 'SF Mono', Monaco, 'Roboto Mono', monospace;
  font-size: 0.625rem;
  font-weight: 300;
  color: #cccccc;
  margin: 0;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.025rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Badge Link Styling */
.tb-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.tb-card-link:hover {
  color: inherit;
}

/* Focus States for Accessibility */
.tb-card-link:focus {
  outline: 1px solid #ffffff;
  outline-offset: -1px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .tb-card,
  .tb-card__image img {
    transition: none;
  }
  
  .tb-card:hover .tb-card__image img {
    filter: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .tb-card {
    border-width: 2px;
  }
}

/* Blueprint grid animation - subtle drift effect */
@keyframes blueprint-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 
      var(--tbs-grid-size) var(--tbs-grid-size), 
      var(--tbs-grid-size) var(--tbs-grid-size),
      var(--tbs-grid-accent-size) var(--tbs-grid-accent-size),
      var(--tbs-grid-accent-size) var(--tbs-grid-accent-size);
  }
}

/* Pause animation on hover for better UX */
.trust-badges-section:hover .trust-badges-section__container {
  animation-play-state: paused;
}

/* Responsive grid adjustments */
@media (min-width: 768px) {
  .trust-badges-section {
    --tbs-grid-size: 30px;
    --tbs-grid-accent-size: 150px;
  }
}

@media (min-width: 1024px) {
  .trust-badges-section {
    --tbs-grid-size: 36px;
    --tbs-grid-accent-size: 180px;
  }
}

@media (min-width: 1200px) {
  .trust-badges-section {
    --tbs-grid-size: 40px;
    --tbs-grid-accent-size: 200px;
  }
}

/* Disable blueprint animation for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .trust-badges-section__container {
    animation: none !important;
  }
}

/* Print Styles */
@media print {
  .trust-badges-section__grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  /* Remove background pattern for print */
  .trust-badges-section__container {
    background-image: none !important;
    animation: none !important;
  }
}

/* CSS from snippet stylesheet tags */
/* Star Rating */
  .star-rating {
    --star-size: 20px;
    --star-color: #fbbf24;
    --star-background: #e5e7eb;
  }

  .star-rating::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--star-color) calc(var(--star-rating) * 20%), var(--star-background) calc(var(--star-rating) * 20%));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  /* Product Price Styles */
  .product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
  }

  .product-price .price ins {
    text-decoration: none;
  }

  .product-price .price del {
    color: #9ca3af;
    font-weight: 400;
    margin-right: 0.5rem;
  }

  .product-price .badges {
    margin-left: 0.5rem;
  }

  /* Fit Guide Active Segment */
  .product-fit-guide--line--active {
    background-color: var(--active-color, #374151);
  }

  /* Responsive Typography */
  @media (min-width: 640px) {
    .product-header h1 {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
  }

  /* Focus Styles */
  .product-info-wrapper input:focus,
  .product-info-wrapper textarea:focus,
  .product-info-wrapper select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  }

  /* Hover Effects */
  .product-info-wrapper a:hover {
    transition: color 0.2s ease-in-out;
  }

  /* Collapsible Details */
  .product-info-wrapper details[open] summary {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }

  /* Custom Checkbox Styles */
  .custom-option input[type="checkbox"]:checked {
    background-color: #6366f1;
    border-color: #6366f1;
  }

  .custom-option input[type="radio"]:checked {
    background-color: #6366f1;
    border-color: #6366f1;
  }
/* Thumbnail Base Styles */
  .product-thumbnail {
    min-width: 80px;
    flex-shrink: 0;
  }

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

  /* Active State */
  .product-thumbnail.is-active {
    opacity: 1;
    border-color: #111827;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  }

  /* Hover Effects */
  .product-thumbnail:hover:not(.is-active) {
    border-color: #d1d5db;
    transform: scale(1.05);
  }

  .product-thumbnail:hover .absolute.inset-0 {
    background-color: rgba(0, 0, 0, 0.05);
  }

  /* Media Type Icons */
  .product-thumbnail .absolute.flex {
    transition: opacity 0.2s ease-in-out;
  }

  .product-thumbnail:hover .absolute.flex {
    opacity: 0.9;
  }

  /* Focus States */
  .product-thumbnail:focus {
    outline: none;
    box-shadow: 0 0 0 2px #374151, 0 0 0 4px rgba(55, 65, 81, 0.1);
  }

  /* Responsive Adjustments */
  @media (max-width: 640px) {
    .product-thumbnail {
      width: 60px;
      min-width: 60px;
    }
    
    .product-thumbnail .bg-white.rounded-full {
      padding: 0.375rem;
    }
    
    .product-thumbnail svg {
      width: 0.875rem;
      height: 0.875rem;
    }
  }

  /* Animation for selection */
  .product-thumbnail {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-thumbnail.is-active {
    transform: scale(1.1);
  }

  /* Hidden state for variant filtering */
  .product-thumbnail.hidden {
    display: none !important;
  }

  .product-thumbnail:not(.hidden) {
    display: block;
  }

  /* Smooth transitions for show/hide */
  .product-thumbnail {
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
  }