/* ========================================
   SKINZ — Component Styles
   ======================================== */

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider-section {
  position: relative;
  background: #0D0D0D;
}

/* Swiper container fills viewport height */
.hero-swiper {
  width: 100%;
  height: calc(100svh - 64px);
  min-height: 520px;
  max-height: 860px;
}

/* Each slide = full background image */
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

/* Strong dark overlay covering most of image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}

/* Content inside each slide */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 3rem 0;
  max-width: 580px;
  /* Always white text regardless of theme */
  --color-text: #ffffff;
  --color-text-muted: rgba(255,255,255,0.72);
  --color-text-faint: rgba(255,255,255,0.38);
  --color-border: rgba(255,255,255,0.14);
  color: #ffffff;
}

/* Container needs height 100% to allow vertical centering */
.hero-swiper .container-xl {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-base);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 2rem; height: 2px; background: var(--color-accent);
  flex-shrink: 0;
}

/* Hero title — always white */
.hero-title {
  font-family: var(--font-base);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--color-accent); }

/* Hero description — always readable */
.hero-desc {
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Swiper navigation buttons */
.hero-swiper-prev,
.hero-swiper-next {
  color: rgba(255,255,255,0.85) !important;
  background: rgba(13,10,7,0.45);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--color-accent);
  color: #fff !important;
}
.hero-swiper-prev::after,
.hero-swiper-next::after { font-size: 1.1rem !important; font-weight: 700; }

/* Swiper pagination dots */
.hero-swiper-pagination {
  bottom: 1.5rem !important;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 8px; height: 8px;
  transition: all 0.3s;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 4px;
}

/* Stats bar below slider */
.hero-stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Contacts card (in stats bar) */
.hero-contacts-card {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-contacts-card__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  padding: 0 1rem;
}
.hero-contacts-card__item:first-child { padding-left: 0; }
.hero-contacts-card__item i {
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.hero-contacts-card__item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.hero-contacts-card__item a:hover { color: var(--color-accent); }
.hero-contacts-card__divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-contacts-card { display: none; }
}
.stat-item {}
.stat-number {
  font-size: 1.5rem; font-weight: 300; color: var(--color-accent); line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.65rem; color: var(--color-text-muted); margin-top: 0.3rem;
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* Tablet (768–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-swiper {
    height: 60svh;
    min-height: 460px;
    max-height: 620px;
  }
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .hero-swiper { height: 85svh; min-height: 480px; max-height: 680px; }
  .hero-slide-overlay {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.80) 55%,
        rgba(0,0,0,0.88) 100%);
  }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-stats { gap: 1.75rem; }
}

/* ========================================
   PRODUCT CARD — minimal, vertical photo focus
   ======================================== */
.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 0;
}
.product-card:hover { transform: translateY(-4px); }

.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3;
  border-radius: var(--radius);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

/* Subtle dark veil on hover for button contrast */
.product-card-img::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none; border-radius: var(--radius);
}
.product-card:hover .product-card-img::before { opacity: 1; }

