/* ============================================
   Shadow's Reptiles — Store Listing
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red-dark: #8B0000;
  --red-mid: #A50000;
  --red-accent: #CC0000;
  --red-bright: #E60000;
  --gold: #FFD700;
  --bg-black: #111111;
  --bg-dark: #1a1a1a;
  --bg-card: #222222;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #333333;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --nav-height: 74px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--red-accent);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.skip-link:focus { top: 16px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 4px;
}
.btn-primary {
  background: var(--red-accent);
  color: white;
  border-color: var(--red-accent);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--bg-black);
  transform: translateY(-2px);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-black) 0%, var(--red-dark) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect width="4" height="4" fill="%23000" opacity="0.15"/><rect width="1" height="1" fill="%23000" opacity="0.1"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  text-transform: none;
  font-weight: 400;
}

/* --- Filter Bar --- */
.filter-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar-inner {
  display: flex;
  gap: 10px;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--red-accent);
  color: var(--text-primary);
}
.filter-btn.active {
  background: var(--red-accent);
  border-color: var(--red-accent);
  color: white;
}
.filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- Product Grid --- */
.products-section {
  padding: 60px 24px 80px;
}
.products-container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Product Card --- */
.product-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--red-accent);
  transform: translateY(-4px);
}
.product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-image .ribbon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--bg-black);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.price-sold-out {
  color: var(--red-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card-image .ribbon-sold-out {
  background: var(--red-accent);
  color: white;
}
.product-card.sold-out {
  opacity: 0.5;
}
.product-card.sold-out:hover {
  opacity: 0.7;
}
.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card-collection {
  display: inline-block;
  background: var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: auto;
  align-self: flex-start;
}
/* --- Skeleton Loading Cards --- */
.skeleton-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.skeleton-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, var(--bg-dark) 25%, var(--border-color) 50%, var(--bg-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 16px; }
.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-dark) 25%, var(--border-color) 50%, var(--bg-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 10px;
}
.skeleton-line.title { height: 18px; width: 70%; }
.skeleton-line.price { height: 16px; width: 30%; }
.skeleton-line.short { width: 40%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Error State --- */
.products-error {
  text-align: center;
  padding: 60px 24px;
  grid-column: 1 / -1;
}
.products-error p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* --- Empty State --- */
.products-empty {
  text-align: center;
  padding: 60px 24px;
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- CTA Section --- */
.cta {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--red-dark) 100%);
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.cta p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Footer --- */
/* ============================================
   Product Detail Page
   ============================================ */

/* --- Breadcrumb --- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: white;
}
.breadcrumb-sep {
  color: var(--text-muted);
  margin: 0 8px;
}

/* --- Product Detail Layout --- */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* --- Gallery --- */
.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  background: var(--bg-card);
  padding: 0;
}
.gallery-thumb:hover {
  border-color: var(--text-muted);
}
.gallery-thumb.active {
  border-color: var(--red-accent);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Product Info --- */
.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 4px;
}
.product-detail-ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-black);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.8rem;
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 12px 0 24px;
}

