.collection-hero {
    padding: 40px 0 20px;
  }
  
  .collection-hero__title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 15px 0;
    text-transform: uppercase;
  }
  
  .collection-hero__description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
  }
  
  .collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 20px;
    border-bottom: 1px solid #e8e8e8;
  }
  
  
  .product-count {
    font-size: 14px;
    color: #666;
  }
  
  .filter-sort-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .filter-sort-button {
    background: none;
    border: 1px solid #333;
    padding: 8px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-sort-button:hover {
    background: #333;
    color: #fff;
  }
  
  .product-grid-container {
    padding: 30px 0 60px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }
  
  @media (max-width: 1200px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .collection-hero__title {
      font-size: 22px;
    }
    
    .filter-sort-wrapper {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Base Stud Tabs + Addon grid */
  .base-stud-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
  }
  .base-stud-tabs button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .base-stud-tabs button.active {
    background: #000;
    color: #fff;
    border-color: #000;
  }
  .base-stud-section {
    margin-bottom: 60px;
  }
  .base-stud-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .base-stud-section__title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
  }
  .addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
  }
  @media (max-width: 1200px) {
    .addon-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .addon-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 480px) {
    .addon-grid { grid-template-columns: 1fr; }
  }
  
  .product-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .product-card__image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  
  .product-card__image.active {
    opacity: 1;
  }
  
  .product-card:hover .product-card__image {
    transform: scale(1.05);
  }
  
  .product-card__image-dots {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 10;
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    opacity: 0.8;
    transform: translateY(2px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .product-card:hover .product-card__image-dots {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(77, 77, 77, 0.3);
  }
  
  .dot.active {
    background-color: rgba(255,166,118,0.4);
    transform: scale(1.3);
    border-color: rgba(77, 77, 77, 0.3);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  }
  
  .dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
  }
  
  .product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  
  .product-card__title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }
  
  .product-card__price {
    font-size: 14px;
    color: #666;
  }
  
  .product-card__colors {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #E8E7E7;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
    margin-right:2px;
  }
  
  .color-swatch:hover {
    transform: scale(1.1);
    border-color: #E8E7E7;
  }
  
  .color-swatch.active {
    transform: scale(1.15);

    box-shadow: 0 0 0 1px #bb7e5d;
  }
  
  .color-swatch[data-color="silver"] {
    background: #acb6b1;
  }
  
  .color-swatch[data-color="rose"] {
    background: #f9821f;
  }
  
  .color-swatch[data-color="white"] {
    background: #f5f5f5;
  }
  
  .color-swatch[data-color="yellow"] {
    background: #e4b972;
  }
  
  .section-heading {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .section-link {
    font-size: 12px;
    color: #c89656;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .section-link:after {
    content: '→';
  }
  
  .pagination-wrapper {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
  }
  
  .load-more-button {
    background: none;
    border: none;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0 0 0;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    position: relative;
    width: 100%;
    max-width: 300px;
    font-weight: 400;
  }
  
  .load-more-button:hover {
    color: #000;
  }
  
  .load-more-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .load-more-button.loading:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #333;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .bottom-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
    margin-top: 60px;
  }
  
  .bottom-cta h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 20px 0;
  }
  
  .bottom-cta p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Filter Drawer Styles - Matching Shopify Design */
  .filter-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  .filter-drawer.active {
    right: 0;
  }
  
  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1E1113aa;
    z-index: 9998;
    display: none;
  }
  
  .filter-overlay.active {
    display: block;
  }
  
  .filter-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  
  .filter-header h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }
  
  .filter-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
  }
  
  .filter-close:hover {
    color: #000;
  }
  
  .filter-content {
    padding: 0;
    flex: 1;
    overflow-y: auto;
  }
  
  .filter-group {
    border-bottom: 1px solid #e8e8e8;
  }
  
  .filter-group-header {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: #fff;
    transition: background 0.2s;
  }
  
  .filter-group-header:hover {
    background: #f9f9f9;
  }
  
  .filter-group-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
  }
  
  .filter-group-toggle {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s;
  }
  
  .filter-group.active .filter-group-toggle {
    transform: rotate(180deg);
  }
  
  .filter-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .filter-group.active .filter-group-content {
    max-height: 500px;
  }
  
  .filter-group-inner {
    padding: 0 24px 16px 24px;
  }
  
  .filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
  }
  
  .filter-option:last-child {
    margin-bottom: 0;
  }
  
  .filter-option input[type="checkbox"],
  .filter-option input[type="radio"] {
    margin: 0 12px 0 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .filter-option label {
    font-size: 14px;
    cursor: pointer;
    color: #333;
    flex: 1;
  }
  
  .filter-option:hover label {
    color: #000;
  }
  
  .filter-actions {
    padding: 16px 24px;
    border-top: 1px solid #e8e8e8;
    background: #fff;
    flex-shrink: 0;
  }
  
  .filter-apply {
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .filter-apply:hover {
    background: #333;
  }
  
  .filter-apply:after {
    content: '→';
    font-size: 16px;
  }
  
  .results-count {
    font-size: 13px;
    color: #666;
    margin-right: 8px;
  }
  
  @media (max-width: 768px) {
    .filter-drawer {
      width: 100%;
      right: -100%;
    }
  }

  /* Fluid width with side padding only */
  .page-width {
    width: 100%;
    padding: 0 40px;
  }

  @media (max-width: 768px) {
    .page-width {
      padding: 0 20px;
    }
  }

  @media (max-width: 480px) {
    .page-width {
      padding: 0 15px;
    }
  }
