/** Shopify CDN: Minification failed

Line 1392:0 Unexpected "<"
Line 1411:0 Unexpected "<"

**/
/* ============================================
   ZonaVybez - Shopify Theme CSS
   Arizona Desert Streetwear
============================================ */

/* CSS Variables */
:root {
  --primary: hsl(15, 70%, 45%);
  --primary-foreground: hsl(45, 30%, 96%);
  --background: hsl(30, 15%, 95%);
  --foreground: hsl(30, 10%, 15%);
  --muted: hsl(30, 10%, 85%);
  --muted-foreground: hsl(30, 10%, 40%);
  --card: hsl(30, 20%, 98%);
  --border: hsl(30, 15%, 85%);
  --charcoal: hsl(30, 10%, 15%);
  --cream: hsl(45, 30%, 96%);
  --sunset-orange: hsl(25, 80%, 55%);
  --desert-gold: hsl(40, 70%, 50%);
  --terracotta: hsl(15, 70%, 45%);
  --sand: hsl(35, 40%, 80%);
  --gradient-sunset: linear-gradient(135deg, hsl(25, 80%, 55%) 0%, hsl(15, 70%, 45%) 50%, hsl(350, 60%, 40%) 100%);
  --gradient-desert: linear-gradient(to bottom, hsl(35, 40%, 80%) 0%, hsl(30, 15%, 95%) 100%);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px hsla(25, 80%, 55%, 0.4);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Typography */
.font-display {
  font-family: 'Bebas Neue', sans-serif;
}

.text-gradient {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-sunset);
  color: var(--cream);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.3);
  color: var(--cream);
}

.btn-outline:hover {
  background: rgba(245, 245, 245, 0.1);
  border-color: rgba(245, 245, 245, 0.5);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--primary);
}

.btn-dark:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-glow {
  box-shadow: var(--shadow-glow);
}

.hidden {
  display: none !important;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(245, 243, 240, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .navbar-inner {
    height: 5rem;
  }
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--foreground);
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-button {
  position: relative;
  padding: 0.5rem;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1rem;
  height: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-sunset);
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.6), transparent);
}

.hero-overlay-vertical {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent, rgba(26, 26, 26, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-text {
  max-width: 48rem;
}

.hero-subtitle {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 8rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(245, 245, 245, 0.8);
  max-width: 36rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(245, 245, 245, 0.3);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: rgba(245, 245, 245, 0.5);
  border-radius: 0.125rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   FEATURED PRODUCTS
============================================ */
.featured-products {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .featured-products {
    padding: 8rem 0;
  }
}

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

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-subtitle {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products-empty {
  text-align: center;
  padding: 5rem 0;
}

.products-empty-title {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.products-empty-text {
  color: var(--muted-foreground);
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.product-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-placeholder {
  width: 100%;
  height: 100%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder-text {
  color: var(--muted-foreground);
}

.quick-add {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
}

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

.quick-add .btn,
.quick-add-btn {
  width: 100%;
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-title a {
  color: var(--foreground);
  text-decoration: none;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.product-colors {
  display: flex;
  gap: 0.25rem;
}

.color-swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--terracotta);
}

.view-all-link .arrow {
  transition: transform 0.2s ease;
}

.view-all-link:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: 5rem 0;
  background: var(--charcoal);
  color: var(--cream);
}

@media (min-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.about-subtitle {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3.75rem;
  }
}

.about-text {
  color: rgba(245, 245, 245, 0.8);
}

.about-text p {
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--sunset-orange);
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 245, 0.6);
}

.about-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-sunset);
  opacity: 0.2;
  filter: blur(48px);
  border-radius: var(--radius);
}

.visual-box {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, var(--charcoal), rgba(196, 92, 38, 0.2), rgba(230, 140, 60, 0.3));
  border-radius: var(--radius);
  border: 1px solid rgba(245, 245, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-content {
  text-align: center;
}

.visual-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(245, 245, 245, 0.1);
}

@media (min-width: 768px) {
  .visual-initials {
    font-size: 8rem;
  }
}

.visual-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: rgba(245, 245, 245, 0.4);
  letter-spacing: 0.3em;
  margin-top: 1rem;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter {
  padding: 5rem 0;
  background: var(--gradient-desert);
}

@media (min-width: 768px) {
  .newsletter {
    padding: 6rem 0;
  }
}

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

.newsletter-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: 3rem;
  }
}

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

.newsletter-form-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form-inner {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
}

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

.newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--primary);
  animation: scale-in 0.3s ease;
}

.newsletter-success span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 3rem 0;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-tagline {
  color: rgba(245, 245, 245, 0.6);
  margin-top: 1rem;
  max-width: 24rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(245, 245, 245, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.footer-list li {
  margin-bottom: 0.5rem;
  color: rgba(245, 245, 245, 0.6);
}

.footer-list a {
  color: rgba(245, 245, 245, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ============================================
   CART DRAWER
============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay:not(.hidden) {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 28rem;
  background: var(--background);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

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

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

.cart-drawer-title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--foreground);
}

.cart-drawer-description {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.5rem;
  min-height: 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  color: var(--muted-foreground);
  gap: 1rem;
}

.cart-empty-icon {
  opacity: 0.5;
}

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

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--muted);
  flex-shrink: 0;
}

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--foreground);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--background);
  cursor: pointer;
  transition: border-color 0.2s;
}

.qty-btn:hover {
  border-color: var(--primary);
}

.qty-value {
  width: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.cart-drawer-footer {
  flex-shrink: 0;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-label {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.cart-total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  text-align: center;
}

/* ============================================
   PRODUCT DETAIL
============================================ */
.product-detail {
  padding-top: 6rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--primary);
}

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

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted);
}

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

.product-detail-placeholder {
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-thumbnail {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}

.product-thumbnail.active {
  border-color: var(--primary);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-detail-title {
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .product-detail-title {
    font-size: 3rem;
  }
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.product-detail-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.product-option {
  margin-bottom: 0.5rem;
}

.product-option-label {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-value-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.option-value-btn:hover {
  border-color: var(--primary);
}

.option-value-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.product-add-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* ============================================
   TOAST NOTIFICATION
============================================ */
.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-1rem);
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-strong);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   ANIMATIONS
============================================ */
.animate-fade-up {
  animation: fade-up 0.6s ease forwards;
  opacity: 0;
}

.animate-fade-up:nth-child(1) { animation-delay: 0s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.3s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
<style>
  .product-main-image, #main-image-container {
    max-height: 500px !important;
    max-width: 500px !important;
    overflow: hidden !important;
  }
  #main-product-image, .product-detail-image {
    max-height: 500px !important;
    max-width: 500px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .product-gallery {
    max-height: 550px !important;
    overflow: hidden !important;
  }
</style>
