/* ============================================================
   SIBA STORE — Design System v2.0
   Navy + Teal + Gold | Preview-level premium UI
   Bootstrap 5 ile uyumlu katman
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --c-navy:       #0a1628;
  --c-navy-800:   #0f2040;
  --c-navy-700:   #152b54;
  --c-navy-600:   #1e3a6e;
  --c-teal:       #0d9488;
  --c-teal-light: #14b8a6;
  --c-teal-glow:  #2dd4bf;
  --c-gold:       #f59e0b;
  --c-gold-light: #fbbf24;
  --c-amber:      #d97706;
  --c-wa:         #25d366;
  --c-wa-dark:    #128c4e;
  --c-off-white:  #f8fafc;
  --c-gray-50:    #f1f5f9;
  --c-gray-100:   #e2e8f0;
  --c-gray-400:   #94a3b8;
  --c-gray-600:   #475569;
  --c-gray-900:   #0f172a;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --shadow-card:  0 4px 24px rgba(10,22,40,0.10), 0 1px 4px rgba(10,22,40,0.06);
  --shadow-hover: 0 16px 48px rgba(10,22,40,0.18), 0 4px 12px rgba(10,22,40,0.10);
  --shadow-wa:    0 8px 32px rgba(37,211,102,0.35);
  --t-fast:  150ms cubic-bezier(0.4,0,0.2,1);
  --t-med:   250ms cubic-bezier(0.4,0,0.2,1);
  --t-slow:  400ms cubic-bezier(0.4,0,0.2,1);
  --t-spring: 300ms cubic-bezier(0.34,1.56,0.64,1);
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-modal:    300;
  --z-toast:    400;

  /* Bootstrap renk override */
  --siba-primary:   #0a1628;
  --siba-secondary: #0d9488;
  --siba-accent:    #f59e0b;
  --siba-success:   #10b981;
  --siba-danger:    #ef4444;
  --siba-bg:        #f8fafc;
  --siba-text:      #1e293b;
  --siba-muted:     #64748b;
  --siba-border:    #e2e8f0;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--c-off-white);
  color: var(--c-gray-900);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(13,148,136,0.4); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-teal); }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--c-teal-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Gradients & Text Effects ---------- */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--c-gold-light) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-teal {
  background: linear-gradient(135deg, var(--c-teal-glow) 0%, var(--c-teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glassmorphism ---------- */
.glass-dark {
  background: rgba(10,22,40,0.70);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Bootstrap OVERRIDE ---------- */
.bg-siba-primary  { background-color: var(--c-navy) !important; }
.bg-siba-secondary{ background-color: var(--c-teal) !important; }
.bg-siba-accent   { background-color: var(--c-gold) !important; }
.text-siba-primary  { color: var(--c-navy) !important; }
.text-siba-secondary{ color: var(--c-teal) !important; }
.text-siba-accent   { color: var(--c-amber) !important; }

.btn-siba-primary {
  background: linear-gradient(135deg, var(--c-navy-700), var(--c-navy-600));
  border-color: var(--c-navy-600);
  color: #fff;
  font-weight: 600;
  transition: all var(--t-spring);
}
.btn-siba-primary:hover {
  background: linear-gradient(135deg, var(--c-navy-600), #1e4080);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.35);
}
.btn-siba-secondary {
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-light));
  border-color: var(--c-teal);
  color: #fff;
  font-weight: 600;
  transition: all var(--t-spring);
}
.btn-siba-secondary:hover {
  background: linear-gradient(135deg, #0b7a72, var(--c-teal));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
}
.btn-siba-accent {
  background: linear-gradient(135deg, var(--c-amber), var(--c-gold));
  border-color: var(--c-gold);
  color: var(--c-navy);
  font-weight: 700;
  transition: all var(--t-spring);
}
.btn-siba-accent:hover {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  color: var(--c-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

/* ---------- TOP BAR ---------- */
.shop-topbar {
  background: linear-gradient(90deg, var(--c-navy-700) 0%, var(--c-navy) 100%) !important;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ---------- HEADER ---------- */
.shop-header {
  background: var(--c-navy) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: var(--z-sticky);
  transition: box-shadow var(--t-med);
}
.shop-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important;
}
.shop-header .navbar-brand img {
  filter: brightness(0) invert(1);
}

/* Search bar */
.shop-search .form-control {
  border-radius: 0.75rem 0 0 0.75rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-right: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  min-height: 44px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.shop-search .form-control::placeholder { color: rgba(255,255,255,0.4); }
.shop-search .form-control:focus {
  border-color: var(--c-teal) !important;
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  color: #fff;
}
.shop-search .btn {
  border-radius: 0 0.75rem 0.75rem 0;
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-light));
  border: none;
  color: #fff;
  min-height: 44px;
  padding: 0 1.125rem;
  font-size: 1rem;
  transition: all var(--t-spring);
}
.shop-search .btn:hover {
  background: linear-gradient(135deg, var(--c-teal-light), var(--c-teal-glow));
  transform: none;
}

/* ---------- CATEGORY NAV ---------- */
.shop-nav {
  background: var(--c-navy-800) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.shop-nav .nav-link {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.shop-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}
.shop-nav .nav-link.active,
.shop-nav .nav-link.bg-siba-secondary {
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-light)) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(13,148,136,0.35);
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: var(--c-navy) !important;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 8s ease-out;
  z-index: 0;
}
.hero-section.loaded::before { transform: scale(1.04); }
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,22,40,0.18) 0%, rgba(10,22,40,0.52) 40%, rgba(10,22,40,0.94) 100%);
  z-index: 1;
}
/* Noise texture */
.hero-section .hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 100px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 6rem 0 4.5rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--c-teal-light);
  opacity: 0.7;
  border-radius: 2px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 44rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.35s both;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.7s 0.5s both;
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  animation: fadeUp 0.7s 0.65s both;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

