/** 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"
/>

/* Allow cards to size themselves without leaving large empty areas */
.collection .grid__item {
  height: auto;
}

/* Hide images with Liquid error src to eliminate the black block */
img[src*="Liquid error (templates/collection"] {
  display: none !important;
}
/* ============================================================
   BOT PARTS DIRECT — Dark Synthwave Theme Override
   Paste this at the BOTTOM of your theme.css in the Shopify
   theme code editor (Online Store → Themes → Edit code →
   Assets → theme.css).
   ============================================================ */

/* ----------------------------------------------------------
   1. GLOBAL BODY & PAGE BACKGROUND
   Ensures every page uses the dark background, not white.
   ---------------------------------------------------------- */
body,
.content-for-layout,
#MainContent {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   2. HOMEPAGE — "SHOP BY CATEGORY" SECTION
   Overrides the hardcoded #f8f9fa light-grey background.
   ---------------------------------------------------------- */
.category-section-simple {
  background: #0a0a0a !important;
  background-image: none !important;
}

/* Section heading text — was dark purple on light bg */
.section-title {
  color: #ffffff !important;
}

/* Section subtitle — was mid-grey on light bg */
.section-subtitle {
  color: #a3a3a3 !important;
}

/* ----------------------------------------------------------
   3. COLLECTION PAGE — PRODUCT GRID & CARDS
   Overrides the white product card backgrounds while keeping
   product images on a clean white tile for readability.
   ---------------------------------------------------------- */

/* Product card outer shell — dark card, subtle purple border */
.product-card {
  background-color: #1a1a1a !important;
  border: 1px solid #404040 !important;
  border-radius: 0.75rem !important;
}

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

/* Product image tile — stays white so product photos are clear */
.product-image {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
}

/* Product content area inside card */
.product-content {
  background-color: #1a1a1a !important;
  border-radius: 0 0 0.75rem 0.75rem !important;
}

/* Product title links */
.product-title,
.product-title a {
  color: #ffffff !important;
}

/* Product description text */
.product-description {
  color: #a3a3a3 !important;
}

/* Product price */
.product-price {
  color: #8b5cf6 !important;
}

/* Collection page header banner */
.collection-header {
  background-color: #1a1a1a !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.3) !important;
}

/* Sort/filter controls area */
.collection-controls {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
}

.collection-controls span,
.collection-controls label {
  color: #a3a3a3 !important;
}

/* Sort dropdown */
.sort-select {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
}

/* ----------------------------------------------------------
   4. PRODUCT DETAIL PAGE
   The product page already has dark classes in theme.css,
   but we reinforce the background here.
   ---------------------------------------------------------- */
.product-page {
  background-color: #0a0a0a !important;
}

/* Product info panel */
.product-info,
.product-header {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* Breadcrumb / page context text */
.breadcrumb,
.breadcrumbs,
nav[aria-label="breadcrumb"] {
  color: #a3a3a3 !important;
  background-color: transparent !important;
}

.breadcrumb a,
.breadcrumbs a {
  color: #8b5cf6 !important;
}

/* ----------------------------------------------------------
   5. CONTACT PAGE
   The contact page template already uses dark card classes,
   but the outer page background needs to be dark.
   ---------------------------------------------------------- */
.template-contact #MainContent,
.template-page #MainContent {
  background-color: #0a0a0a !important;
}

/* Page-level headings on contact/policy pages */
.page-title,
.contact-page h1,
.contact-page h2 {
  color: #ffffff !important;
}

/* Contact form inputs — dark background with purple focus ring */
.contact-form input,
.contact-form select,
.contact-form textarea,
.form-group input,
.form-group select,
.form-group textarea {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2) !important;
  outline: none !important;
}

/* Placeholder text */
.contact-form input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280 !important;
}

/* Contact page section wrapper */
.contact-page-section,
.page-section {
  background-color: #0a0a0a !important;
}

/* ----------------------------------------------------------
   6. GENERIC PAGE TEMPLATES (About, FAQ, etc.)
   ---------------------------------------------------------- */
