/** Shopify CDN: Minification failed

Line 913:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
  }

  .cart-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
  }

  .continue-shopping {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #ff69b4;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .continue-shopping:hover {
    background: #ff69b4;
    color: white;
  }

  .cart-form {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }

  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
  }

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

  .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
  }

  .item-variant {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff69b4;
  }

  .item-quantity label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }

  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .quantity-btn:hover {
    background: #f0f0f0;
    border-color: #ff69b4;
  }

  .quantity-input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
  }

  .item-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
  }

  .remove-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .remove-link:hover {
    background: #ff4444;
    color: white;
  }

  .cart-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 20px;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .total-price {
    color: #ff69b4;
    font-size: 1.5rem;
  }

  .cart-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary, .btn-secondary {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary {
    background: #ff69b4;
    color: white;
  }

  .btn-primary:hover {
    background: #ff1493;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
  }

  .btn-secondary:hover {
    border-color: #ff69b4;
    color: #ff69b4;
  }

  .empty-cart {
    text-align: center;
    padding: 80px 20px;
  }

  .empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .empty-cart h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
  }

  .empty-cart p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  @media (max-width: 768px) {
    .cart-form {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .cart-item {
      grid-template-columns: 1fr;
      gap: 15px;
      text-align: center;
    }

    .item-image {
      width: 100%;
      height: 200px;
      margin: 0 auto;
    }

    .cart-header {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .cart-header h1 {
      font-size: 2rem;
    }
  }
.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%;
  }
.contact-header-image {
    margin-top: 4rem;
    text-align: center;
  }

  .contact-section {
    padding: 4rem 1.5rem;
  }

  @media (min-width: 768px) {
    .contact-section {
      padding: 4rem 3rem;
    }
  }

  @media (min-width: 1024px) {
    .contact-section {
      padding: 4rem 6rem;
    }
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  @media (min-width: 750px) {
    .contact-content {
      grid-template-columns: 1fr 2fr;
    }
  }

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

  .contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-foreground);
  }

  .contact-description {
    font-size: 1.125rem;
    color: var(--color-foreground-75);
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
  }

  .contact-detail {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .contact-detail strong {
    display: inline-block;
    min-width: 4rem;
    font-weight: 600;
  }

  .contact-detail a {
    color: var(--color-link);
    text-decoration: none;
  }

  .contact-detail a:hover {
    text-decoration: underline;
  }

  .contact-detail address {
    display: inline;
    font-style: normal;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 500px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
  }

  .form-field {
    display: flex;
    flex-direction: column;
  }

  .form-field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .form-field input,
  .form-field textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    color: var(--color-foreground);
    direction: rtl;
    text-align: right;
  }

  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-alpha-20);
  }

  .form-field input[aria-invalid="true"],
  .form-field textarea[aria-invalid="true"] {
    border-color: var(--color-error);
  }

  .form-field-error {
    margin-top: 0.5rem;
    color: var(--color-error);
    font-size: 0.875rem;
  }

  .form-status {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
  }

  .form-status--error {
    background-color: var(--color-error-background);
    border: 1px solid var(--color-error);
    color: var(--color-error);
  }

  .form-status--success {
    background-color: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .success-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #065f46;
  }

  .success-content p {
    margin: 0;
    font-size: 1rem;
    color: #047857;
    line-height: 1.5;
  }

  .form-status h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .form-status ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .form-actions {
    display: flex;
    justify-content: flex-start;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 2px solid #DBB186;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #DBB186;
    color: white;
  }

  .btn:hover {
    background-color: #C89F6F;
    border-color: #C89F6F;
    transform: translateY(-1px);
  }

  .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-primary-alpha-20);
  }

  .btn:active {
    transform: translateY(0);
  }
.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;
  }
/* Ensure fixed header works */
html, body {
  overflow-x: visible !important;
}

/* Mobile viewport fixes */
@media (max-width: 768px) {
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Ensure all content containers respect viewport width */
  .container, .page-width, section {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 64px !important; /* 4rem = 64px for h-16 */
}

/* Mobile responsive padding */
@media (max-width: 768px) {
  body {
    padding-top: 56px !important; /* Smaller padding for mobile */
  }
}

/* Mobile-specific header fixes */
@media (max-width: 768px) {
  header {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  header .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100% !important;
  }
}

.logo-container {
  height: 28px;
  width: auto;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 120px;
  filter: brightness(0) saturate(100%) invert(21%) sepia(19%) saturate(465%) hue-rotate(192deg) brightness(98%) contrast(91%);
  transition: filter 0.3s ease;
}

.logo-container:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(23%) saturate(628%) hue-rotate(316deg) brightness(94%) contrast(89%);
}

/* Ensure navigation text doesn't wrap */
nav a {
  white-space: nowrap;
  overflow: visible;
}

/* Fix RTL text cutoff in navigation */
header {
  padding-left: 2rem;
  padding-right: 2rem;
  overflow-x: visible;
}