/* --- Variant Selector --- */
.variant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.variant-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.variant-btn:hover {
  border-color: var(--red-accent);
  color: var(--text-primary);
}
.variant-btn.active {
  background: var(--red-accent);
  border-color: var(--red-accent);
  color: white;
}
.variant-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- Product Actions --- */
.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* --- Added Confirmation --- */
.added-confirmation {
  font-size: 0.9rem;
  color: #4caf50;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  height: 0;
  overflow: hidden;
}
.added-confirmation.show {
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

/* --- Product Description --- */
.product-description {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 65ch;
}
.product-description p {
  margin-bottom: 16px;
}
.product-description h2,
.product-description h3,
.product-description h4 {
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
  text-transform: none;
}
.product-description ul,
.product-description ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.product-description li {
  margin-bottom: 6px;
  list-style: disc;
}
.product-description a {
  color: var(--red-accent);
  text-decoration: underline;
}
.product-description a:hover {
  color: var(--red-bright);
}

/* --- Related Products --- */
.related-products {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.related-products h2 {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Product Skeleton (Detail Page) --- */
.product-skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  grid-column: 1 / -1;
}
.skeleton-gallery {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}
.skeleton-gallery .skeleton-image {
  width: 100%;
  height: 100%;
}
.skeleton-info {
  padding-top: 20px;
}
.skeleton-info .skeleton-line {
  margin-bottom: 16px;
}
.skeleton-info .skeleton-line.title {
  height: 28px;
  width: 80%;
}
.skeleton-info .skeleton-line.short {
  height: 24px;
  width: 30%;
}

/* --- Product Detail Animation States --- */
.product-gallery { opacity: 0; }
.product-info { opacity: 0; }

/* --- Cart Page --- */
.cart-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.cart-items-header {
  display: grid;
  grid-template-columns: 100px 1fr 130px 100px 40px;
  gap: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 130px 100px 40px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cart-item-price {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
}
.qty-btn:hover { border-color: var(--red-accent); }
.qty-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
}
.cart-item-total {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-remove:hover { color: var(--red-accent); }

/* Cart Summary */
.summary-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  position: sticky;
  top: 98px;
}
.summary-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.summary-total {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border-color);
}
.btn-checkout {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}
.btn-continue {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

/* Cart Empty State */
.cart-empty {
  text-align: center;
  padding: 120px 24px;
  max-width: 500px;
  margin: 0 auto;
}
.cart-empty-icon {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.cart-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* --- Checkout Form --- */
.checkout-form {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}
.checkout-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.form-group input {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: var(--red-accent);
}
#card-container {
  min-height: 50px;
  margin-bottom: 20px;
}
.btn-pay {
  width: 100%;
  margin-bottom: 12px;
  padding: 16px;
  font-size: 1rem;
}
.btn-pay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-back-to-cart {
  width: 100%;
}
.payment-status {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.payment-status.error {
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid var(--red-accent);
  color: var(--red-bright);
}
.payment-status.processing {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.checkout-success {
  text-align: center;
  padding: 80px 24px;
  max-width: 500px;
  margin: 0 auto;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkout-success svg {
  color: #22c55e;
  margin-bottom: 24px;
}
.checkout-success h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.checkout-success p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.checkout-success .btn {
  margin-top: 16px;
  min-width: 220px;
}

/* --- Animation Initial States --- */
.hero-subtitle { opacity: 0; }
.filter-bar { opacity: 0; }
.product-card { opacity: 0; transform: translateY(20px); }
.product-card.sold-out { opacity: 0; }
.cta h2, .cta p, .cta .btn { opacity: 0; }
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .filter-bar-inner {
    justify-content: flex-start;
  }

  /* Product detail — single column */
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 16px;
  }
  .product-skeleton {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-gallery {
    position: static;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .related-products {
    padding: 60px 24px;
  }
  .breadcrumb {
    padding-top: 90px;
  }

  /* Cart responsive */
  .cart-section {
    grid-template-columns: 1fr;
  }
  .cart-items-header { display: none; }
  .cart-item {
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 16px;
  }
  .cart-item-image { grid-row: 1 / 3; }
  .cart-item-details { grid-column: 2; }
  .cart-item-qty { grid-column: 2; }
  .cart-item-total { display: none; }
  .cart-item-remove {
    grid-row: 1;
    grid-column: 3;
  }
  .summary-inner { position: static; }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 140px 24px 60px; }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn {
    width: 100%;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-subtitle,
  .filter-bar,
  .product-card,
  .product-gallery,
  .product-info,
  .cart-item,
  .summary-inner,
  .checkout-form,
  .checkout-success,
  .cta h2, .cta p, .cta .btn,
  .stagger-text .char {
    opacity: 1 !important;
    transform: none !important;
  }
  .skeleton-image,
  .skeleton-line {
    animation: none;
    background: var(--bg-dark);
  }
  .product-card-image img {
    transition: none;
  }
  .product-card {
    transition: border-color 0.3s ease;
  }
}
