@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --primary: #111111;
  /* Deep Black */
  --secondary: #333333;
  /* Dark Grey */
  --accent: #bda773;
  /* Subtle Gold */
  --info: #888888;
  /* Grey */
  --bg-warm: #ffffff;
  /* Pure White */
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.98);
  --border-light: #ececec;

  --radius-toy: 0px;
  /* Sharp edges for architectural feel */
  --shadow-toy: 0 10px 30px rgba(0, 0, 0, 0.04);
  --transition-bouncy: all 0.4s ease;
}

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo,
.nav-btn,
.add-btn,
.special-deals-section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-warm);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}

.loader-rocket {
  font-size: 3rem;
  color: var(--primary);
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Navbar — Minimalist */
#mainNavbar {
  background: var(--glass) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light) !important;
  padding: 1rem 2rem !important;
  transition: var(--transition-bouncy);
  z-index: 2000;
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  color: var(--primary);
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  font-weight: 300;
  color: var(--text-muted);
}

.navbar .form-select,
.navbar .form-control {
  border-radius: 0;
  border: 1px solid var(--border-light);
  background: transparent;
  padding: 0.6rem 1rem;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-bouncy);
  box-shadow: none;
  color: var(--text-dark);
}

.navbar .form-select:focus,
.navbar .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
  outline: none;
}

#clearFiltersBtn {
  background: transparent !important;
  border: 1px solid var(--border-light) !important;
  color: var(--primary) !important;
  border-radius: 0 !important;
  width: 44px;
  height: 44px;
  box-shadow: none !important;
  transition: var(--transition-bouncy);
}

#clearFiltersBtn:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* Nav Actions */
.nav-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 0;
  font-size: 0.9rem;
  transition: var(--transition-bouncy);
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  background: transparent;
}

.nav-btn.primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.nav-btn.primary:hover {
  background: var(--white);
  color: var(--primary);
}

#cartCount {
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 5px;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 10%;
  position: relative;
  background: #fafafa;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 span {
  display: inline-block;
  color: var(--accent);
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.floating-toy {
  display: none !important;
  /* Hide playful elements */
}

/* Active Filters Section */
.active-filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 5%;
}

.active-filters-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}

.active-filters-label {
  font-weight: 400;
  color: var(--text-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-filters-chips {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-chip {
  background: #f5f5f5;
  padding: 0.4rem 1rem;
  border-radius: 0;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dark);
}

.chip-icon {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.filter-chip-remove {
  background: transparent;
  color: var(--text-dark);
  border: none;
  cursor: pointer;
  transition: var(--transition-bouncy);
}

.filter-chip-remove:hover {
  color: var(--primary);
}

.active-filters-clear {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  font-weight: 400;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-bouncy);
  text-transform: uppercase;
}

.active-filters-clear:hover {
  background: var(--primary);
  color: var(--white);
}

/* Offers Carousel — Architectural Style */
.offers-carousel-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  padding: 1.5rem 1rem;
}

.offers-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offers-carousel {
  position: relative;
}

.offers-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.offers-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offer-slide {
  min-width: 100%;
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  aspect-ratio: 21 / 6;
  min-height: 200px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.offer-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.offer-slide-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-slide-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-slide-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-slide-sub {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 1px;
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-slide-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: var(--transition-bouncy);
  background: transparent;
  color: var(--white);
}

.offer-slide:hover .offer-slide-cta {
  background: var(--white);
  color: var(--primary);
}

.offers-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition-bouncy);
  border-radius: 50%;
  opacity: 0.7;
}

.offers-carousel-arrow:hover {
  background: var(--white);
  color: var(--primary);
  opacity: 1;
  border-color: var(--white);
}

.offers-carousel-arrow--prev {
  left: 30px;
}

.offers-carousel-arrow--next {
  right: 30px;
}

.offers-carousel-wrap {
  position: relative;
}

.offers-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 0;
  z-index: 10;
}

.offers-carousel-dot {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s;
}

.offers-carousel-dot.is-active {
  background: var(--white);
  height: 2px;
}

/* Product Cards */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 5%;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4rem 2rem;
  padding: 20px 0;
}