.template-page .page-content,
.template-page .rte,
.page-content,
.rte {
  background-color: transparent !important;
  color: #d1d5db !important;
}

.rte h1, .rte h2, .rte h3,
.rte h4, .rte h5, .rte h6 {
  color: #ffffff !important;
}

.rte a {
  color: #8b5cf6 !important;
}

.rte a:hover {
  color: #06b6d4 !important;
}

/* ----------------------------------------------------------
   7. SHOPIFY DEFAULT ELEMENTS
   Override any Shopify Dawn/default theme white backgrounds
   that may bleed through on standard pages.
   ---------------------------------------------------------- */

/* Shopify section wrappers */
.shopify-section {
  background-color: transparent !important;
}

/* Standard Shopify page wrapper */
.page-width {
  background-color: transparent !important;
}

/* Generic white card/box overrides */
.card,
.card--product,
.card--standard {
  background-color: #1a1a1a !important;
  border: 1px solid #404040 !important;
  color: #ffffff !important;
}

/* Shopify pagination */
.pagination {
  background-color: transparent !important;
}

.pagination__item {
  background-color: #1a1a1a !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #ffffff !important;
}

.pagination__item--current,
.pagination__item:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3)) !important;
  border-color: rgba(139, 92, 246, 0.6) !important;
}

/* ----------------------------------------------------------
   8. 404 / ERROR PAGES
   ---------------------------------------------------------- */
.template-404 #MainContent,
.not-found-page {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ----------------------------------------------------------
   9. SALE / BADGE LABELS
   ---------------------------------------------------------- */
.badge,
.product-badge {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4) !important;
  color: #ffffff !important;
  border: none !important;
}

.badge--sale,
.badge--on-sale {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

/* ----------------------------------------------------------
   10. SOLD OUT STATE
   ---------------------------------------------------------- */
.product-card .sold-out-badge,
.badge--sold-out {
  background-color: #404040 !important;
  color: #a3a3a3 !important;
}

/* ----------------------------------------------------------
   11. SCROLLBAR (optional cosmetic touch)
   ---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background-color: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed, #0891b2);
}
/* ============================================================
   BOT PARTS DIRECT — PRODUCT CARD & DESCRIPTION OVERHAUL
   Paste at the bottom of theme.css in the Shopify code editor
   ============================================================ */

/* ── 1. PRODUCT GRID LAYOUT ─────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

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

/* ── 2. PRODUCT CARD SHELL ───────────────────────────────── */
.product-card {
  background: #1a1a2e;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25),
              0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ── 3. PRODUCT IMAGE CONTAINER ─────────────────────────── */
.product-image {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
  border-radius: 8px;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ── 4. PRODUCT BADGES ───────────────────────────────────── */
.product-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  line-height: 1.6;
}

.product-badge.badge-new {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.5);
}

.product-badge.badge-sale {
  background: linear-gradient(135deg, #f5576c, #c0392b);
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.5);
}

.product-badge.badge-stock {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #0a0a0a;
  top: auto;
  bottom: 0.625rem;
  left: 0.625rem;
}

/* ── 5. QUICK-ADD OVERLAY BUTTON ─────────────────────────── */
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 1rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 4;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* ── 6. PRODUCT CONTENT AREA ─────────────────────────────── */
.product-content {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

/* ── 7. STAR RATINGS ─────────────────────────────────────── */
.product-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.1rem;
}

.product-stars .stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.product-stars .review-count {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  line-height: 1;
}

/* ── 8. PRODUCT TITLE ────────────────────────────────────── */
.product-title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #e2e8f0;
  margin: 0;
  /* Show up to 4 lines, then clip — no hard truncation */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: #a78bfa;
}

/* ── 9. PRODUCT DESCRIPTION (card preview) ───────────────── */
.product-description {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
  margin: 0;
  /* Show 2 lines on card, full on product page */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── 10. PRODUCT PRICE ───────────────────────────────────── */
.product-price {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
  padding-top: 0.35rem;
}

.product-price .original-price {
  font-size: 0.75rem;
  font-weight: 400;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* ── 11. ADD TO CART BUTTON (on card) ────────────────────── */
.product-content .btn.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.product-content .btn.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.45);
}

