/* ═══════════════════════════════════════════════════
   ALEJAM RECORDS – Store Styles
   Dark, editorial merch store aesthetic
   ═══════════════════════════════════════════════════ */

/* ─── Store Hero ────────────────────────────────── */
.store-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}

.store-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.store-subtitle {
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Artist Banner Hero ────────────────────────── */
.store-artist-hero {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.store-artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(17, 17, 17, 1) 100%
  );
}

.store-artist-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.store-artist-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.store-artist-hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #f54;
}

/* ─── Artist Filter Bar ─────────────────────────── */
.artist-filter-bar {
  background: #0a0a0a;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
}

.artist-filter-scroll {
  display: flex;
  gap: 0.5rem;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
  flex-wrap: wrap;
}

.artist-filter-scroll::-webkit-scrollbar {
  height: 4px;
}

.artist-filter-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.artist-filter-scroll::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.artist-filter-btn {
  background: transparent;
  color: #666;
  border: 1px solid #333;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.artist-filter-btn:hover {
  color: #fff;
  border-color: #555;
}

.artist-filter-btn.active {
  background: #f54;
  color: #fff;
  border-color: #f54;
}

/* No Products State */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.no-products p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.view-all-link {
  display: inline-block;
  color: #f54;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid #f54;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: #f54;
  color: #fff;
}

/* ─── Filters ───────────────────────────────────── */
.store-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  background-color: #111;
  border-bottom: 1px solid #222;
}

.filter-btn {
  background: transparent;
  color: #888;
  border: 1px solid #333;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: #fff;
  border-color: #666;
}

.filter-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ─── Products Grid ─────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Product Card ──────────────────────────────── */
.product-card {
  background: #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* ─── Product Carousel ──────────────────────────── */
.product-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  touch-action: pan-y pinch-zoom;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  height: 100%;
  overflow: hidden;
}

.carousel-slide .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

/* Desktop: Hover to reveal second image */
@media (min-width: 769px) {
  .product-carousel.has-multiple .carousel-track {
    display: block;
    position: relative;
  }
  
  .product-carousel.has-multiple .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .product-carousel.has-multiple .carousel-slide:first-child {
    position: relative;
    opacity: 1;
  }
  
  .product-carousel.has-multiple .carousel-slide:nth-child(2) {
    opacity: 0;
  }
  
  .product-card:hover .product-carousel.has-multiple .carousel-slide:first-child {
    opacity: 0;
  }
  
  .product-card:hover .product-carousel.has-multiple .carousel-slide:nth-child(2) {
    opacity: 1;
  }
  
  /* Hide dots on desktop */
  .product-carousel .carousel-dots {
    display: none !important;
  }
  
  /* Quick Add Overlay */
  .quick-add-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 2.5rem 1rem 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
  }
  
  .product-card:hover .quick-add-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  .quick-add-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }
  
  .quick-size-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .quick-size-btn:hover:not(:disabled) {
    background: #f54;
    border-color: #f54;
    transform: scale(1.05);
  }
  
  .quick-size-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
  }
  
  .quick-size-btn.added {
    background: #2a2 !important;
    border-color: #2a2 !important;
  }
  
  .quick-size-btn.quick-add-single {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .quick-add-overlay {
    display: block;
  }
}

/* Mobile: Hide quick-add overlay */
@media (max-width: 768px) {
  .quick-add-overlay {
    display: none !important;
  }
}

/* Mobile: Keep carousel behavior */
.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.product-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 10;
}

.product-badge {
  background: #f54;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: center;
}

.product-badge.badge-limited {
  background: linear-gradient(135deg, #d4af37, #f9d923);
  color: #1a1a1a;
}

.product-badge.badge-low-stock {
  background: #ff6b35;
  color: #fff;
}

.product-info {
  padding: 1.25rem;
}

.product-artist {
  display: block;
  color: #f54;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-artist:hover {
  color: #ff7766;
  text-decoration: underline;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-name a {
  color: #fff;
  text-decoration: none;
}

.product-name a:hover {
  color: #f54;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.variant-select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  border-radius: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
}

.variant-select:focus {
  outline: none;
  border-color: #f54;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.75rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
  background: #f54;
  color: #fff;
}

.add-to-cart-btn.added {
  background: #1db954;
  color: #fff;
}

.add-to-cart-btn.sold-out-btn {
  background: #333;
  color: #888;
  cursor: not-allowed;
}

.add-to-cart-btn.sold-out-btn:hover {
  background: #333;
  color: #888;
}

.sold-out-badge {
  background: #333 !important;
  color: #aaa !important;
}

.product-card.sold-out .product-image {
  opacity: 0.5;
}

.add-to-cart-btn.large {
  padding: 1rem;
  font-size: 1rem;
}

/* ─── Cart Floating Button ──────────────────────── */
.cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f54;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 85, 68, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 999;
}

.cart-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 85, 68, 0.6);
}