.toy-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.toy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.toy-img-wrapper {
  background: #f8fafc;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}

.toy-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.toy-card:hover .toy-img {
  transform: scale(1.08);
}

.toy-badge {
  position: absolute;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
}

.toy-badge--discount {
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.toy-badge--pinned {
  top: 12px;
  right: 12px;
  background: #f59e0b;
  color: #fff;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.toy-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.toy-meta {
  margin-bottom: 0.5rem;
}

.toy-stock-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-in { color: #10b981; }
.stock-low { color: #f59e0b; }
.stock-out { color: #ef4444; }

.toy-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.toy-price-row {
  margin-top: auto;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.toy-price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.toy-price-old {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.toy-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-add-basket {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-add-basket:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-add-basket:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.btn-share-icon {
  width: 44px;
  flex: none;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-share-icon:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Special Deals */
.special-deals-section {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 6rem;
  box-shadow: none;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
}

/* Modals Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  width: 95%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: 0;
}

.modal-content--wide {
  max-width: 800px;
}

.modal-content--toy-detail {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
  z-index: 20;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Toy Details Modal Specifics */
/* Toy Details Modal — full-screen layout */
.toy-details-layout {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.toy-detail-close-btn {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  transition: background 0.25s, color 0.25s;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

.toy-detail-close-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.toy-details-visuals {
  flex: 1;
  min-width: 0;
  max-width: 50%;
  position: relative;
  background: #fdfdfd;
  padding: 3rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  overflow-y: auto;
}

/* Slider arrow buttons on the detail page */
.toy-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}

.toy-slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.toy-slider-arrow--prev { left: 10px; }
.toy-slider-arrow--next { right: 10px; }

.toy-slider-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.toy-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toy-slider img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: contain;
  max-height: 450px;
}

.toy-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.toy-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.6;
}

.toy-thumb.active {
  border-color: var(--primary);
  opacity: 1;
}

.toy-details-info {
  flex: 1;
  min-width: 0;
  max-width: 50%;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow-y: auto;
}

.detail-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-price-row {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-price-row del {
  color: var(--text-muted);
  font-size: 1rem;
}

.detail-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.detail-stock {
  font-size: 0.85rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--info);
}

.detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.detail-add-btn {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.detail-add-btn:hover {
  background: transparent;
  color: var(--primary);
}

.detail-share-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.detail-share-btn:hover {
  background: #f5f5f5;
  border-color: #e0e0e0;
}

/* Cart Drawer Panel */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}

.cart-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(450px, 100%);
  height: 100vh;
  background: var(--white);
  z-index: 3000;
  transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-light);
}

.cart-drawer-panel.is-open {
  right: 0;
}

.cart-drawer-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.cart-drawer-title {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cart-drawer-title span {
  display: none;
  /* hide emoji */
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
}

.cart-drawer-close:hover {
  color: var(--primary);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.cart-items-list {
  flex: 1;
  margin-bottom: 2rem;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.cart-item-row {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

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

.cart-item-thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #f9f9f9;
  border: 1px solid var(--border-light);
  padding: 5px;
}

.cart-item-meta {
  flex: 1;
}

.cart-item-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-light);
  display: inline-flex;
}

.cart-qty-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.cart-qty-val {
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--info);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.cart-remove-btn:hover {
  color: #d63031;
}

.cart-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  margin-top: auto;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}

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

.address-details input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.address-details input:focus {
  outline: none;
  border-color: var(--primary);
}

.purchase-mode {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mode-option {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--border-light);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mode-option i {
  font-size: 1.2rem;
}

.mode-option:hover {
  border-color: var(--secondary);
  color: var(--text-dark);
}

.mode-option.active {
  border-color: var(--primary);
  background: #fdfdfd;
  color: var(--primary);
}

.cart-checkout-btn {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  font-weight: 400;
  border: none;
}

.cart-checkout-btn i {
  font-size: 1.1rem;
}

.cart-checkout-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(350px, 90%);
  height: 100vh;
  background: var(--white);
  z-index: 2100;
  transition: var(--transition-bouncy);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-light);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  background: #fafafa;
}

#closeMobileMenu {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-light) !important;
  color: var(--text-dark) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-bouncy);
}

#closeMobileMenu:hover {
  background: #f0f0f0;
}

.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 2.5rem 1.5rem;
}

.mobile-filters select,
.mobile-menu-content .search-input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0;
  border: 1px solid var(--border-light);
  background: transparent;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.3s;
  font-family: 'Outfit', sans-serif;
}

.mobile-filters select:focus,
.mobile-menu-content .search-input:focus {
  outline: none;
  border-color: var(--primary);
}

#mobileClearFiltersBtn {
  border-radius: 0;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  border: 1px solid #d63031;
  color: #d63031;
  background: transparent;
  transition: all 0.3s;
}

#mobileClearFiltersBtn:hover {
  background: #d63031;
  color: var(--white);
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1500;
  text-decoration: none;
  transition: var(--transition-bouncy);
  border: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* User Profiles */
.profile-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.profile-info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
}

.profile-info-list strong {
  font-weight: 500;
}

.profile-actions-row {
  display: flex;
  gap: 1rem;
}