.product-card-badges {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.product-card-wishlist {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(15,15,15,0.7);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  cursor: pointer; font-size: 0.875rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.product-card-wishlist:hover { color: var(--color-danger); background: rgba(15,15,15,0.9); }
.product-card-wishlist.active { color: var(--color-danger); }

/* Quick-add overlay at image bottom (appears on hover) */
.product-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 0.75rem 0.875rem;
  display: flex; gap: 0.375rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.product-card:hover .product-card-footer {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}

.btn-card {
  padding: 0.6rem 1rem;
  font-size: 0.8125rem; font-weight: 600;
  border-radius: var(--radius-sm); border: none;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  text-decoration: none; white-space: nowrap;
}
.btn-card-primary {
  flex: 1;
  background: rgba(255,255,255,0.95); color: #000;
  backdrop-filter: blur(4px);
}
.btn-card-primary:hover { background: var(--color-accent); color: #fff; }
.btn-card-outline { display: none; }

.btn-card-detail {
  flex: 1;
  background: rgba(19,16,13,0.82);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(6px);
  justify-content: center;
}

/* Compact add-to-cart inside card overlay */
.product-card-footer .btn-add-cart {
  flex: 1.5;
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--radius-sm);
}
.btn-card-detail:hover {
  background: rgba(196,146,74,0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.product-card-body { padding: 1rem 0.25rem 0.5rem; flex: 1; }
.card-color-dots {
  display: flex; align-items: center; gap: 0.3rem; margin-top: 0.55rem; margin-bottom: 0.55rem; flex-wrap: wrap;
}
.card-color-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid transparent;
  outline: 1.5px solid rgba(0,0,0,0.10);
  transition: transform 0.2s, outline-color 0.2s;
  cursor: pointer; flex-shrink: 0;
}
.card-color-dot:hover { transform: scale(1.25); outline-color: var(--color-accent); }
.product-card-category {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 0.35rem;
}
.product-card-name {
  font-size: 0.9rem; font-weight: 600; color: var(--color-text);
  margin-bottom: 0; line-height: 1.35;
  display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  text-decoration: none;
}
.product-card-name:hover { color: var(--color-text); text-decoration: none; }

.product-card .product-rating { display: flex; }
.stars { color: var(--color-accent); font-size: 0.75rem; letter-spacing: -0.05em; }
.rating-count { font-size: 0.75rem; color: var(--color-text-muted); }

.product-price-row {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.product-price { font-size: 1rem; font-weight: 700; color: var(--color-text); }
.product-price-old {
  font-size: 0.8125rem; color: var(--color-text-faint);
  text-decoration: line-through;
}
.product-price-sale { color: var(--color-accent); font-weight: 700; }

/* ========================================
   CATEGORY CARD
   ======================================== */
.category-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(139,26,42,0.4);
}
.category-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.category-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.06); }

.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
  transition: opacity var(--transition);
}
.category-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.category-card-name {
  font-size: 1rem; font-weight: 700;
  color: #F5F5F5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.category-card:hover .category-card-name {
  color: #fff;
  text-shadow: 0 0 14px rgba(139,26,42,0.55), 0 1px 6px rgba(0,0,0,0.7);
}
.category-card-count {
  font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.category-arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem;
  transition: all var(--transition);
}
.category-card:hover .category-arrow { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ========================================
   BENEFITS / FEATURES BAR
   ======================================== */
.benefits-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.benefit-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); font-size: 1.25rem;
}
.benefit-title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.2rem; }
.benefit-desc { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.5; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,184,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-desc { color: var(--color-text-muted); max-width: 480px; margin: 0 auto 2rem; }

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-wrap {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb-custom {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.8125rem; color: var(--color-text-muted);
}
.breadcrumb-custom a:hover { color: var(--color-accent); }
.breadcrumb-custom .sep { color: var(--color-text-faint); }
.breadcrumb-custom .current { color: var(--color-text); }

/* ========================================
   SIDEBAR FILTER (Catalog)
   ======================================== */
.filter-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .filter-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}
.filter-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.filter-group { margin-bottom: 1.75rem; }
.filter-group-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.filter-check {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.5rem; cursor: pointer;
  font-size: 0.875rem; color: var(--color-text-muted);
  transition: color var(--transition);
}
.filter-check:hover { color: var(--color-text); }
.filter-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.price-inputs { display: flex; gap: 0.5rem; align-items: center; }
.price-input,
.filter-input {
  flex: 1; padding: 0.4rem 0.75rem;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  color: var(--color-text); border-radius: var(--radius-sm);
  font-size: 0.875rem; font-family: var(--font-base);
  min-width: 0;
}
.price-input:focus,
.filter-input:focus { outline: none; border-color: var(--color-accent); }
.price-input::placeholder,
.filter-input::placeholder { color: var(--color-text-faint); }

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-gallery { position: sticky; top: 80px; }
.product-gallery-main { border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.product-gallery-main .swiper-slide img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.product-gallery-thumbs .swiper-slide {
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  opacity: 0.6; transition: opacity var(--transition), border-color var(--transition);
}
.product-gallery-thumbs .swiper-slide-thumb-active {
  border-color: var(--color-accent);
  opacity: 1;
}
.product-gallery-thumbs .swiper-slide img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
}

/* Product info panel */
.product-info { display: flex; flex-direction: column; gap: 0; }

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

.product-info-title {
  font-family: var(--font-base);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.15; margin: 0 0 1rem;
}

.product-info-meta {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

.product-rating {
  display: flex; align-items: center; gap: 0.5rem;
}
.product-rating .stars { color: var(--color-accent); font-size: 1rem; letter-spacing: 0.05em; }
.product-rating .rating-count { font-size: 0.875rem; color: var(--color-text-muted); }
.product-sku { font-size: 0.8125rem; color: var(--color-text-faint); }

.product-price-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}
.product-price-lg {
  font-size: 2rem; font-weight: 800;
  color: var(--color-accent); line-height: 1;
}
.product-price-old-lg {
  font-size: 1rem; color: var(--color-text-faint);
  text-decoration: line-through; margin-left: 0.75rem;
}

/* Option groups (color / size) */
.product-option-group { margin-bottom: 1.25rem; }

.product-option-label {
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-text); margin-bottom: 0.65rem;
  display: flex; align-items: center;
}
.product-option-label strong { margin-left: 0.35rem; }

