/** Shopify CDN: Minification failed

Line 1717:0 Unexpected "}"
Line 1745:0 Unexpected "}"
Line 1803:0 Unexpected "<"
Line 1822:0 Unexpected "<"
Line 1830:10 Unterminated string token
Line 1831:5 Unexpected "{"
Line 1831:14 Expected ":"
Line 1831:70 Unexpected "400w"
Line 1832:5 Unexpected "{"
Line 1832:14 Expected ":"
... and 8 more hidden warnings

**/
/* Bot Parts Direct - Synthwave Theme CSS */

/* CSS Variables */
:root {
  --background: #0a0a0a;
  --foreground: #ffffff;
  --card: #1a1a1a;
  --card-foreground: #ffffff;
  --popover: #1a1a1a;
  --popover-foreground: #ffffff;
  --primary: #8b5cf6;
  --primary-foreground: #ffffff;
  --secondary: #262626;
  --secondary-foreground: #ffffff;
  --muted: #404040;
  --muted-foreground: #a3a3a3;
  --accent: #06b6d4;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #404040;
  --input: #262626;
  --ring: #8b5cf6;
  --radius: 0.5rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed, #0891b2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--muted);
}

/* Header */
.header {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(20, 20, 30, 0.98));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

/* Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 250px;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
  transition: filter 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

/* Navigation Styling */
.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, transparent, transparent);
  border: 1px solid transparent;
}

.nav-link span {
  position: relative;
  z-index: 2;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  color: var(--primary);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

/* Cart Icon Styling */
.cart-icon {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon-wrapper {
  position: relative;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon:hover .cart-icon-wrapper {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.cart-icon svg {
  color: var(--foreground);
  transition: color 0.3s ease;
}

.cart-icon:hover svg {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  border: 2px solid var(--background);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--foreground);
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(20, 20, 30, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--primary);
}

.mobile-nav-link:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu.open {
    display: block;
  }
  
  .logo-image {
    height: 40px;
    max-width: 200px;
  }
  
  .header-content {
    padding: 0.75rem 0;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  background-image: url('hero_background.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.8);
}

/* === COMPREHENSIVE IMAGE SIZING FIXES === */
/* Target all possible product image containers across different Shopify themes */

/* Primary product image containers */
.product-image,
.card__media,
.media,
.product-card__image,
.collection-card__image,
.grid__item .media,
.card--media .media,
.product-grid .media,
.product__media,
.card-wrapper .media {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background-color: #ffffff !important;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  aspect-ratio: 1 / 1;
}

/* All product images */
.product-image img,
.card__media img,
.media img,
.product-card__image img,
.collection-card__image img,
.grid__item .media img,
.card--media .media img,
.product-grid .media img,
.product-grid img,
.product__media img,
.card-wrapper .media img,
.product-item img,
.collection img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease;
  border-radius: 0.25rem;
  background-color: #ffffff !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* Collection page specific fixes */
.template-collection .product-image,
.template-collection .card__media,
.template-collection .media,
.template-collection .collection-card__image,
.template-collection .collection .media,
.template-collection .grid__item .media,
.template-collection .card--media .media {
  background: #fff !important;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.template-collection .product-image img,
.template-collection .card__media img,
.template-collection .media img,
.template-collection .collection-card__image img,
.template-collection .grid__item .media img,
.template-collection .card--media .media img,
.template-collection .product-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
  background: #fff !important;
}

/* Hover effects */
.product-card:hover .product-image img,
.card:hover .card__media img,
.card:hover .media img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 200px;
}

.product-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8rem;
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
  margin-top: auto;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(6, 182, 212, 0.2));
}

.newsletter-content {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.newsletter-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

/* Footer */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--foreground);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background-color: var(--card);
  border-left: 1px solid var(--border);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.cart-close:hover {
  background-color: var(--secondary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: contain !important;
  border-radius: var(--radius);
  background-color: #ffffff !important;
  background: #ffffff !important;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Collection Page */
.collection-header {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
}

.collection-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collection-description {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.collection-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.sort-select {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
}

/* Product Page */
.product-page {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(6, 182, 212, 0.02));
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Gallery */
.product-gallery {
  position: relative;
}

.product-image-container {
  position: relative;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain !important;
  background-color: #ffffff !important;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.product-main-image:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
  border: 2px dashed rgba(139, 92, 246, 0.3);
}

.placeholder-content {
  text-align: center;
  color: var(--muted-foreground);
}

.placeholder-content svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background-color: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbnail:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-header {
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding-bottom: 2rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--foreground), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.product-price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price-main {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-compare-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--muted-foreground);
}

.sale-badge {
  background: linear-gradient(135deg, var(--destructive), #dc2626);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.product-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Product Form */
.product-form-container {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(20, 20, 30, 0.5));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

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

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

.variant-selector, .quantity-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.variant-select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: var(--input);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.variant-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--foreground);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}

.quantity-input {
  width: 80px;
  padding: 0.75rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: var(--input);
  color: var(--foreground);
  text-align: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.add-to-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--foreground);
  font-weight: 500;
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-price-main {
    font-size: 1.5rem;
  }
  
  .product-form-container {
    padding: 1.5rem;
  }
  
  .product-thumbnails {
    flex-wrap: wrap;
  }
  
  .quantity-selector {
    justify-content: center;
  }
}

/* Policy Pages */
.policy-page {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.02), rgba(6, 182, 212, 0.02));
  min-height: 80vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.policy-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--foreground), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(20, 20, 30, 0.5));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.policy-section:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.section-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.section-content {
  flex: 1;
}