/* Hero → Content geçiş */
.hero-curve {
  height: 2.5rem;
  background: var(--c-off-white);
  margin-top: -2.5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  position: relative;
  z-index: 4;
}

/* ---------- BUTTONS (hero/CTA) ---------- */
.btn-hero-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-light));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 48px;
  box-shadow: 0 4px 16px rgba(13,148,136,0.35);
  border: none;
  text-decoration: none;
  transition: all var(--t-spring);
}
.btn-hero-teal:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13,148,136,0.45);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-lg);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 48px;
  text-decoration: none;
  transition: all var(--t-med);
}
.btn-hero-outline:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
}

/* ---------- SECTION HEADERS ---------- */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--c-teal);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-navy);
}
.section-title span { color: var(--c-teal); }

/* ---------- BENTO GRID (Ana Sayfa Kategoriler) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: transform var(--t-spring), box-shadow var(--t-med);
  text-decoration: none;
  display: block;
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  min-height: 200px;
}
.bento-card:hover .bento-card__img { transform: scale(1.07); }
.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.08) 65%);
  transition: background var(--t-med);
}
.bento-card:hover .bento-card__overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.22) 70%);
}
.bento-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}
.bento-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: background var(--t-fast), transform var(--t-spring);
}
.bento-card:hover .bento-card__icon {
  background: var(--c-teal);
  transform: scale(1.1) rotate(-4deg);
}
.bento-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.bento-card__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  margin-top: 0.2rem;
}
.bento-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-teal-glow);
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
  transform: translateX(-4px);
}
.bento-card:hover .bento-card__cta {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- CATEGORY CARD (eski grid fallback) ---------- */
.category-card {
  transition: all var(--t-spring);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-gray-100) !important;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--c-teal-light) !important;
}
.category-card .card-body { padding: 1.5rem 1rem; }
.category-card .bi { color: var(--c-teal); }
.category-card h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-navy);
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  transition: transform var(--t-spring), box-shadow var(--t-med);
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  border: 1px solid var(--c-gray-100) !important;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--c-teal-light) !important;
}
.product-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--c-gray-50);
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform var(--t-slow);
}
.product-card:hover .product-image-wrapper img { transform: scale(1.06); }
.product-no-image { height: 200px; }

/* product badge */
.product-card .badge.bg-danger {
  background: linear-gradient(135deg, #dc2626, var(--siba-danger)) !important;
}

/* card title */
.product-card .card-title a {
  color: var(--c-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color var(--t-fast);
}
.product-card .card-title a:hover { color: var(--c-teal) !important; }

/* category label on card */
.product-card .card-body small.text-muted {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-teal) !important;
}

/* ---------- WHATSAPP CARD BUTTON ---------- */
.btn-wa-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.875rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #128c4e 0%, #25d366 100%);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--r-md);
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px rgba(37,211,102,0.28);
  transition: all var(--t-spring);
  cursor: pointer;
}
.btn-wa-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  color: #fff !important;
}
.btn-wa-card svg { flex-shrink: 0; }

/* Hide price elements per B2B model */
.product-price-display { display: none !important; }

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
  background: var(--c-navy);
  padding: 4rem 0;
}
.feature-box {
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t-med);
  height: 100%;
}
.feature-box:hover {
  background: rgba(13,148,136,0.08);
  border-color: rgba(13,148,136,0.2);
  transform: translateY(-3px);
}
.feature-box .bi {
  color: var(--c-teal-light);
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform var(--t-spring);
}
.feature-box:hover .bi { transform: scale(1.15); }
.feature-box h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.feature-box small { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-wa-dark), var(--c-wa));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transition: all var(--t-spring);
  animation: float-in 0.5s var(--t-spring) both;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.22);
  animation: ring-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6), 0 4px 16px rgba(0,0,0,0.25);
}

