/** Shopify CDN: Minification failed

Line 1390:0 Unexpected "{"
Line 1390:1 Expected identifier but found "%"
Line 1391:0 Unexpected "{"
Line 1391:1 Expected identifier but found "%"
Line 1392:0 Unexpected "{"
Line 1392:1 Expected identifier but found "%"
Line 1394:12 Expected identifier but found whitespace
Line 1394:13 Unexpected "scale("
Line 1394:121 Expected identifier but found "%"
Line 1394:163 Unexpected "scale("
... and 7 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Customer Reviews Section Styles */
  .customer-reviews-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

  .reviews-header {
    margin-bottom: 50px;
  }

  .reviews-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }

  .reviews-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .reviews-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }

  .review-item {
    flex: 0 0 300px;
    height: 350px;
  }

  .review-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

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

  .review-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .review-image-container:hover .review-overlay {
    transform: translateY(0);
  }

  .customer-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
  }

  .star-rating {
    display: flex;
    gap: 2px;
  }

  .star {
    color: #ddd;
    font-size: 16px;
  }

  .star.filled {
    color: #ffd700;
  }

  .carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    background: white;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-btn:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
  }

  .carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  /* Static Grid Layout (when carousel is disabled) */
  .reviews-simple-grid {
    margin-top: 20px;
  }

  .review-item-static {
    height: 350px;
    margin-bottom: 30px;
  }

  .review-item-static .review-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-item-static .review-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  /* Block Wrapper */
  .block-wrapper {
    margin-bottom: 0;
  }

  /* Generic Block Styles */
  .generic-block-container {
    padding: 40px 0;
    background-color: #fff;
  }

  .generic-block-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .generic-block-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }

  .generic-block-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
  }

  .generic-block-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #777;
  }

  .generic-block-image {
    margin: 30px 0;
  }

  .generic-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .generic-block-button {
    margin-top: 20px;
  }

  .generic-block-button .btn {
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .generic-block-button .btn:hover {
    background: #555;
    color: white;
    text-decoration: none;
  }

  /* DBW Reviews Metaobject Slider Styles - UPDATED VERSION */
  .dbw-reviews-metaobject-section {
    --dbw-nav-btn-color: #333333;
    --dbw-nav-btn-bg: #ffffff;
    --dbw-nav-btn-hover-color: #ffffff;
    --dbw-nav-btn-hover-bg: #333333;
  }

  .dbw-reviews-header {
    margin-bottom: 50px;
  }

  .dbw-reviews-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .dbw-reviews-description {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
  }

  .dbw-reviews-wrapper {
    position: relative;
    overflow: hidden;
  }

  .dbw-reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }

  .dbw-review-item {
    flex: 0 0 300px;
    height: 350px;
  }

  .dbw-review-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .dbw-review-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .dbw-review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dbw-clickable-image {
    cursor: pointer;
  }

  .dbw-clickable-image:hover {
    opacity: 0.9;
  }

  .dbw-review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .dbw-review-image-container:hover .dbw-review-overlay {
    transform: translateY(0);
  }

  .dbw-click-hint {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
  }

  .dbw-carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .dbw-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dbw-nav-btn-color);
    background: var(--dbw-nav-btn-bg);
    color: var(--dbw-nav-btn-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dbw-carousel-btn:hover {
    background: var(--dbw-nav-btn-hover-bg);
    color: var(--dbw-nav-btn-hover-color);
    border-color: var(--dbw-nav-btn-hover-bg);
    transform: scale(1.1);
  }

  .dbw-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .dbw-dots-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .dbw-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dbw-dot.active {
    background: var(--dbw-nav-btn-color);
    transform: scale(1.2);
  }

  .dbw-dot:hover {
    background: var(--dbw-nav-btn-hover-bg);
  }

  .dbw-review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .dbw-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
  }

  .dbw-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .dbw-lightbox-close:hover {
    background: rgba(0,0,0,0.9);
  }

  .dbw-lightbox-image-container {
    position: relative;
    text-align: center;
  }

  .dbw-lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
  }

  .dbw-lightbox-info {
    background: #fff;
    color: #333;
    padding: 20px 30px;
  }

  .dbw-lightbox-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
  }

  .dbw-lightbox-product-section {
    padding: 30px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
  }

  .dbw-lightbox-product-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
    color: #333;
  }

  .dbw-lightbox-product-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
  }

  .dbw-lightbox-product-image {
    flex: 0 0 100px;
  }

  .dbw-lightbox-product-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
  }

  .dbw-lightbox-product-details {
    flex: 1;
  }

  .dbw-lightbox-product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
    color: #333;
    line-height: 1.3;
  }

  .dbw-price-compare {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 14px;
  }

  .dbw-price-current {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
  }

  .dbw-lightbox-product-actions {
    margin-top: 15px;
  }

  .dbw-lightbox-product-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
  }

  .dbw-lightbox-product-btn:hover {
    background: #555;
    color: white;
    text-decoration: none;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .review-item, .dbw-review-item {
      flex: 0 0 280px;
    }
  }

  @media (max-width: 991px) {
    .dbw-lightbox-content {
      flex-direction: column;
      max-width: 80vw;
      max-height: 80vh;
    }
    .dbw-lightbox-image-container {
       flex-grow: 1;
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 20px;
    }
  }

  @media (max-width: 768px) {
    .customer-reviews-section, .dbw-reviews-metaobject-section {
      padding: 40px 0 !important;
    }

    .reviews-title, .dbw-reviews-title {
      font-size: 24px;
    }

    .review-item, .dbw-review-item {
      flex: 0 0 250px;
      height: 300px;
    }

    .reviews-carousel, .dbw-reviews-slider {
      gap: 15px;
    }

    .carousel-btn, .dbw-carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }

    .dbw-lightbox-product-card {
      flex-direction: column;
      text-align: center;
    }

    .dbw-lightbox-product-image {
      margin-bottom: 15px;
    }

    .dbw-lightbox-content {
      max-width: 90vw;
      max-height: 90vh;
    }

    .generic-block-container {
      padding: 30px 0;
    }

    .generic-block-title {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .review-item, .dbw-review-item {
      flex: 0 0 220px;
      height: 280px;
    }

    .reviews-carousel, .dbw-reviews-slider {
      gap: 10px;
    }

    .customer-name, .dbw-review-number {
      font-size: 16px;
    }

    .review-text, .dbw-click-hint {
      font-size: 12px;
    }

    .dbw-lightbox-close {
      top: 10px;
      right: 10px;
      width: 35px;
      height: 35px;
      font-size: 20px;
    }

    .dbw-lightbox-product-card {
      padding: 15px;
    }

    .dbw-lightbox-product-name {
      font-size: 14px;
    }

    .generic-block-container {
      padding: 20px 0;
    }

    .generic-block-title {
      font-size: 18px;
    }
  }