.input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.input-group input,
.input-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-light);
  font-family: 'Outfit';
  border-radius: 0;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Orders List */
.orders-view {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-track-card {
  border: 1px solid var(--border-light);
  padding: 2rem;
  position: relative;
  background: #fafafa;
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.order-card-id {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.order-card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.order-mode-pill {
  background: var(--border-light);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 1rem;
}

.order-card-total {
  font-weight: 500;
  font-size: 1.1rem;
}

.order-items-block {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.order-item-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 2px;
}

.order-item-text {
  font-size: 0.9rem;
}

.status-timeline {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 2rem;
  position: relative;
}

.status-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.status-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.status-step-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--border-light);
  transition: all 0.3s;
}

.status-step.active .status-step-marker {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.status-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.status-step.active .status-label {
  color: var(--text-dark);
  font-weight: 500;
}

.order-latest-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 1rem;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.order-cancel-btn {
  background: transparent;
  border: 1px solid #d63031;
  color: #d63031;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.order-cancel-btn:hover {
  background: #d63031;
  color: var(--white);
}

/* Skeletons */
.skeleton-card {
  background: var(--white);
  padding: 0;
  border: none;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-img {
  height: 320px;
  width: 100%;
  margin-bottom: 2rem;
}

.skeleton-title {
  height: 1.5rem;
  width: 100%;
  margin: 0 1rem 0.5rem;
}

.skeleton-text {
  height: 1rem;
  width: 60%;
  margin: 0 1rem 1.5rem;
}

.skeleton-price {
  height: 1.5rem;
  width: 40%;
  margin: auto auto 1.5rem;
}

.skeleton-btn {
  height: 3rem;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Utilities */
.is-hidden {
  display: none !important;
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .navbar .d-none {
    display: none !important;
  }

  nav .nav-actions {
    margin-left: auto;
  }

  .toy-details-layout {
    flex-direction: column;
    overflow-y: auto;
  }

  .toy-details-visuals,
  .toy-details-info {
    min-width: 100%;
    overflow-y: visible;
  }

  .toy-details-visuals {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0;
  }

  .toy-details-info {
    padding: 1rem;
  }

  .toy-detail-close-btn span {
    display: none;
  }
  
  .toy-detail-close-btn {
    padding: 0.6rem 0.8rem;
    top: 0.8rem;
    right: 0.8rem;
  }

  .offer-slide {
    padding: 1rem;
    min-height: auto;
    aspect-ratio: 12 / 5;
  }

  .offer-slide-title {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .offer-slide-kicker {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
  }

  .offer-slide-sub {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .offer-slide-cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
  }

  .whatsapp-float {
    bottom: 120px;
    right: 20px;
  }

  .toy-related-strip {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }

  .toy-related-strip-header,
  .toy-related-scroll-wrap {
    padding-inline: 1rem;
  }
}

/* =========================================================
   ★  FEEDBACK MODAL
   ========================================================= */
.modal-content--feedback {
  max-width: 560px;
  padding: 0;
  border-radius: 2px;
  overflow-y: auto;
}

.feedback-modal-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  color: #fff;
}

.feedback-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: starPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes starPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0);      opacity: 1; }
}

.feedback-modal-header h2 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #fff;
}

.feedback-modal-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* --- form body --- */
#feedbackForm {
  padding: 2rem 2.5rem 2.5rem;
}

.feedback-stars-section {
  text-align: center;
  margin-bottom: 1.8rem;
}

.feedback-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.8rem;
}

.feedback-required {
  color: #e74c3c;
  margin-left: 2px;
}

.feedback-optional {
  color: var(--text-muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

/* --- Stars --- */
.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.fb-star {
  font-size: 2.6rem;
  background: none;
  border: none;
  color: #ddd;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
  line-height: 1;
  padding: 0 2px;
  -webkit-text-stroke: 1px #ccc;
}

.fb-star:hover,
.fb-star.hovered,
.fb-star.selected {
  color: #f59e0b;
  -webkit-text-stroke: 1px #e0a000;
  transform: scale(1.2);
}

.fb-star.selected {
  animation: starSelect 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes starSelect {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1.2); }
}

.feedback-star-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  min-height: 1.3em;
  transition: color 0.2s;
}

/* --- textarea --- */
.feedback-field {
  margin-bottom: 1.6rem;
}

.feedback-textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  resize: vertical;
  transition: border-color 0.25s;
  outline: none;
  background: #fafafa;
}

.feedback-textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.feedback-char-count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* --- photo upload row --- */
.feedback-photo-row {
  display: flex;
  gap: 1rem;
}

.feedback-photo-box {
  flex: 1;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
  background: #fafafa;
  border-radius: 2px;
}