.product-content .btn.btn-primary:active {
  transform: translateY(0);
}

/* ── 12. SKELETON LOADING SHIMMER ────────────────────────── */
@keyframes bpd-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.product-card.loading .product-image,
.product-card.loading .product-title,
.product-card.loading .product-price {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.04) 75%);
  background-size: 600px 100%;
  animation: bpd-shimmer 1.4s infinite linear;
  border-radius: 6px;
  color: transparent !important;
}

/* ── 13. PRODUCT DETAIL PAGE — DESCRIPTION ───────────────── */
.product-description-full,
.product-info .product-description {
  /* Remove line-clamp on the full product page */
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.95rem;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

/* Description headings */
.product-info .product-description h1,
.product-info .product-description h2,
.product-info .product-description h3,
.product-info .product-description h4 {
  color: #e2e8f0;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Description bullet lists */
.product-info .product-description ul,
.product-info .product-description ol {
  padding-left: 0;
  list-style: none;
  margin: 0.75rem 0;
}

.product-info .product-description ul li,
.product-info .product-description ol li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-info .product-description ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #8b5cf6;
  font-weight: 700;
  font-size: 0.85rem;
}

.product-info .product-description ol {
  counter-reset: bpd-counter;
}

.product-info .product-description ol li::before {
  content: counter(bpd-counter) '.';
  counter-increment: bpd-counter;
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 700;
}

/* Description strong/bold text */
.product-info .product-description strong,
.product-info .product-description b {
  color: #c4b5fd;
  font-weight: 700;
  font-size: inherit !important; /* override any inline font-size */
}

/* Description paragraphs */
.product-info .product-description p {
  margin: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ── 14. PRODUCT DETAIL PAGE — STAR RATING SECTION ──────── */
.product-rating-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.75rem;
}

.product-rating-section .stars-large {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.product-rating-section .rating-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.product-rating-section .rating-text a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 15. PRODUCT DETAIL PAGE — PRICE STYLING ─────────────── */
.product-price-main {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* ── 16. PRODUCT DETAIL PAGE — TRUST BADGES ─────────────── */
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.trust-badge svg {
  color: #8b5cf6;
  flex-shrink: 0;
}

/* ── 17. COLLECTION PAGE HEADER ──────────────────────────── */
.collection-header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  margin-bottom: 1.5rem;
}

.collection-header h1,
.collection-header .collection-title {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.25rem;
}

.collection-header .collection-count {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

/* ── 18. SORT / FILTER BAR ───────────────────────────────── */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.collection-toolbar select,
.collection-toolbar .sort-select {
  background: #1a1a2e;
  color: #e2e8f0;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.collection-toolbar select:focus,
.collection-toolbar .sort-select:focus {
  border-color: #8b5cf6;
}

/* ── 19. EMPTY STATE ─────────────────────────────────────── */
.collection-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.45);
}

.collection-empty h2 {
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

/* ── 20. RESPONSIVE PRODUCT DETAIL ───────────────────────── */
@media (max-width: 768px) {
  .product-main {
    flex-direction: column !important;
  }

  .product-gallery,
  .product-info {
    width: 100% !important;
  }

  .product-price-main {
    font-size: 1.4rem;
  }

  .product-trust-badges {
    gap: 0.4rem;
  }

  .trust-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }
}



/* Force square media containers + show full image without cropping */
.card__inner,
.card__media,
.media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card__media img,
.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* shows entire product, may add letterboxing */
  object-position: center;
  background: #fff;             /* optional: white fill behind transparent PNGs */
}

/* Optional: remove forced padding if you want tighter fit */
.card__inner {
  padding: 0.5rem;              /* your original padding idea */
}

/* Helps uneven image heights not destroy grid rows */
.collection .grid__item,
.grid__item {
  height: auto !important;
}