.dbw-reviews-metaobject-section {
    --dbw-nav-btn-color: #333333;
    --dbw-nav-btn-bg: #ffffff;
    --dbw-nav-btn-hover-color: #ffffff;
    --dbw-nav-btn-hover-bg: #333333;
  }

  .dbw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  @media (max-width: 768px) {
    .dbw-container {
      padding: 0 15px;
    }
  }

  @media (max-width: 480px) {
    .dbw-container {
      padding: 0 10px;
    }
  }

  .dbw-no-data-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
  }

  .dbw-reviews-header {
    margin-bottom: 40px;
    text-align: center;
  }

  .dbw-reviews-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .dbw-reviews-description {
    font-size: clamp(14px, 2.5vw, 16px);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .dbw-reviews-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
  }

  .dbw-reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: clamp(10px, 2vw, 20px);
    padding: 0 10px;
  }

  .dbw-review-item {
    flex: 0 0 auto;
    width: clamp(200px, 25vw, 300px);
    height: clamp(250px, 30vw, 350px);
    max-width: 300px;
    max-height: 350px;
  }

  .dbw-review-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: clamp(8px, 1.5vw, 12px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .dbw-review-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

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

  .dbw-clickable-image {
    cursor: pointer;
  }

  .dbw-clickable-image:hover {
    opacity: 0.9;
  }

  .dbw-review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: clamp(15px, 3vw, 30px) clamp(10px, 2vw, 20px) clamp(10px, 2vw, 20px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 5;
  }

  .dbw-review-content {
    width: 100%;
    cursor: pointer;
  }

  .dbw-review-image-container:hover .dbw-review-overlay {
    transform: translateY(0);
  }

  .dbw-click-hint {
    font-size: clamp(12px, 2vw, 14px);
    opacity: 0.9;
    margin: 0;
    cursor: pointer;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-navigation {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(15px, 3vw, 20px) !important;
    margin-top: clamp(20px, 4vw, 30px) !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-btn {
    width: clamp(40px, 8vw, 50px) !important;
    height: clamp(40px, 8vw, 50px) !important;
    border-radius: 50% !important;
    border: 2px solid var(--dbw-nav-btn-color, #333333) !important;
    background: var(--dbw-nav-btn-bg, #ffffff) !important;
    color: var(--dbw-nav-btn-color, #333333) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 101 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    font-size: 0 !important;
    min-width: clamp(40px, 8vw, 50px) !important;
    min-height: clamp(40px, 8vw, 50px) !important;
    flex-shrink: 0 !important;
  }

  .dbw-reviews-metaobject-section .dbw-arrow-icon,
  .dbw-reviews-metaobject-section .dbw-prev-arrow,
  .dbw-reviews-metaobject-section .dbw-next-arrow,
  .dbw-reviews-metaobject-section svg.dbw-arrow-icon,
  .dbw-reviews-metaobject-section svg.dbw-prev-arrow,
  .dbw-reviews-metaobject-section svg.dbw-next-arrow {
    width: clamp(16px, 3vw, 20px) !important;
    height: clamp(16px, 3vw, 20px) !important;
    transition: transform 0.2s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .dbw-reviews-metaobject-section .dbw-arrow-icon path,
  .dbw-reviews-metaobject-section .dbw-prev-arrow path,
  .dbw-reviews-metaobject-section .dbw-next-arrow path,
  .dbw-reviews-metaobject-section svg.dbw-arrow-icon path,
  .dbw-reviews-metaobject-section svg.dbw-prev-arrow path,
  .dbw-reviews-metaobject-section svg.dbw-next-arrow path {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-btn:hover {
    background: var(--dbw-nav-btn-hover-bg) !important;
    color: var(--dbw-nav-btn-hover-color) !important;
    border-color: var(--dbw-nav-btn-hover-bg) !important;
    transform: scale(1.1) !important;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-btn:hover .dbw-arrow-icon,
  .dbw-reviews-metaobject-section .dbw-carousel-btn:hover .dbw-prev-arrow,
  .dbw-reviews-metaobject-section .dbw-carousel-btn:hover .dbw-next-arrow {
    transform: scale(1.1) !important;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
  }

  .dbw-reviews-metaobject-section .dbw-carousel-btn:disabled .dbw-arrow-icon,
  .dbw-reviews-metaobject-section .dbw-carousel-btn:disabled .dbw-prev-arrow,
  .dbw-reviews-metaobject-section .dbw-carousel-btn:disabled .dbw-next-arrow {
    transform: none !important;
  }

  .dbw-dots-navigation {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 10px);
    margin-top: clamp(15px, 3vw, 20px);
  }

  .dbw-dot {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dbw-dot.active {
    background: var(--dbw-nav-btn-color);
    transform: scale(1.2);
  }

  .dbw-dot:hover {
    background: var(--dbw-nav-btn-hover-bg);
  }

  .dbw-review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 3vw, 20px);
    box-sizing: border-box;
  }

  .dbw-lightbox-content {
    position: relative;
    max-width: min(90vw, 800px);
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: clamp(8px, 2vw, 12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
  }

  .dbw-lightbox-close {
    position: absolute;
    top: clamp(10px, 2vw, 15px);
    right: clamp(10px, 2vw, 15px);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    border-radius: 50%;
    font-size: clamp(18px, 4vw, 24px);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    line-height: 1;
  }

  .dbw-lightbox-close:hover {
    background: rgba(0,0,0,0.9);
  }

  .dbw-lightbox-image-container {
    position: relative;
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
  }

  .dbw-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: clamp(6px, 1.5vw, 8px);
  }

  .dbw-lightbox-product-section {
    padding: clamp(20px, 4vw, 30px);
    border-top: 1px solid #eee;
    background: #f9f9f9;
  }

  .dbw-lightbox-product-title {
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: bold;
    margin-bottom: clamp(15px, 3vw, 20px);
    margin-top: 0;
    color: #333;
  }

  .dbw-lightbox-product-card {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    background: white;
    border-radius: clamp(6px, 1.5vw, 8px);
    padding: clamp(15px, 3vw, 20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
  }

  .dbw-lightbox-product-image {
    flex: 0 0 clamp(80px, 15vw, 100px);
  }

  .dbw-lightbox-product-image img {
    width: 100%;
    height: clamp(80px, 15vw, 100px);
    object-fit: cover;
    border-radius: clamp(4px, 1vw, 6px);
  }

  .dbw-lightbox-product-details {
    flex: 1;
    min-width: 0;
  }

  .dbw-lightbox-product-name {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: bold;
    margin-bottom: clamp(8px, 1.5vw, 10px);
    margin-top: 0;
    color: #333;
    line-height: 1.3;
  }

  .dbw-price-compare {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: clamp(12px, 2vw, 14px);
  }

  .dbw-price-current {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: bold;
    color: #e74c3c;
  }

  .dbw-lightbox-product-actions {
    margin-top: clamp(12px, 2.5vw, 15px);
  }

  .dbw-lightbox-product-btn {
    display: inline-block;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 3vw, 20px);
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: clamp(4px, 1vw, 6px);
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: clamp(12px, 2.5vw, 14px);
  }

  .dbw-lightbox-product-btn:hover {
    background: #555;
    color: white;
    text-decoration: none;
  }

  /* Enhanced Mobile Responsiveness */
  @media (max-width: 1200px) {
    .dbw-review-item {
      flex: 0 0 clamp(220px, 28vw, 280px);
      height: clamp(270px, 32vw, 320px);
    }

    .dbw-reviews-metaobject-section .dbw-carousel-btn {
      width: clamp(45px, 9vw, 55px) !important;
      height: clamp(45px, 9vw, 55px) !important;
    }
  }

  @media (max-width: 991px) {
    .dbw-reviews-header {
      margin-bottom: 30px;
    }

    .dbw-reviews-slider {
      padding: 0 5px;
    }

    .dbw-lightbox-content {
      max-width: 85vw;
      max-height: 85vh;
    }

    .dbw-lightbox-image-container {
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

    .dbw-lightbox-image {
      max-height: 60vh;
    }
  }

  @media (max-width: 768px) {
    .dbw-reviews-header {
      margin-bottom: 25px;
    }

    .dbw-review-item {
      flex: 0 0 clamp(200px, 45vw, 250px);
      height: clamp(250px, 50vw, 300px);
    }

    .dbw-reviews-slider {
      gap: 15px;
      padding: 0;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-navigation {
      gap: 15px !important;
      margin-top: 25px !important;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-btn {
      width: clamp(42px, 10vw, 48px) !important;
      height: clamp(42px, 10vw, 48px) !important;
    }

    .dbw-lightbox-product-card {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }

    .dbw-lightbox-product-image {
      margin-bottom: 0;
      flex: 0 0 auto;
    }

    .dbw-lightbox-content {
      max-width: 95vw;
      max-height: 90vh;
      margin: 10px;
    }

    .dbw-lightbox-image {
      max-height: 55vh;
      max-width: 100%;
      object-fit: contain;
    }

    .dbw-lightbox-image-container {
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    .dbw-reviews-header {
      margin-bottom: 20px;
    }

    .dbw-review-item {
      flex: 0 0 clamp(180px, 70vw, 220px);
      height: clamp(220px, 70vw, 280px);
    }

    .dbw-reviews-slider {
      gap: 10px;
      padding: 0 5px;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-navigation {
      gap: 12px !important;
      margin-top: 20px !important;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-btn {
      width: clamp(38px, 11vw, 44px) !important;
      height: clamp(38px, 11vw, 44px) !important;
    }

    .dbw-lightbox-product-card {
      padding: 15px;
    }

    .dbw-lightbox-content {
      max-width: 98vw;
      max-height: 95vh;
      margin: 5px;
    }

    .dbw-lightbox-image {
      max-height: 50vh;
      max-width: 100%;
      object-fit: contain;
    }

    .dbw-lightbox-image-container {
      padding: 8px;
    }

    .dbw-lightbox-close {
      top: 8px !important;
      right: 8px !important;
      width: 32px !important;
      height: 32px !important;
    }
  }

  @media (max-width: 360px) {
    .dbw-review-item {
      flex: 0 0 clamp(160px, 85vw, 200px);
      height: clamp(200px, 85vw, 250px);
    }

    .dbw-reviews-slider {
      gap: 8px;
      padding: 0;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-navigation {
      margin-top: 15px !important;
      gap: 10px !important;
    }

    .dbw-reviews-metaobject-section .dbw-carousel-btn {
      width: 36px !important;
      height: 36px !important;
      min-width: 36px !important;
      min-height: 36px !important;
    }

    .dbw-reviews-metaobject-section .dbw-arrow-icon,
    .dbw-reviews-metaobject-section .dbw-prev-arrow,
    .dbw-reviews-metaobject-section .dbw-next-arrow {
      width: 14px !important;
      height: 14px !important;
    }

    .dbw-lightbox-content {
      max-width: 100vw;
      max-height: 100vh;
      margin: 0;
      border-radius: 0;
    }

    .dbw-lightbox-image {
      max-height: 45vh;
    }
  }

  /* Landscape orientation adjustments for mobile */
  @media (max-height: 500px) and (orientation: landscape) {
    .dbw-lightbox-image {
      max-height: 35vh;
    }

    .dbw-lightbox-content {
      max-height: 95vh;
    }

    .dbw-lightbox-product-section {
      padding: 15px 20px;
    }
  }

  /* High resolution displays */
  @media (min-width: 1400px) {
    .dbw-review-item {
      flex: 0 0 300px;
      height: 350px;
    }

    .dbw-reviews-slider {
      gap: 20px;
    }
  }

  /* Touch device improvements */
  @media (hover: none) and (pointer: coarse) {
    .dbw-review-overlay {
      transform: translateY(0);
      opacity: 0.8;
    }

    .dbw-review-image-container:hover {
      transform: none;
    }

    .dbw-carousel-btn:hover {
      transform: none;
    }
  }
.section-slideshow-v1 {
  position: relative;
  overflow: hidden;
  contain: layout style;
  isolation: isolate;
}

/* Prevent slideshow pop-in by hiding content before Slick initializes - scoped to this section only */
[data-section-id="{{ section.id }}"] .slick-side-h1:not(.slick-initialized) {
  opacity: 0;
  visibility: hidden;
}

[data-section-id="{{ section.id }}"] .slick-side-h1.slick-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}

/* Hide non-active slides during initialization - scoped to this section only */
[data-section-id="{{ section.id }}"] .slick-side-h1:not(.slick-initialized) .itemv-slide-h1:not(:first-child) {
  display: none;
}

[data-section-id="{{ section.id }}"] .itemv-slide-h1 {
  position: relative;
  width: 100%;
}

[data-section-id="{{ section.id }}"] .info-sideh1 {
  position: relative;
  width: 100%;
  display: flex;
}

[data-section-id="{{ section.id }}"] .picture-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  contain: layout;
}

/* Ensure all transforms and transitions are scoped to this section only */
[data-section-id="{{ section.id }}"] img {
  transform-origin: center center;
}

/* Mobile-specific isolation */
@media (max-width: 768px) {
  [data-section-id="{{ section.id }}"] {
    transform: translateZ(0); /* Force hardware acceleration and isolation */
    contain: layout style paint;
  }
  
  /* Prevent any margin/padding bleeding to other elements */
  [data-section-id="{{ section.id }}"] * {
    box-sizing: border-box;
  }
}

[data-section-id="{{ section.id }}"] .picture-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

{% if section.blocks.size > 0 %}
{% for block in section.blocks %}
{% if block.type == "slideshow" and block.settings.enable_hover_zoom %}
[data-section-id="{{ section.id }}"] .picture-slideshow a:hover img {
  transform: scale({% if block.settings.hover_zoom_scale %}{{block.settings.hover_zoom_scale}}{% else %}1.1{% endif %}) {% if block.settings.image_zoom != blank %}scale({{block.settings.image_zoom}}){% endif %};
}
{% endif %}
{% endfor %}
{% endif %}

[data-section-id="{{ section.id }}"] .box-content,
[data-section-id="{{ section.id }}"] .box-content-center,
[data-section-id="{{ section.id }}"] .box-content-right {
  position: relative;
  z-index: 3;
  max-width: 100%;
}

[data-section-id="{{ section.id }}"] .box-info {
  position: relative;
}

[data-section-id="{{ section.id }}"] .animated {
  animation-fill-mode: both;
}

[data-section-id="{{ section.id }}"] .button-main2 {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

@media (max-width: 768px) {
  [data-section-id="{{ section.id }}"] .box-content,
  [data-section-id="{{ section.id }}"] .box-content-center,
  [data-section-id="{{ section.id }}"] .box-content-right {
    padding: 20px;
  }
  
  [data-section-id="{{ section.id }}"] .title-small {
    font-size: 14px !important;
  }
  
  [data-section-id="{{ section.id }}"] .titlebig {
    font-size: 24px !important;
  }
}