/* ---------- FOOTER ---------- */
.shop-footer {
  background: linear-gradient(160deg, var(--c-navy-700) 0%, var(--c-navy) 60%, var(--c-navy-800) 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-footer h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
}
.shop-footer a:hover { color: var(--c-teal-glow) !important; text-decoration: none; }
.shop-footer .list-unstyled li { margin-bottom: 0.6rem; }
.shop-footer .branch-toggle:hover { color: rgba(255,255,255,0.9) !important; }
.shop-footer .text-info { color: var(--c-teal-light) !important; }

/* Footer social */
.shop-footer .btn-outline-light {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  border-radius: 0.625rem;
  min-width: 36px;
  min-height: 36px;
  padding: 0.35rem 0.6rem;
  transition: all var(--t-fast);
}
.shop-footer .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.82rem;
}
.breadcrumb-item a {
  color: var(--c-teal);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-item a:hover { color: var(--c-teal-light); text-decoration: underline; }
.breadcrumb-item.active { color: var(--c-gray-600); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--c-gray-400); }

/* ---------- SIDEBAR ---------- */
.card.border-0 { border-radius: var(--r-lg) !important; }
.card.border-0 .card-header {
  background: linear-gradient(135deg, var(--c-navy-700), var(--c-navy)) !important;
  color: #fff !important;
  border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
}
.list-group-item-action:hover {
  background: rgba(13,148,136,0.06);
  color: var(--c-teal);
}
.list-group-item-action {
  font-size: 0.875rem;
  transition: all var(--t-fast);
}

/* ---------- PRODUCT DETAIL ---------- */
.product-gallery-main {
  position: relative;
  background: var(--c-gray-50);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-main img {
  max-height: 420px;
  object-fit: contain;
  width: 100%;
  padding: 1.5rem;
}
.product-gallery-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), opacity var(--t-fast);
  opacity: 0.65;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--c-teal);
  opacity: 1;
}

/* Product info card */
.product-info-card {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--c-gray-100) !important;
  box-shadow: var(--shadow-card) !important;
}
.product-info-card h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.25;
}

/* WA Button — product page */
.btn-wa-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #128c4e 0%, #25d366 60%, #43e97b 100%);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--t-spring);
  cursor: pointer;
  min-height: 56px;
}
.btn-wa-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.50);
  color: #fff !important;
}

/* Tabs */
.nav-tabs .nav-link {
  color: var(--c-gray-600);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.nav-tabs .nav-link:hover { color: var(--c-teal); border-bottom-color: rgba(13,148,136,0.3); }
.nav-tabs .nav-link.active {
  color: var(--c-teal);
  border-bottom-color: var(--c-teal);
  background: transparent;
}

/* ---------- FORMS ---------- */
.form-control:focus,
.form-select:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 0.2rem rgba(13,148,136,0.18);
}

/* ---------- PAGINATION ---------- */
.pagination .page-link {
  color: var(--c-teal);
  border-color: var(--c-gray-100);
  border-radius: var(--r-sm) !important;
  transition: all var(--t-fast);
  font-weight: 500;
}
.pagination .page-link:hover {
  background: rgba(13,148,136,0.08);
  border-color: var(--c-teal);
  color: var(--c-teal);
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--c-teal), var(--c-teal-light));
  border-color: var(--c-teal);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float-in {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

/* ---------- TOAST ---------- */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: var(--z-toast);
}
.toast { min-width: 250px; border-radius: var(--r-md); }

/* ---------- CART SIDEBAR ---------- */
#cartSidebar { width: 380px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 767px) {
  .hero-heading { font-size: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-section { min-height: 70vh; }
  .hero-content { padding: 4rem 0 3rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .bento-card--tall { grid-row: span 1; }
  .product-image-wrapper { height: 160px; }
  #cartSidebar { width: 100%; }
  .feature-box { padding: 1rem; }
}
@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-hero-teal, .btn-hero-outline { width: 100%; justify-content: center; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- PRINT ---------- */
@media print {
  .shop-header, .shop-topbar, .shop-nav, .shop-footer, .whatsapp-float { display: none !important; }
  body { background: white; }
}

/* ---------- PAGINATION — Override large icons ---------- */
.pagination {
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}
.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--r-sm) !important;
  font-size: 0.875rem;
  font-weight: 600;
}
/* Bootstrap SVG pagination arrows — keep them normal size */
.pagination .page-link svg {
  width: 14px;
  height: 14px;
}
/* Override any large chevron/arrow from Laravel pagination */
.pagination span[aria-hidden],
.pagination .page-link span[aria-hidden] {
  font-size: 0.875rem !important;
  line-height: 1;
}

/* ---------- CART SIDEBAR ---------- */
.offcanvas-header {
  background: var(--c-navy) !important;
  color: #fff !important;
}
.offcanvas-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}