header .container {
  padding-left: 2rem;
  padding-right: 2rem;
  overflow-x: visible;
}

/* Ensure nav links have proper spacing for RTL */
nav a {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* RTL specific fixes */
nav {
  direction: rtl;
  text-align: right;
}

nav a {
  display: inline-block;
  text-align: right;
  direction: rtl;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  /* Ensure mobile menu is visible when not hidden */
  #mobile-menu {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 50;
    width: 100%;
  }
  
  /* Mobile menu links */
  #mobile-menu nav a {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  #mobile-menu nav a:hover {
    background-color: #f9fafb;
  }
}
.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;
  }
/* Swiper customizations for RTL */
  .how-to-use-swiper {
    direction: rtl !important; /* Use RTL for swiper functionality */
    padding: 0 60px 60px 60px;
    overflow: hidden; /* Contain slides within frame */
    width: 100%;
    min-height: 500px
  }
  
  /* Override any RTL inheritance for slide content only */
  .how-to-use-swiper .swiper-slide {
    direction: rtl !important;
  }
  
  .how-to-use-swiper .swiper-wrapper {
    align-items: stretch;
    display: flex;
  }
  
  .how-to-use-swiper .swiper-slide {
    flex-shrink: 0;
    width: 400px; /* Fixed width instead of auto */
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .how-to-use-swiper .swiper-slide > div {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Custom navigation buttons */
  .how-to-use-nav-btn {
    border-color: #D1C7B8; /* cream color */
    color: #D1C7B8;
    background: transparent;
    cursor: pointer;
    border-radius: 50%; /* Ensure fully rounded border */
    border-style: solid;
    border-width: 2px;
  }
  
  .how-to-use-nav-btn:hover:not(.disabled) {
    transform: scale(1.05);
    border-color: #B8A992;
    color: #B8A992;
  }
  
  .how-to-use-nav-btn.disabled {
    border-color: #D1D5DB; /* light gray */
    color: #D1D5DB;
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  .how-to-use-nav-btn:active:not(.disabled) {
    transform: scale(0.98);
  }
  
  /* Custom pagination */
  .how-to-use-swiper .swiper-pagination {
    bottom: 20px;
    border: 1px solid red;
  }
  
  .how-to-use-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .how-to-use-swiper .swiper-pagination-bullet-active {
    background: #3B82F6;
    transform: scale(1.2);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .how-to-use-swiper {
      padding: 0 10px 10px 10px;
    }
    
    .how-to-use-swiper .swiper-slide {
      /* max-width: 320px; */
    }
    
    .how-to-use-swiper .swiper-button-next,
    .how-to-use-swiper .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
    
    .how-to-use-swiper .swiper-button-next:after,
    .how-to-use-swiper .swiper-button-prev:after {
      font-size: 14px;
    }
  }
  
  /* Active slide highlighting */
  .how-to-use-swiper .swiper-slide {
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
  }
  
  .how-to-use-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Multiple slides visible on larger screens */
  @media (min-width: 1024px) {
    .how-to-use-swiper .swiper-slide {
      max-width: 350px;
    }
  }
  
  @media (min-width: 1280px) {
    .how-to-use-swiper .swiper-slide {
      max-width: 380px;
    }
  }
/* Import Open Sans font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* Apply Open Sans globally */
* {
  font-family: 'Open Sans', sans-serif;
}

.perspective-1000 {
  perspective: 1000px;
}

.hero-image {
  transform-origin: center 90%;
}

/* Radial gradient utility for red light section */
.bg-gradient-radial {
  background: radial-gradient(var(--tw-gradient-stops));
}

.massager-3d-viewer {
  position: relative;
  width: 100%;
  height: 600px;
  background: transparent;
  overflow: visible;
}

.viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}

.viewer-canvas {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  max-height: 80vh; /* Prevent canvas from exceeding viewport */
  display: block;
  cursor: grab;
  border: none;
  background: transparent;
  box-sizing: border-box; /* Ensure padding/borders are included in size calculations */
}

/* Large screen width adjustment for 3D canvas */
@media (min-width: 1536px) {
  .viewer-canvas {
    width: calc(100% - 300px) !important;
    margin-right: 300px;
  }
}

/* Mobile - disable 3D interactions and reduce height */
@media (max-width: 1023px) {
  .viewer-canvas {
    pointer-events: none;
    touch-action: auto;
    cursor: default;
    height: 40vh;
    min-height: 300px;
  }
}

/* Portrait mobile - limit container height to prevent excessive growth */
@media (max-width: 768px) and (orientation: portrait) {
  .viewer-canvas {
    height: 70vh;
    max-height: 70vh;
    min-height: 300px;
  }
  
  /* Apply the same limits to the container */
  .viewer-canvas:parent,
  canvas[data-block-id] {
    max-height: 70vh;
  }
}

.viewer-canvas:active {
  cursor: grabbing;
}

/* Mobile - disable grab cursor */
@media (max-width: 1023px) {
  .viewer-canvas:active {
    cursor: default;
  }
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
  color: #64748b;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.viewer-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
  transform: translateY(0);
}

.control-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.light-btn.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-color: #dc2626;
}

.light-btn.active:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.red-light-canvas {
  height: 70vh;
  min-height: 500px;
}

/* Red light section specific styles */
#red-light-therapy .viewer-controls {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(15px);
}

