/** Shopify CDN: Minification failed

Line 713:12 Unexpected "{"
Line 713:21 Expected ":"
Line 714:16 Expected identifier but found whitespace
Line 714:18 Unexpected "{"
Line 714:27 Expected ":"
Line 714:78 Expected ":"
Line 715:19 Expected identifier but found whitespace
Line 715:21 Unexpected "{"
Line 715:30 Expected ":"
Line 715:84 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.breadcrumb-nav {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
  }

  .breadcrumb li {
    display: flex;
    align-items: center;
  }

  .breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
  }

  .breadcrumb span {
    color: white;
    font-weight: 600;
  }


  .brand-models-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .brand-logo-container {
    margin-bottom: 2rem;
  }

  .brand-logo {
    max-width: 200px;
    max-height: 80px;
    margin: 0 auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .models-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    align-content: start;
  }

  .model-card {
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
  }

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

  .model-image-container {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
  }

  .model-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .model-info {
    flex: 1;
  }

  .category-name {
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .category-description {
    margin: 0;
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .brand-models-page {
      padding: 6rem 2rem;
    }

    .models-grid {
      gap: 2rem;
      max-width: 1000px;
    }

    .model-card {
      padding: 2.5rem 1.5rem;
    }

    .model-image-container {
      max-width: 120px;
    }

  }

  @media (min-width: 1024px) {
    .models-grid {
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
    }
  }
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero-section {
    position: relative;
    height: var(--mobile-hero-height, 480px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Force full width with aggressive margins */
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    left: 50% !important;
    position: relative !important;
  }

  @media (min-width: 768px) {
    .hero-section {
      height: 60vh;
      max-height: 600px;
    }
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Force minimum dimensions to ensure full coverage */
    min-width: 100%;
    min-height: 100%;
  }

  /* Mobile: crop video to fit height, allow horizontal cropping */
  @media (max-width: 767px) {
    .hero-video {
      width: auto;
      height: 100%;
      object-fit: cover;
    }
  }

  /* Desktop: maintain existing behavior */
  @media (min-width: 768px) {
    /* Ensure minimum dimensions for video to cover container */
    @supports (aspect-ratio: 16/9) {
      .hero-video {
        width: 100%;
        height: 100%;
      }
    }
  }

  @media (min-width: 768px) and (max-aspect-ratio: 16/9) {
    .hero-video {
      width: 100%;
      height: auto;
    }
  }

  @media (min-width: 768px) and (min-aspect-ratio: 16/9) {
    .hero-video {
      width: auto;
      height: 100%;
    }
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 1rem;
  }

  .hero-title {
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
    font-weight: 300;
    margin: 0.5rem 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .brands-section {
    padding: 1rem 1rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  .brands-heading {
    font-weight: 800;
    text-align: center;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
  }

  .brand-card {
    aspect-ratio: 1;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .brand-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .brand-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  @media (min-width: 768px) {
    .brands-section {
      padding: 2rem 2rem 0;
    }

    .brands-grid {
      gap: 16px;
      max-width: 800px;
      padding: 24px;
    }

    .brand-image-container {
      padding: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .brands-grid {
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
    }
  }
.hero-section {
    position: relative;
    height: var(--mobile-hero-height, 480px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Force full width with aggressive margins */
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    left: 50% !important;
    position: relative !important;
  }

  @media (min-width: 768px) {
    .hero-section {
      height: 60vh;
      max-height: 600px;
    }
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Force minimum dimensions to ensure full coverage */
    min-width: 100%;
    min-height: 100%;
  }

  /* Mobile: crop video to fit height, allow horizontal cropping */
  @media (max-width: 767px) {
    .hero-video {
      width: auto;
      height: 100%;
      object-fit: cover;
    }
  }

  /* Desktop: maintain existing behavior */
  @media (min-width: 768px) {
    /* Ensure minimum dimensions for video to cover container */
    @supports (aspect-ratio: 16/9) {
      .hero-video {
        width: 100%;
        height: 100%;
      }
    }
  }

  @media (min-width: 768px) and (max-aspect-ratio: 16/9) {
    .hero-video {
      width: 100%;
      height: auto;
    }
  }

  @media (min-width: 768px) and (min-aspect-ratio: 16/9) {
    .hero-video {
      width: auto;
      height: 100%;
    }
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 1rem;
  }

  .hero-title {
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
    font-weight: 300;
    margin: 0.5rem 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .brands-section {
    padding: 1rem 1rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  .brands-heading {
    font-weight: 800;
    text-align: center;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
  }

  .brand-card {
    aspect-ratio: 1;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .brand-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .brand-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  @media (min-width: 768px) {
    .brands-section {
      padding: 2rem 2rem 0;
    }

    .brands-grid {
      gap: 16px;
      max-width: 800px;
      padding: 24px;
    }

    .brand-image-container {
      padding: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .brands-grid {
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
    }
  }
.metaobject-content {
    padding: 2rem 0;
  }
  
  .metaobject-content__wrapper {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  .metaobject-content__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .metaobject-content__heading {
    margin-bottom: 1rem;
    color: var(--color-handlworks-orange, #ff6b35);
  }
  
  .metaobject-content__description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .metaobject-content__cta {
    margin-top: 1.5rem;
  }
  
  @media screen and (min-width: 750px) {
    .metaobject-content__wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
    
    .metaobject-content {
      padding: 4rem 0;
    }
  }
  
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }
.upgrade-path-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Breadcrumb Navigation */
  .breadcrumb-nav {
    margin-bottom: 2rem;
  }

  .breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
  }

  .breadcrumb li:not(:last-child)::after {
    content: ' > ';
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }

  .breadcrumb a:hover {
    color: white;
    text-decoration: underline;
  }

  .breadcrumb span {
    color: white;
    font-weight: 600;
  }

  /* Upgrade Card */
  .upgrade-card {
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .card-header {
    font-weight: 900;
    margin: 0 0 1rem;
    text-transform: uppercase;
  }

  .card-subheader {
    font-weight: 600;
    margin: 0 0 1.5rem;
  }

  .card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .card-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
  }

  /* Header Section */
  .upgrade-hero {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
  }

  .upgrade-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .upgrade-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-handlworks-orange, #ff6b35);
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .upgrade-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }

  .upgrade-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
  }

  /* Table Styles */
  .upgrade-table-container {
    padding: 2rem;
    border-radius: 12px;
    overflow-x: auto;
  }

  .upgrade-table-wrapper {
    min-width: 100%;
    overflow-x: auto;
  }

  .upgrade-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: none;
  }

  .upgrade-table th {
    background: #333;
    color: white;
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
  }

  .upgrade-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #333;
  }

  .upgrade-row:hover {
    background-color: #f8f9fa;
  }

  .upgrade-row:last-child td {
    border-bottom: none;
  }

  /* Action Buttons */
  .upgrade-actions {
    text-align: center;
  }

  .action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
  }

  /* Legacy button styles removed - now using handlworks-buttons.css */

  /* Loading and utility styles now handled by handlworks-buttons.css */.hidden {
    display: none !important;
  }

  /* Flash link styles now handled by handlworks-buttons.css */

  /* No upgrades message */.no-upgrades-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    color: #666;
  }

  /* Mobile Responsive - 3 Column Layout */
  @media screen and (max-width: 768px) {
    .upgrade-table-container {
      padding: 1rem;
    }

    /* Hide desktop-only elements */
    .desktop-only {
      display: none !important;
    }

    /* Hide table header on mobile */
    .upgrade-table thead {
      display: none;
    }

    /* Style table body and rows for mobile */
    .upgrade-table tbody {
      display: block;
    }

    .upgrade-table tr {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 0.75rem;
      align-items: stretch;
      background: white;
      border: none;
      border-radius: 8px;
      padding: 1rem;
    }

    .upgrade-table td {
      border: none;
      padding: 0;
      display: block;
    }

    /* Mobile Column 1: Components */
    .mobile-components {
      grid-column: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-component-list {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      line-height: 1.3;
      text-align: center;
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .component-name {
      font-size: 0.85rem;
      font-weight: bold;
      color: #333;
    }

    .component-plus {
      font-size: 0.75rem;
      color: #666;
      text-align: center;
      margin: 0.1rem 0;
    }

    /* Mobile Column 2: Tag Line */
    .mobile-tagline {
      grid-column: 2;
      font-size: 0.85rem;
      font-weight: bold;
      color: #555;
      text-align: center;
      padding: 0 1rem;
      line-height: 1.4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100%;
      gap: 0.5rem;
    }

    .mobile-flash-link {
      margin-top: 0.5rem;
    }

    /* Mobile flash styles now handled by handlworks-buttons.css */
    .mobile-flash {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-handlworks-orange, #ff6b35);
      display: block;
    }

    /* Mobile Column 3: Actions */
    .upgrade-actions {
      grid-column: 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .action-buttons {
      flex-direction: column;
      gap: 0.4rem;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .handlworks-btn--small {
      padding: 0.35rem 0.6rem;
      font-size: 0.7rem;
      white-space: nowrap;
      min-width: 70px;
    }

    /* Header text adjustments */
    .upgrade-title {
      font-size: 2rem;
    }

    .upgrade-subtitle {
      font-size: 1.4rem;
    }
  }

  @media screen and (min-width: 769px) {
    /* Hide mobile-only elements on desktop */
    .mobile-components,
    .mobile-tagline {
      display: none !important;
    }

    .upgrade-hero {
      grid-template-columns: 1fr 1fr;
    }

    .upgrade-hero__content {
      order: -1;
    }
  }

  /* Desktop specific styles */
  @media screen and (min-width: 1024px) {
    .upgrade-table th,
    .upgrade-table td {
      padding: 1.25rem 1rem;
    }

    .upgrade-title {
      font-size: 3rem;
    }
  }
.breadcrumb-nav {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
  }

  .breadcrumb li {
    display: flex;
    align-items: center;
  }

  .breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #666;
  }

  .breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumb a:hover {
    color: var(--color-handlworks-orange);
    text-decoration: underline;
  }

  .breadcrumb span {
    color: #333;
    font-weight: 600;
  }

  .spare-parts-section {
    padding: 3rem 1rem;
    background: #f8f8f8;
  }

  .spare-parts-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .spare-parts-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .spare-parts-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
  }

  .product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    align-items: center;
  }

  .product-image-container {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
  }

  .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

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

  .product-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
  }

  .product-series {
    font-size: 1rem;
    color: var(--color-handlworks-orange);
    font-weight: 600;
  }

  .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0 0.5rem 0;
  }

  .product-stock {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
  }

  .product-description {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .description-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
  }

  .related-parts {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .related-parts-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
  }

  .parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .part-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
  }

  .part-image-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .part-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .part-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
  }

  .part-price {
    font-size: 0.9rem;
    color: var(--color-handlworks-orange);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .btn-part {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.2s ease;
  }

  .btn-part:hover {
    background: #555;
  }

  .btn-add-to-cart {
    background: var(--color-handlworks-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    width: 100%;
  }

  .btn-add-to-cart:hover {
    background: #e55a2b;
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .spare-parts-section {
      padding: 2rem 1rem;
    }
    
    .product-showcase {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .product-info {
      text-align: center;
    }
    
    .parts-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.video-background-section {
    position: relative;
    width: 100%;
    height: var(--section-height, 100vh);
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }

  .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
  }

  .video-background.fallback-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  .video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
  }

  .video-heading {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .video-subheading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .video-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-handlworks-orange, #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .video-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
  }

  /* Mobile responsive */
  @media screen and (max-width: 768px) {
    .video-background-section {
      height: calc(var(--section-height, 100vh) * 0.7);
      min-height: 300px;
    }

    .video-heading {
      font-size: 2rem;
    }

    .video-subheading {
      font-size: 1rem;
    }

    .video-content {
      padding: 1rem;
    }
  }

  /* Performance optimization for mobile */
  @media screen and (max-width: 768px) {
    .video-background {
      display: none;
    }

    .video-background.fallback-image {
      display: block;
    }
  }

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

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

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

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

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