/* =================================================================
   JUDAH PRAISE - MERCH SHOP STYLES
   Modern, Dark, Premium Boutique Aesthetic - FULLY RESPONSIVE
   ================================================================= */

:root {
  --merch-bg: #0a0a0b;
  --merch-card: #151518;
  --merch-accent: #8b5cf6;
  --merch-gold: #fbbf24;
  --merch-text: #f8fafc;
  --merch-text-dim: #94a3b8;
  --merch-white: #ffffff;
  --merch-black: #000000;
  --merch-blue: #2563eb;
  --merch-pink: #f472b6;
  --merch-grey: #64748b;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body.merch-theme {
  background-color: var(--merch-bg);
  color: var(--merch-text);
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.merch-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.95),
    rgba(10, 10, 11, 0.7)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.merch-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.merch-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--merch-text);
  transition: transform 0.3s ease;
}

.merch-logo:hover {
  transform: translateX(-3px);
}

.merch-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid var(--merch-gold);
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.collection {
  font-size: 0.65rem;
  color: var(--merch-gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
}

.exit-link {
  color: var(--merch-text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.exit-link:hover {
  color: var(--merch-text);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   HERO GALLERY SECTION
   ============================================ */
.merch-hero {
  padding-top: 100px;
  padding-bottom: 40px;
  background: var(--merch-bg);
  min-height: auto;
}

.hero-showcase {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #1a1a1b 0%, #050505 100%);
  border-radius: 32px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.gallery-viewport {
  width: 100%;
  height: 100%;
}

.gallery-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s var(--transition-smooth);
}

.oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 5px;
  z-index: 10;
  backdrop-filter: grayscale(1);
}

.gallery-slide[data-active="true"] .slide-image {
  transform: scale(1.02);
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--merch-gold);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.nav-btn.prev {
  left: 30px;
}

.nav-btn.next {
  right: 30px;
}

/* Hero Info */
.hero-info {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.selection-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.color-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--merch-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  transition: color 0.3s ease;
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  color: white;
  opacity: 0.95;
  letter-spacing: -1px;
}

/* ============================================
   SELECTION SECTION
   ============================================ */
.merch-selectors {
  padding: 60px 0 120px;
  background: var(--merch-bg);
  position: relative;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--merch-accent);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}

.size-section,
.quantity-section,
.accessory-section {
  margin-bottom: 50px;
}

/* Quantity Picker */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--merch-card);
  padding: 12px 24px;
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--merch-bg);
  color: var(--merch-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  font-size: 0.9rem;
}

.qty-btn:hover {
  border-color: var(--merch-accent);
  transform: scale(1.1);
  background: rgba(139, 92, 246, 0.1);
}

.qty-btn:active {
  transform: scale(0.98);
}

.qty-number {
  font-size: 1.5rem;
  font-weight: 800;
  min-width: 40px;
  text-align: center;
}

/* Size Picker */
.size-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.size-btn {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--merch-card);
  color: var(--merch-text);
  border-radius: 50%;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.size-btn:hover {
  border-color: var(--merch-accent);
  transform: scale(1.08);
  background: rgba(139, 92, 246, 0.1);
}

