/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 417:0 Unexpected "<"

**/
<style>
  /* ============================================
     HairMax Before & After Gallery
     Brand Colours: Blue #4298B5, Soft Black #101820, Orange #FF9E1B
     Fonts: Montserrat (digital)
  ============================================ */
  
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
  
  .hm-bna-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    font-family: 'Montserrat', sans-serif;
  }
  
  .hm-bna-section * {
    box-sizing: border-box;
  }
  
  .hm-bna-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header Section */
  .hm-bna-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hm-bna-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BBDDE6;
    color: #101820;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  
  .hm-bna-badge svg {
    width: 16px;
    height: 16px;
  }
  
  .hm-bna-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #101820;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }
  
  .hm-bna-title span {
    color: #4298B5;
  }
  
  .hm-bna-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.5;
  }
  
  /* Stats Bar */
  .hm-bna-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  
  .hm-bna-stat {
    text-align: center;
  }
  
  .hm-bna-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #4298B5;
    display: block;
  }
  
  .hm-bna-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Filter Tabs */
  .hm-bna-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
  }
  
  .hm-bna-filter-btn {
    padding: 10px 24px;
    border: 2px solid #E0E0E0;
    background: white;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .hm-bna-filter-btn:hover {
    border-color: #4298B5;
    color: #4298B5;
  }
  
  .hm-bna-filter-btn.active {
    background: #4298B5;
    border-color: #4298B5;
    color: white;
  }
  
  /* Gallery Grid */
  .hm-bna-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
  }
  
  /* Individual Card */
  .hm-bna-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .hm-bna-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(66, 152, 181, 0.15);
  }
  
  .hm-bna-card.hidden {
    display: none;
  }
  
  /* Slider Container */
  .hm-bna-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
  }
  
  .hm-bna-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hm-bna-img-after {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.05s ease-out;
  }
  
  /* Slider Line */
  .hm-bna-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.05s ease-out;
  }
  
  /* Slider Handle */
  .hm-bna-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: left 0.05s ease-out, transform 0.2s ease;
  }
  
  .hm-bna-slider-wrap:hover .hm-bna-slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .hm-bna-slider-handle svg {
    width: 20px;
    height: 20px;
    color: #4298B5;
  }
  
  /* Labels */
  .hm-bna-labels {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .hm-bna-label {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .hm-bna-label-before {
    background: rgba(255, 255, 255, 0.95);
    color: #666;
  }
  
  .hm-bna-label-after {
    background: #4298B5;
    color: white;
  }
  
  /* Card Info */
  .hm-bna-card-info {
    padding: 16px;
  }
  
  .hm-bna-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .hm-bna-gender-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
  }
  
  .hm-bna-gender-tag.female {
    background: #FAF1E8;
    color: #B8860B;
  }
  
  .hm-bna-gender-tag.male {
    background: #E8F4FA;
    color: #4298B5;
  }
  
  .hm-bna-duration {
    font-size: 12px;
    color: #999;
  }
  
  .hm-bna-card-product {
    font-size: 13px;
    color: #101820;
    font-weight: 500;
  }
  
  /* Disclaimer */
  .hm-bna-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 32px;
    font-style: italic;
  }
  
  /* CTA Section */
  .hm-bna-cta {
    text-align: center;
  }
  
  .hm-bna-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #4298B5;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .hm-bna-cta-btn:hover {
    background: #3A8AA6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 152, 181, 0.3);
  }
  
  .hm-bna-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  
  .hm-bna-cta-btn:hover svg {
    transform: translateX(4px);
  }
  
  .hm-bna-cta-secondary {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #666;
  }
  
  .hm-bna-cta-secondary a {
    color: #4298B5;
    text-decoration: none;
    font-weight: 500;
  }
  
  .hm-bna-cta-secondary a:hover {
    text-decoration: underline;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .hm-bna-section {
      padding: 40px 16px;
    }
    
    .hm-bna-stats {
      gap: 24px;
    }
    
    .hm-bna-stat-number {
      font-size: 24px;
    }
    
    .hm-bna-filters {
      flex-wrap: wrap;
    }
    
    .hm-bna-filter-btn {
      padding: 8px 18px;
      font-size: 13px;
    }
    
    .hm-bna-gallery {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .hm-bna-slider-handle {
      width: 40px;
      height: 40px;
    }
  }
  
  /* Instruction Tooltip */
  .hm-bna-instruction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
    white-space: nowrap;
  }
  
  .hm-bna-instruction.hidden {
    opacity: 0;
  }
</style>