.product-size-guide {
  font-size: 0.8125rem; color: var(--color-text-muted);
  text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
  transition: color var(--transition);
}
.product-size-guide:hover { color: var(--color-accent); }

/* Color selector */
.color-selector {
  display: flex; gap: 0.625rem; flex-wrap: wrap;
}

/* Size selector */
.size-selector {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}

.size-hint {
  font-size: 0.8125rem; color: var(--color-text-faint);
  margin: 0.5rem 0 0; display: flex; align-items: center; gap: 0.35rem;
}

/* Cart row */
.add-cart-row {
  display: flex; gap: 0.75rem; align-items: stretch;
  margin-bottom: 1rem;
}

/* Cart feedback */
.cart-feedback {
  display: none; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--color-success);
  padding: 0.75rem 1rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.cart-feedback.show { display: flex; }

/* Shipping info */
.product-shipping-info {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.shipping-row {
  font-size: 0.875rem; color: var(--color-text-muted);
  display: flex; align-items: center; gap: 0.6rem;
}
.shipping-row i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
  background: var(--color-accent);
  width: 40px !important; height: 40px !important;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--color-accent-dk);
  transform: scale(1.08);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 700; }
.swiper-pagination-bullet { background: var(--color-text-muted); }
.swiper-pagination-bullet-active { background: var(--color-accent); }

/* Color swatch buttons */
.color-swatch {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition), transform var(--transition);
  position: relative; flex-shrink: 0;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch:hover, .color-swatch.active { border-color: var(--color-accent); }
.color-swatch.active::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.9);
  text-shadow: 0 0 3px #000;
}

/* Size buttons */
.size-btn {
  min-width: 52px; padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-muted); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.size-btn:hover { border-color: var(--color-accent); color: var(--color-text); }
.size-btn.active { border-color: var(--color-accent); background: rgba(255,184,0,0.12); color: var(--color-accent); font-weight: 700; }
.size-btn.out-of-stock { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* Quantity selector */
.qty-selector {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  overflow: hidden; width: fit-content;
}
.qty-btn {
  width: 44px; background: var(--color-surface-2);
  border: none; color: var(--color-text); font-size: 1.2rem;
  cursor: pointer; transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--color-surface-3); }
.qty-value {
  min-width: 52px; background: var(--color-surface);
  border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
  color: var(--color-text); text-align: center;
  font-size: 0.9375rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Add to cart button */
.btn-add-cart {
  flex: 1; padding: 0.875rem 1.5rem;
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 1rem; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-add-cart:hover { background: var(--color-accent-dk); transform: translateY(-1px); }
.btn-wishlist-lg {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: 1.1rem;
  transition: all var(--transition);
}
.btn-wishlist-lg:hover { border-color: var(--color-danger); color: var(--color-danger); }

/* Product Tabs */
.product-tabs { margin-top: 3rem; }
.product-tabs-nav {
  display: flex; gap: 0; border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem; overflow-x: auto; flex-wrap: nowrap;
}
.product-tab {
  padding: 0.875rem 1.5rem; background: none; border: none;
  color: var(--color-text-muted); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; position: relative; transition: color var(--transition);
  font-family: var(--font-base); white-space: nowrap; flex-shrink: 0;
}
.product-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--color-accent); transform: scaleX(0); transition: transform var(--transition);
}
.product-tab:hover { color: var(--color-text); }
.product-tab.active { color: var(--color-text); font-weight: 600; }
.product-tab.active::after { transform: scaleX(1); }

.product-tab-content { display: none; }
.product-tab-content.active { display: block; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--color-border); }
.specs-table td { padding: 0.75rem 0; font-size: 0.875rem; }
.specs-table td:first-child { color: var(--color-text-muted); width: 45%; }
.specs-table td:last-child { color: var(--color-text); font-weight: 500; }