.section-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.policy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Return Steps */
.return-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step-content p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-item {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--foreground);
  margin-right: 0.5rem;
}

/* Policy Footer */
.policy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-highlight {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.footer-highlight h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-highlight p {
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Page Styling */
.contact-content {
  margin-top: 2rem;
}

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

.contact-form-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(20, 20, 30, 0.5));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-header p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.success-message,
.error-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

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

.contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(20, 20, 30, 0.5));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.contact-details p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.faq-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-item {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(20, 20, 30, 0.3));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.faq-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Shipping Options Styling */
.shipping-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.shipping-option {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(20, 20, 30, 0.3));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.shipping-option:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.shipping-option h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.shipping-details p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.shipping-details strong {
  color: var(--foreground);
}

.tracking-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.tracking-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tracking-step .step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tracking-step .step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.tracking-step .step-content p {
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

.free-shipping-info {
  margin: 1.5rem 0;
}

.free-shipping-highlight {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.75rem;
  text-align: center;
}

.free-shipping-highlight h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.free-shipping-highlight p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.delivery-issue {
  margin-bottom: 2rem;
}

.delivery-issue h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.last-updated {
  text-align: center;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Mobile Responsive for Contact and Shipping */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .shipping-options {
    grid-template-columns: 1fr;
  }
  
  .tracking-steps {
    gap: 2rem;
  }
  
  .tracking-step {
    flex-direction: column;
    text-align: center;
  }
}
  
  .policy-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .section-icon {
    align-self: flex-start;
  }
  
  .return-steps {
    gap: 2rem;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .contact-info {
    text-align: center;
  }
}
  .hero-title {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cart-drawer {
    width: 100%;
  }
  
  .product-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collection-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
}

/* Gradient Classes */
.gradient-purple {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.8), rgba(139, 92, 246, 0.8));
}

.gradient-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(14, 165, 233, 0.8));
}

.gradient-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.8), rgba(219, 39, 119, 0.8));
}

.gradient-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(79, 70, 229, 0.8));
}

.gradient-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(37, 99, 235, 0.8));
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}


.product-title{font-size:14px!important;line-height:1.2!important;-webkit-line-clamp:5!important;height:auto!important}.product-description{-webkit-line-clamp:unset!important;height:auto!important}.product-image img{width:100%;height:auto;object-fit:contain}
.product-card img,.product-image img{width:100%!important;height:100%!important;object-fit:contain!important;object-position:center!important}.product-card .product-image,.product-image{display:flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important}
.product-image{padding:10px!important;box-sizing:border-box!important}

header img[alt="Robot Vacuum Parts Direct"],header .logo img{max-width:200px!important;width:200px!important;height:auto!important}

<style>
  .product-image {
    aspect-ratio: 1 / 1;        /* uniform square cards */
    background: #fff;
    border: 1px solid var(--border, #eee);
    border-radius: 14px;
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;            /* keeps badges inside the frame */
    position: relative;
  }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;         /* 👈 shows the whole image */
    object-position: center;
  }
</style>

<!-- Use square requests; include width/height attrs for CLS -->
<img
  src="{{ product.featured_image | image_url: width: 800, height: 800 }}"
  alt="{{ product.title }}"
  loading="lazy"
  width="800" height="800"
  srcset="
    {{ product.featured_image | image_url: width: 400, height: 400 }} 400w,
    {{ product.featured_image | image_url: width: 600, height: 600 }} 600w,
    {{ product.featured_image | image_url: width: 800, height: 800 }} 800w,
    {{ product.featured_image | image_url: width: 1200, height: 1200 }} 1200w"
  sizes="(min-width: 1024px) 25vw, (min-width: 640px) 33vw, 100vw"
/>