#red-light-therapy .control-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
  font-weight: 600;
}

#red-light-therapy .control-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #dc2626;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

#red-light-therapy .light-btn.active {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: #b91c1c;
  color: white;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

/* Red light wave animations for living feel */
.red-glow-wave {
  animation: redGlowWave 4s ease-in-out infinite;
}

.red-light-pulse {
  animation: redLightPulse 3s ease-in-out infinite;
}

@keyframes redGlowWave {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes redLightPulse {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(235, 53, 56, 0.3));
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(235, 53, 56, 0.6));
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .viewer-controls {
    flex-direction: column;
    bottom: 10px;
    left: 10px;
    right: 10px;
    transform: none;
  }
  
  .control-btn {
    justify-content: center;
    width: 100%;
  }
  
  .red-light-canvas {
    height: 60vh;
    min-height: 400px;
  }

  /* Mobile responsive styles for product images */
  @media (max-width: 768px) {
    .product-image-container img[alt="Red Glow Background"] {
      top: -80px !important;
      right: -20px !important;
      opacity: 0.4 !important;
    }
    
    .product-image-container img[alt="Lora Product"] {
      transform: translateX(-20px) !important;
      width: 150% !important;
      max-width: none !important;
    }
    
    /* Make bottom cards join the grid on mobile */
    .bottom-cards-container {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      max-width: 37.5rem !important;
    }
    
    /* Show graph underneath product on mobile */
    .product-image-container div[style*="top: 440px"] {
      position: relative !important;
      top: auto !important;
      right: auto !important;
      margin-top: 2rem !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }
  }
}
.page-section {
    padding: 0;
  }

  .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }

  @media (min-width: 768px) {
    .page-width {
      padding: 4rem 3rem;
    }
  }

  @media (min-width: 1024px) {
    .page-width {
      padding: 6rem 4rem;
    }
  }

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

  .page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-foreground);
    line-height: 1.2;
  }

  @media (max-width: 767px) {
    .page-title {
      font-size: 2rem;
    }
  }

  .page-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-foreground);
    max-width: 800px;
    margin: 0 auto;
  }

  .page-content > *:first-child {
    margin-top: 0;
  }

  .page-content > *:last-child {
    margin-bottom: 0;
  }

  .page-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--color-foreground);
  }

  .page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .page-content p {
    margin: 1rem 0;
  }

  .page-content ul,
  .page-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .page-content li {
    margin: 0.5rem 0;
  }

  .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
  }

  .page-content a {
    color: var(--color-link);
    text-decoration: underline;
  }

  .page-content a:hover {
    text-decoration: none;
  }

  .page-content blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background-color: var(--color-background-secondary);
    font-style: italic;
    border-radius: 0.5rem;
  }

  .page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
  }

  .page-content th,
  .page-content td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
  }

  .page-content th {
    font-weight: 600;
    background-color: var(--color-background-secondary);
  }
.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;
  }
.tech-specs-section {
  padding-top: var(--section-padding-top, 6rem);
  padding-bottom: var(--section-padding-bottom, 6rem);
}

.tech-specs-section h2 {
  line-height: 1.2;
}

.tech-specs-section ul {
  list-style: none;
}

.tech-specs-section li {
  position: relative;
  padding-right: 0;
}

/* Hover effects for specification items */
.tech-specs-section > div > div > div > div:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-specs-section .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-specs-section h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .tech-specs-section .text-center {
    margin-bottom: 2rem;
  }
}

/* RTL specific adjustments */
[dir="rtl"] .tech-specs-section svg {
  margin-left: 0.75rem;
  margin-right: 0;
}

[dir="rtl"] .tech-specs-section ul {
  margin-right: 2.25rem;
  margin-left: 0;
}

/* CSS from block stylesheet tags */
.massager-3d-viewer {
  position: relative;
  width: 100%;
  height: var(--canvas-height, 500px);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.viewer-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

.viewer-canvas:active {
  cursor: grabbing;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
  color: #64748b;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.viewer-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
  transform: translateY(0);
}

.control-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.light-btn.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-color: #dc2626;
}

.light-btn.active:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Floating animation for the 3D model */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  25% { transform: translateY(-10px) rotateY(90deg); }
  50% { transform: translateY(0px) rotateY(180deg); }
  75% { transform: translateY(-10px) rotateY(270deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .viewer-controls {
    flex-direction: column;
    bottom: 10px;
    left: 10px;
    right: 10px;
    transform: none;
  }
  
  .control-btn {
    justify-content: center;
    width: 100%;
  }
}
.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;
  }