/* ========================================
   CONTACTS PAGE
   ======================================== */
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-group { margin-bottom: 1.25rem; }
.form-label-custom {
  display: block; font-size: 0.8125rem; font-weight: 500;
  color: var(--color-text-muted); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-control-custom,
.form-input-custom {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); color: var(--color-text);
  font-size: 0.9375rem; font-family: var(--font-base);
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-control-custom:focus,
.form-input-custom:focus {
  outline: none; border-color: var(--color-accent);
  background: var(--color-surface-3);
}
.form-control-custom::placeholder,
.form-input-custom::placeholder { color: var(--color-text-faint); }
textarea.form-control-custom,
textarea.form-input-custom { resize: vertical; min-height: 140px; }
select.form-input-custom { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; cursor: pointer; }

.map-placeholder {
  width: 100%; height: 300px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); flex-direction: column; gap: 0.5rem;
  font-size: 0.875rem;
}
.map-placeholder i { font-size: 2rem; color: var(--color-accent); }

/* ========================================
   ACTIVE FILTERS + VIEW TOGGLE (Catalog)
   ======================================== */
.active-filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.active-filter-chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.5rem 0.3rem 0.75rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-lt);
  border-radius: 100px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--color-text-muted);
}
.chip-remove {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: none; border: none; padding: 0;
  font-size: 1rem; line-height: 1;
  color: var(--color-text-faint);
  cursor: pointer; border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-base);
}
.chip-remove:hover { background: var(--color-danger); color: #fff; }

.catalog-view-btns { display: flex; gap: 0.375rem; }
.view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted); font-size: 1rem;
  cursor: pointer; transition: all var(--transition);
}
.view-btn:hover { color: var(--color-text); border-color: var(--color-border-lt); }
.view-btn.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ---- LIST VIEW ---- */
.catalog-list-view .product-card {
  display: flex;
  flex-direction: row;
  height: auto;
}
.catalog-list-view .product-card-img {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  overflow: hidden;
}
.catalog-list-view .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.catalog-list-view .product-card-body {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.catalog-list-view .product-card-footer {
  position: static;
  opacity: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  background: none;
  margin-top: 1rem;
}
.catalog-list-view .product-card-footer .btn-card {
  flex: 1;
  justify-content: center;
}
.catalog-list-view .product-card-wishlist {
  top: 0.75rem;
  right: auto;
  left: calc(200px - 2.5rem);
}

.btn-reset-filter {
  background: none; border: none; padding: 0.2rem 0.5rem;
  font-size: 0.8125rem; color: var(--color-text-faint);
  cursor: pointer; font-family: var(--font-base);
  transition: color var(--transition);
  text-decoration: underline; text-underline-offset: 2px;
}
.btn-reset-filter:hover { color: var(--color-danger); }

/* ========================================
   SORT + PAGINATION (Catalog)
   ======================================== */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.catalog-toolbar-left {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; min-width: 0;
}
.catalog-toolbar-right {
  display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
.catalog-count { font-size: 0.875rem; color: var(--color-text-muted); }
.sort-select,
.catalog-sort {
  padding: 0.5rem 1rem; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-text); font-size: 0.875rem; font-family: var(--font-base);
  cursor: pointer;
}
.sort-select:focus,
.catalog-sort:focus { outline: none; border-color: var(--color-accent); }

.pagination-custom,
.catalog-pagination { display: flex; align-items: center; gap: 0.375rem; flex-wrap: wrap; margin-top: 2.5rem; }
.page-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-surface); color: var(--color-text-muted);
  font-size: 0.875rem; cursor: pointer; transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { border-color: var(--color-accent); color: var(--color-accent); background: rgba(196,146,74,0.1); }

/* ========================================
   MOBILE FILTER TOGGLE
   ======================================== */
.filter-toggle-btn {
  display: none;
  width: 100%;
  padding: 0.6rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; margin-bottom: 1rem;
  align-items: center; gap: 0.5rem; justify-content: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
  .product-gallery { position: static; margin-bottom: 2rem; }
  .hero { min-height: auto; padding: 6rem 0 5rem; }
  .hero-img-wrap { margin-top: 2.5rem; }
  .hero-img-wrap img { height: 320px; }
  .hero-editorial { margin-top: 3rem; }
  .hero-stats { margin-top: 2.5rem; padding-top: 1.5rem; gap: 2rem; }
  .filter-toggle-btn { display: flex; }
  .filter-sidebar { display: none; }
  .filter-sidebar.show { display: block; }
}
@media (max-width: 767.98px) {
  .hero-stats { gap: 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .add-cart-row { flex-direction: column; }
  .btn-add-cart { min-width: unset; }
  .benefits-bar .row > div + div { margin-top: 1.5rem; }
  .hero-swiper-prev,
  .hero-swiper-next { display: none !important; }
}

/* ========================================
   FASHION-SPECIFIC ADDITIONS
   ======================================== */

/* Section eyebrow label */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-base);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-accent);
}

