/* styles.css */

/* Brand styling */
.brand {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Product card image fit */
.product-card-img {
  width:100%;
  height:200px;
  object-fit:cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

/* Out of stock overlay */
.out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,0,0,0.85);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Align add to cart controls */
.add-cart-controls {
  display:flex;
  gap:6px;
  align-items:center;
}

/* small tweaks */
/* Variant cards */
.variant-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}
.variant-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.variant-active {
    background: #0d6efd;
    color: #fff !important;
    border: 1px solid #0d6efd;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(13,110,253,0.3);
}
#variantSwitcher img {
    transition: transform 0.2s ease;
}
#variantSwitcher .variant-card:hover img,
#variantSwitcher .variant-active img {
    transform: scale(1.05);
}