.feedback-photo-box:hover {
  border-color: var(--primary);
  background: #f5f5f5;
}

.feedback-photo-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.feedback-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: opacity 0.2s;
}

.feedback-photo-placeholder i {
  font-size: 1.8rem;
  opacity: 0.5;
}

.feedback-photo-placeholder span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.feedback-photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feedback-photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.feedback-photo-remove:hover {
  background: #e74c3c;
}

/* --- submit button --- */
.feedback-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 0;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.feedback-submit-btn:hover:not(:disabled) {
  background: #fff;
  color: var(--primary);
}

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

/* --- leave-feedback button inside order cards --- */
.order-feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: #7a5e2e;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 0;
  font-weight: 500;
}

.order-feedback-btn:hover {
  background: var(--accent);
  color: #fff;
}

.order-feedback-done {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =========================================================
   ★  PRODUCT DETAIL — REVIEWS SECTION
   ========================================================= */
.detail-reviews-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.detail-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-reviews-title {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-reviews-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f5f5f5;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.detail-reviews-empty {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 1rem 0;
}

/* Individual review card */
.review-card {
  background: #fafafa;
  border: 1px solid var(--border-light);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  border-radius: 2px;
  animation: reviewFadeIn 0.35s ease;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.review-card-stars .r-star {
  color: #f59e0b;
  font-size: 1rem;
}

.review-card-stars .r-star.empty {
  color: #ddd;
}

.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.review-card-name {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.review-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.review-card-photos {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.review-card-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.review-card-photo:hover { opacity: 0.8; }

.review-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

/* View all reviews toggle button */
.detail-view-all-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.5rem;
  border-radius: 0;
}

.detail-view-all-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.detail-view-all-btn.is-open i {
  transform: rotate(180deg);
}

.detail-view-all-btn i {
  transition: transform 0.3s;
}

/* =========================================================
   ★  RELATED PRODUCTS HORIZONTAL STRIP
   ========================================================= */
.toy-related-strip {
  border-top: 1px solid var(--border-light);
  background: #fafafa;
  padding: 2rem 0 1.5rem;
  margin-top: 2.5rem;
  margin-left: -3.5rem;
  margin-right: -3.5rem;
  margin-bottom: -3rem;
}

.toy-related-strip-header {
  padding: 0 3.5rem 1.2rem;
}

.toy-related-strip-header h3 {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.toy-related-scroll-wrap {
  overflow-x: auto;
  padding: 0.4rem 3.5rem 0.8rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.toy-related-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}

.toy-related-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 2px;
}

.toy-related-scroll {
  display: flex;
  gap: 1.2rem;
  width: max-content;
}

.related-card {
  width: 160px;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 2px;
  overflow: hidden;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.related-card-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  background: #f8f8f8;
  padding: 0.5rem;
  display: block;
}

.related-card-body {
  padding: 0.7rem 0.8rem;
}

.related-card-name {
  font-size: 0.78rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.related-card-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Mobile responsiveness for full-screen detail */
@media (max-width: 768px) {
  .toy-details-layout {
    flex-direction: column;
    overflow-y: auto;
  }

  .toy-details-visuals,
  .toy-details-info {
    max-width: 100%;
    min-width: 0;
    overflow-y: visible;
  }

  .toy-details-visuals {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 1.5rem;
    justify-content: flex-start;
    min-height: auto;
  }

  .toy-details-info {
    padding: 2rem 1.5rem;
    overflow-y: visible;
  }

  .toy-detail-close-btn span {
    display: none;
  }

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

  .toy-related-strip {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-bottom: -2rem;
  }

  .toy-related-strip-header,
  .toy-related-scroll-wrap {
    padding-inline: 1.5rem;
  }
}

@media (max-width: 575px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 10px;
  }
  
  .toy-card {
    border-radius: 12px;
  }

  .toy-img-wrapper {
    height: 160px;
  }

  .toy-content {
    padding: 0.75rem;
  }

  .toy-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    top: 8px;
  }

  .toy-badge--discount { left: 8px; }
  .toy-badge--pinned { right: 8px; }

  .toy-stock-indicator {
    font-size: 0.65rem;
  }

  .toy-title {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
  }

  .toy-price-row {
    margin-bottom: 0.75rem;
  }

  .toy-price-current {
    font-size: 1rem;
  }

  .toy-price-old {
    font-size: 0.75rem;
  }

  .btn-add-basket {
    padding: 0.5rem;
    font-size: 0.75rem;
    border-radius: 8px;
    gap: 0.25rem;
  }

  .btn-share-icon {
    width: 34px;
    border-radius: 8px;
    font-size: 0.8rem;
  }
}