/* Hero product badge */
.hero-product-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-product-badge__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.hero-product-badge__name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.2rem;
  color: var(--color-text);
}
.hero-product-badge__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-top: 0.2rem;
}

/* Feature card (Why Us section) */
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: border-color var(--transition);
}
.feature-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: var(--font-base);
}
.feature-card__desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact info item (contacts page) */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.contact-info-item__value {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}
.contact-info-item__value a {
  color: var(--color-accent);
}

/* Social button */
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ========================================
   CONTACTS PAGE — redesigned channel cards
   ======================================== */
.ccontact-channel-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-surface);
}
.ccontact-channel-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.ccontact-channel-icon {
  width: 52px;
  height: 52px;
  background: rgba(139,26,42,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.ccontact-channel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.ccontact-channel-values {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.ccontact-channel-values a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}
.ccontact-channel-values a:hover { color: var(--color-accent); }
.ccontact-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
}
.ccontact-channel-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Info blocks: address / hours / social */
.ccontact-info-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.ccontact-info-block__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
}
.ccontact-info-block__icon {
  color: var(--color-accent);
  font-size: 1rem;
}
.ccontact-info-block__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.ccontact-info-block__body {
  padding: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}
.ccontact-info-block__body p { margin: 0 0 0.75rem; }
.ccontact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
}
.ccontact-info-link:hover { opacity: 0.8; }

/* Hours table */
.ccontact-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.ccontact-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.ccontact-hours__days { color: var(--color-text-muted); }
.ccontact-hours__time { font-weight: 600; }
.ccontact-hours__closed { color: var(--color-text-muted); font-weight: 400; }

/* Social pills */
.ccontact-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.ccontact-social-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Map container */
.ccontact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 420px;
  height: 100%;
}
.ccontact-map-wrap iframe { display: block; }

/* Why-us card hover is handled by .feature-card class above */

/* Size pill (categories page) */
.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.4rem 0.75rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Size table */
.size-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9rem;
}
.size-table th {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.size-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.size-table tr:last-child td { border-bottom: none; }
.size-table td:first-child { font-weight: 700; color: var(--color-accent); }

/* Size filter btn (catalog sidebar) */
.size-filter-btn {
  cursor: pointer;
  position: relative;
}
.size-filter-btn input { position: absolute; opacity: 0; width: 0; height: 0; }
.size-filter-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0.35rem 0.6rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.size-filter-btn input:checked + span {
  background: rgba(255,184,0,0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Map embed wrapper */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* Contact form card */
.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.contact-form-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}
.form-privacy-note {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  margin: 0;
}
.form-privacy-note a { color: var(--color-accent); }
.form-success-msg {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 0.9rem;
}

/* Product feature list (product page description) */
.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.product-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.product-feature-list li:last-child { border-bottom: none; }
.product-feature-list li .bi { color: var(--color-accent); font-size: 0.9rem; }

/* Care cards */
.care-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  height: 100%;
}
.care-icon {
  display: block;
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.care-icon--no { color: #ef4444; }
.care-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.care-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* FAQ accordion overrides */
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-btn {
  background: transparent !important;
  color: var(--color-text) !important;
  font-weight: 600;
  font-size: 0.975rem;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
}
.faq-btn:not(.collapsed) { color: var(--color-accent) !important; }
.faq-btn::after { filter: invert(1) sepia(1) saturate(5) hue-rotate(0deg); }
.faq-body {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
}

/* ========================================
   PAGE HEADER (inner pages breadcrumbs)
   ======================================== */
.page-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}
.page-header-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.6rem;
}
.page-header-desc {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0 0 0.5rem;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}
.breadcrumb-item a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--color-accent); }
.breadcrumb-item.active { color: var(--color-text-faint); }
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-text-faint);
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */

/* Utility */
.page-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0;
}
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-custom:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.text-success-custom { color: var(--color-success); }