.cart-fab svg {
  width: 26px;
  height: 26px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Cart Drawer ───────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #0d0d0d;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid #222;
}

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

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

.cart-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.cart-close:hover {
  color: #fff;
}

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

.cart-empty {
  color: #555;
  text-align: center;
  padding: 3rem 0;
  font-style: italic;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 0.4rem;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.cart-item-qty button {
  background: #222;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty span {
  font-size: 0.85rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  align-self: flex-start;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #f54;
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #222;
}

/* Shipping Section */
.cart-shipping-section {
  margin-bottom: 1rem;
}

.cart-shipping-section label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.cart-shipping-section select {
  width: 100%;
  padding: 0.75rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cart-shipping-section select:focus {
  outline: none;
  border-color: #f54;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shipping-prompt,
.shipping-loading,
.shipping-error {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  padding: 0.5rem;
}

.shipping-error {
  color: #f54;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.shipping-option:hover {
  border-color: #444;
}

.shipping-option input[type="radio"] {
  accent-color: #f54;
}

.shipping-option input[type="radio"]:checked + .shipping-name {
  color: #fff;
}

.shipping-name {
  flex: 1;
  font-size: 0.9rem;
  color: #ccc;
}

.shipping-price {
  font-weight: 600;
  color: #fff;
}

.shipping-delivery {
  font-size: 0.75rem;
  color: #666;
}

.customs-warning {
  font-size: 0.75rem;
  color: #f90;
  background: rgba(255, 153, 0, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.3rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Cart Totals */
.cart-totals {
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #222;
}

.cart-subtotal,
.cart-shipping-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #f54;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.25s ease;
}

.checkout-btn:hover {
  background: #e04030;
}

.checkout-btn:disabled {
  background: #333;
  cursor: not-allowed;
}

/* ─── Product Detail Page ───────────────────────── */
.product-detail-page {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.breadcrumb {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.product-detail-gallery {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.product-detail-image {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  aspect-ratio: 1;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 0.4rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: #f54;
}

.product-detail-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-detail-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.product-detail-badges .product-badge {
  font-size: 0.7rem;
  padding: 0.35rem 0.9rem;
}

.product-detail-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.variant-selector {
  margin-bottom: 1.5rem;
}

.variant-selector label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.variant-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 0.6rem 1.25rem;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  border-radius: 0.4rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.variant-btn:hover {
  border-color: #fff;
}

.variant-btn.selected {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.variant-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.quantity-selector {
  margin-bottom: 1.5rem;
}

.quantity-selector label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: #222;
  border: 1px solid #333;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #333;
}

.qty-btn:first-child {
  border-radius: 0.4rem 0 0 0.4rem;
}

.qty-btn:last-child {
  border-radius: 0 0.4rem 0.4rem 0;
}

#qtyInput {
  width: 50px;
  height: 40px;
  text-align: center;
  background: #1a1a1a;
  border: 1px solid #333;
  border-left: none;
  border-right: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  -moz-appearance: textfield;
}

#qtyInput::-webkit-inner-spin-button,
#qtyInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.product-description {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
  color: #aaa;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ─── Success Page ──────────────────────────────── */
.success-container {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.success-container h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.success-sub {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-continue,
.btn-home {
  padding: 0.75rem 2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.25s;
}

.btn-continue {
  background: #f54;
  color: #fff;
}

.btn-continue:hover {
  background: #e04030;
}

.btn-home {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
}

.btn-home:hover {
  border-color: #fff;
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .store-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .store-artist-hero {
    height: 220px;
  }

  .store-artist-hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }

  .store-artist-hero-content p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .artist-filter-scroll {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

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

  .product-detail-gallery {
    position: static;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 480px) {
  .store-artist-hero {
    height: 180px;
  }

  .store-artist-hero-content h1 {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}