.size-btn.active {
  background: var(--merch-accent);
  border-color: var(--merch-accent);
  box-shadow:
    0 0 25px rgba(139, 92, 246, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* Accessories */
.accessory-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.accessory-card {
  background: var(--merch-card);
  border-radius: 20px;
  padding: 28px 24px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.accessory-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.accessory-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  background: #1c1c1f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.accessory-card:hover::before {
  opacity: 1;
}

.accessory-card.active {
  border-color: var(--merch-gold);
  background: #1c1c1f;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(251, 191, 36, 0.15);
}

.accessory-card.active::after {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--merch-gold);
  font-size: 1.3rem;
}

.accessory-info {
  position: relative;
  z-index: 1;
}

.accessory-info h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.accessory-info p {
  color: var(--merch-text-dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.accessory-price {
  font-weight: 700;
  color: var(--merch-gold);
  font-size: 1.3rem;
}

.oos-card {
  opacity: 0.6;
  filter: grayscale(0.8);
  cursor: not-allowed !important;
}

.oos-tag {
  background: var(--merch-gold);
  color: black;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */
.merch-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 0 20px;
}

.primary-cta {
  background: var(--merch-gold);
  color: var(--merch-black);
  border: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  justify-content: center;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(251, 191, 36, 0.3);
}

.primary-cta:active {
  transform: translateY(0);
}

.primary-cta.large {
  padding: 18px 50px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 400px;
}

.outline-cta {
  background: transparent;
  color: var(--merch-text-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.outline-cta:hover {
  color: var(--merch-text);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s var(--transition-smooth);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.fixed-bottom-bar.show {
  transform: translateY(0);
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.total-display {
  display: flex;
  flex-direction: column;
}

.total-label {
  font-size: 0.75rem;
  color: var(--merch-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--merch-text);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-main {
  padding: 100px 0 60px;
  min-height: 100vh;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.checkout-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.checkout-subtitle {
  color: var(--merch-text-dim);
  margin: 0 0 35px 0;
  font-size: 0.95rem;
}

.premium-form {
  background: var(--merch-card);
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--merch-text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  background: rgba(21, 21, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--merch-text);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--merch-accent);
  background: rgba(21, 21, 24, 1);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder {
  color: var(--merch-text-dim);
  opacity: 0.5;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whatsapp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--merch-text-dim);
}

.whatsapp-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--merch-accent);
}

.whatsapp-check label {
  margin: 0;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.payment-notices {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--merch-text-dim);
  font-size: 0.85rem;
}

.notice-item i {
  color: #10b981;
  font-size: 1rem;
}

.pay-btn {
  width: 100%;
  margin-top: 30px;
  padding: 18px;
  font-size: 1.05rem;
}

/* Summary Card */
.summary-card {
  background: var(--merch-card);
  padding: 35px;
  border-radius: 24px;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-card h3 {
  margin: 0 0 24px 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--merch-accent);
}

.summary-items {
  display: grid;
  gap: 18px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.item-name {
  display: block;
  font-weight: 600;
}

.item-meta {
  font-size: 0.75rem;
  color: var(--merch-text-dim);
}

.item-price {
  font-weight: 700;
  color: var(--merch-gold);
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 800;
}

.support-box {
  margin-top: 30px;
  padding: 18px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  gap: 14px;
  align-items: center;
}

.support-box i {
  font-size: 1.5rem;
  color: var(--merch-accent);
  flex-shrink: 0;
}

.support-box p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-content-card {
  background: var(--merch-card);
  max-width: 500px;
  width: 100%;
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.success-icon-animation {
  font-size: 4.5rem;
  color: #10b981;
  margin-bottom: 24px;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-content-card h2 {
  margin: 0 0 12px 0;
  font-size: 1.8rem;
}

.success-content-card p {
  color: var(--merch-text-dim);
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .merch-container {
    padding: 0 25px;
  }

  .hero-showcase {
    max-width: 700px;
  }

  .checkout-grid {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .merch-nav {
    padding: 12px 0;
  }

  .merch-logo img {
    height: 36px;
    width: 36px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .collection {
    font-size: 0.6rem;
  }

  .exit-link {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .merch-hero {
    padding-top: 85px;
    padding-bottom: 30px;
  }

  .hero-showcase {
    border-radius: 24px;
    aspect-ratio: 1/1;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .nav-btn.prev {
    left: 15px;
  }

  .nav-btn.next {
    right: 15px;
  }

  .color-label {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .merch-selectors {
    padding: 50px 0 100px;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 20px;
  }

  .size-section,
  .accessory-section {
    margin-bottom: 40px;
  }

  .size-btn {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
  }

  .accessory-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .order-summary-container {
    order: -1;
  }

  .summary-card {
    position: relative;
    top: 0;
  }

  .checkout-title {
    font-size: 1.9rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .premium-form {
    padding: 28px 24px;
  }

  .summary-card {
    padding: 28px 24px;
  }

  .total-amount {
    font-size: 1.5rem;
  }

  .checkout-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .primary-cta {
    width: 100%;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .merch-container {
    padding: 0 16px;
  }

  .merch-logo {
    gap: 10px;
  }

  .merch-logo img {
    height: 32px;
    width: 32px;
  }

  .brand {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .collection {
    display: none;
  }

  .exit-link {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .merch-hero {
    padding-top: 75px;
    padding-bottom: 25px;
  }

  .hero-showcase {
    border-radius: 20px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .nav-btn.prev {
    left: 10px;
  }

  .nav-btn.next {
    right: 10px;
  }

  .slide-image {
    max-width: 100%;
    max-height: 100%;
  }

  .hero-info {
    margin-top: 30px;
  }

  .color-label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .merch-selectors {
    padding: 40px 0 90px;
  }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .size-row {
    gap: 10px;
  }

  .size-btn {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
  }

  .accessory-container {
    padding: 0 16px;
  }

  .accessory-card {
    padding: 24px 20px;
  }

  .accessory-info h3 {
    font-size: 1rem;
  }

  .accessory-price {
    font-size: 1.2rem;
  }

  .primary-cta.large {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .outline-cta {
    font-size: 0.8rem;
    padding: 10px 24px;
  }

  .fixed-bottom-bar {
    padding: 16px 0;
  }

  .total-label {
    font-size: 0.7rem;
  }

  .total-amount {
    font-size: 1.4rem;
  }

  .checkout-main {
    padding: 85px 0 40px;
  }

  .checkout-title {
    font-size: 1.6rem;
  }

  .checkout-subtitle {
    font-size: 0.85rem;
  }

  .premium-form,
  .summary-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .form-group input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .summary-total-row {
    font-size: 1.2rem;
  }

  .success-content-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .success-icon-animation {
    font-size: 3.5rem;
  }

  .success-content-card h2 {
    font-size: 1.5rem;
  }

  .success-content-card p {
    font-size: 0.9rem;
  }

  .success-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-main-title {
    font-size: 1.5rem;
  }

  .size-btn {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }

  .checkout-title {
    font-size: 1.4rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-btn:hover,
  .size-btn:hover,
  .accessory-card:hover,
  .primary-cta:hover,
  .outline-cta:hover,
  .exit-link:hover {
    transform: none;
  }

  .nav-btn:active {
    transform: translateY(-50%) scale(0.99);
  }

  .size-btn:active,
  .primary-cta:active,
  .outline-cta:active {
    transform: scale(0.99);
  }

  .accessory-card:active {
    transform: translateY(-1.5px);
  }
}