/* Steps indicator */
.checkout-steps {
  display: flex; align-items: center; gap: 0;
  padding: 1.25rem 0;
  overflow-x: auto;
}
.checkout-step {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
  opacity: 0.38;
  transition: opacity var(--transition);
}
.checkout-step.active,
.checkout-step.done { opacity: 1; }
.checkout-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.checkout-step.active .checkout-step-num {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.checkout-step.done .checkout-step-num {
  background: var(--color-success);
  border-color: var(--color-success);
  color: #fff;
}
.checkout-step-label {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.checkout-step.active .checkout-step-label { color: var(--color-text); }
.checkout-step-line {
  flex: 1; min-width: 2rem;
  height: 1px;
  background: var(--color-border);
  margin: 0 0.75rem;
}

/* Section card */
.checkout-section-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.checkout-section-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.checkout-section-num {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.checkout-section-title {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Delivery tabs */
.checkout-delivery-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.checkout-delivery-tab {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8125rem; font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.checkout-delivery-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}
.checkout-delivery-tab.active {
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  color: var(--color-accent);
}

/* Info box */
.checkout-info-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Payment options */
.checkout-payment-grid {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.checkout-payment-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.checkout-payment-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.checkout-payment-option.selected,
.checkout-payment-option:has(input:checked) {
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 6%, transparent);
}
.checkout-payment-body {
  display: flex; align-items: center; gap: 0.875rem;
  flex: 1;
}
.checkout-payment-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--color-text-muted);
}
.checkout-payment-option.selected .checkout-payment-icon,
.checkout-payment-option:has(input:checked) .checkout-payment-icon {
  color: var(--color-accent);
}
.checkout-payment-name {
  font-size: 0.9rem; font-weight: 600; color: var(--color-text);
}
.checkout-payment-desc {
  font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.1rem;
}
.checkout-payment-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: transparent;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.checkout-payment-option.selected .checkout-payment-check,
.checkout-payment-option:has(input:checked) .checkout-payment-check {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Card input */
.checkout-card-input-wrap {
  position: relative;
}
.checkout-card-input-wrap .filter-input { padding-right: 3rem; }
.checkout-card-icons {
  position: absolute; right: 0.875rem; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-faint);
  font-size: 1.1rem;
  pointer-events: none;
}
.checkout-secure-note {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem; color: var(--color-text-muted);
}

/* Agreement checkboxes */
.checkout-agree {
  display: flex; align-items: flex-start; gap: 0.65rem;
  cursor: pointer;
  font-size: 0.875rem; color: var(--color-text-muted);
  line-height: 1.5;
}
.checkout-agree input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--color-accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* Order summary */
.checkout-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}
.checkout-summary-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.checkout-summary-title {
  font-size: 1rem; font-weight: 700; margin: 0;
}
.checkout-summary-edit {
  font-size: 0.8rem; color: var(--color-text-muted);
  text-decoration: none; display: flex; align-items: center; gap: 0.3em;
  transition: color var(--transition);
}
.checkout-summary-edit:hover { color: var(--color-accent); }

/* Checkout items */
.checkout-items {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.checkout-item {
  display: flex; gap: 0.875rem; align-items: flex-start;
}
.checkout-item-img {
  position: relative; flex-shrink: 0;
  width: 60px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.checkout-item-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.checkout-item-qty {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.checkout-item-attrs {
  font-size: 0.75rem; color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.checkout-item-price {
  font-size: 0.9rem; font-weight: 700; color: var(--color-text);
}
.checkout-item-price-old {
  font-size: 0.78rem; color: var(--color-text-faint);
  text-decoration: line-through; margin-left: 0.4em; font-weight: 400;
}

/* Promo */
.checkout-promo {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.checkout-promo-row {
  display: flex; gap: 0.5rem;
}

/* Totals */
.checkout-totals {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.checkout-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem; color: var(--color-text-muted);
}
.checkout-total-final {
  font-size: 1.05rem; font-weight: 700;
  color: var(--color-text);
  margin-top: 0.4rem;
}

/* Trust badges */
.checkout-trust {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 1rem;
}
.checkout-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--color-text-muted);
}

/* Success */
.checkout-success-card {
  padding: 3rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.checkout-success-icon {
  font-size: 3.5rem; color: var(--color-success);
  margin-bottom: 1.25rem;
}
.checkout-success-title {
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.checkout-success-num {
  font-size: 0.9rem; color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.checkout-success-text {
  color: var(--color-text-muted);
  line-height: 1.7; font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.checkout-success-meta {
  display: flex; flex-direction: column; gap: 0.6rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  text-align: left;
}
.checkout-success-meta-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.875rem; color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 575px) {
  .checkout-section-card { padding: 1.25rem; }
  .checkout-summary { padding: 1.25rem; }
  .checkout-delivery-tabs { gap: 0.4rem; }
  .checkout-delivery-tab { padding: 0.45rem 0.75rem; font-size: 0.78rem; }
}
