:root {
  --color-bg: #fff;
  --color-dark: #f8f9fa;
  --color-accent: #5a9fc6;
  --color-gold: #78c3e8;
  --color-white: #FFFFFF;
  --color-muted: rgba(0,0,0,0.45);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --radius-card: 1rem;
  --radius-btn: 1rem;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: 0.25s ease;
  --nav-font-size: 1.3rem;
  --round-borders: 1rem;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg);
  color: #111;
  font-family: var(--font-body);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  padding: 0;
  margin: 0;
}

p { letter-spacing: 0.05rem; }

a { text-decoration: none; color: inherit; }
a:hover, a:focus { text-decoration: none; color: inherit; }

ul { list-style-type: none; padding: 0; margin: 0; }

/* product card title still uses heading font */
.card-title { font-family: var(--font-display); }

/* Push main content below fixed header */
main { padding-top: 80px; }
/* On home page the slider is full-screen behind the header, no extra padding needed */
.home main { padding-top: 0; }

/* Subtle page background for subpages */
.subpage-bg {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(120, 195, 232, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(90, 159, 198, 0.05) 0%, transparent 50%);
}
.subpage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, rgba(120, 195, 232, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(120, 195, 232, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(120, 195, 232, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(120, 195, 232, 0.03) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  pointer-events: none;
}

/* =================== */
/* Main Header - White overlay */
/* =================== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  max-width: 100%;
  z-index: 1030;
}

.main-logo {
  font-size: 2.3rem;
  font-family: var(--font-display);
  line-height: 1.7rem;
  padding: 0.5rem 0;
}
.main-logo img {
  display: block;
  max-height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--nav-font-size);
  background: transparent;
}
.main-nav a {
  border-radius: var(--round-borders);
  padding: 0.6rem 1.1rem;
  color: #fff;
  text-shadow: 2px 2px 2px black;
  text-decoration: none;
  transition: background 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #66ccff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
}
.header-actions a,
.header-actions button {
  border-radius: var(--round-borders);
  padding: 0.6rem 1.1rem;
  color: #333;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
}
.header-actions a:hover,
.header-actions button:hover {
  background: rgba(0,0,0,0.04);
}
.header-actions .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(0,0,0,0.04);
  border-radius: var(--round-borders);
  padding: 0.6rem 1rem;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(114, 112, 112, 0.97);
  padding: 1rem 2rem;
  z-index: 1040;
}
.search-overlay .search-input {
  border-radius: var(--radius-btn);
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #111;
  height: 48px;
  padding: 0 1rem;
  font-size: 1rem;
}
.search-overlay .search-input::placeholder { color: var(--color-muted); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  padding: 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.06);
}
.mobile-nav.open { right: 0; }
.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-nav__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #111;
}
.mobile-nav__close {
  background: none;
  border: none;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav__list a {
  display: block;
  padding: 1rem 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.mobile-nav__list a:hover { opacity: 0.6; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1049;
}
.mobile-nav.open ~ .mobile-nav-overlay { display: block; }

.header-actions a[aria-label="Cart"] {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  line-height: 1;
}

@keyframes cartBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.bump {
  animation: cartBump 0.4s ease;
}

/* Buttons */
.btn-primary-gold {
  background-color: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn.btn-primary-gold:hover,
.btn.btn-primary-gold:active,
.btn.btn-primary-gold:focus,
.btn.btn-primary-gold:focus-visible {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: #fff;
  background-color: var(--color-gold);
}

.btn-secondary-accent {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn.btn-secondary-accent:hover,
.btn.btn-secondary-accent:active,
.btn.btn-secondary-accent:focus,
.btn.btn-secondary-accent:focus-visible {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: #fff;
  background-color: var(--color-accent);
}

.btn.btn-outline-gold:hover,
.btn.btn-outline-gold:active,
.btn.btn-outline-gold:focus,
.btn.btn-outline-gold:focus-visible {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  background-color: transparent;
  color: var(--color-gold);
}

.btn-outline-gold {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: var(--radius-btn);
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition);
}


/* Card */
.card-product {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}

.card-product:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-product .card-img-top {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-product:hover .card-img-top {
  transform: scale(1.03);
}

.card-product .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4em 0.7em;
}

.badge-new { background: var(--color-accent); color: #fff; }
.badge-sale { background: var(--color-gold); color: #fff; }
.badge-hot,
.badge-best {
  background: #333;
  color: #fff;
}

/* =================== */
/* Hero / Slider */
/* =================== */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #eee;
}

.slider-container {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  width: 100%;
  width: calc(var(--n)*100%);
  max-height: 100vh;
  transform: translate(calc(var(--i, 0)/var(--n)*-100% + var(--tx, 0px)));
}

.slider-container.smooth {
  transition: transform calc(var(--f, 1)*.5s) ease-out;
}

.slider-container .slide-img {
  height: 100vh;
  width: 100%;
  pointer-events: none;
  object-fit: cover;
}

.slide-item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  width: calc(100%/var(--n));
  overflow: hidden;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(0,0,0,0.25);
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.slide-overlay a,
.slide-overlay button {
  pointer-events: auto;
}

.slide-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  max-width: 700px;
}

.slide-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  max-width: 600px;
}

.slide-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--round-borders);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.slide-cta:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}

.slider-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.slider-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* slider controls */
.controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 10;
}

.prev,
.next {
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  background: rgba(0,0,0,0.2);
  border-radius: var(--round-borders);
  padding: 1.5rem 2rem;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

.prev:hover,
.next:hover {
  transform: scale(1.5);
}

.flash {
  animation: flash 0.5s linear;
}
@keyframes flash {
  50% { opacity: 0; }
}

.heading-big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  padding: 2.5rem 0 1rem 0;
}
.heading-medium { font-size: 2rem; font-family: var(--font-display); }
.heading-small { font-size: 1.5rem; font-family: var(--font-display); }

/* Homepage Section Backgrounds */
.bg-dots-blue {
  background:
    radial-gradient(rgba(120, 195, 232, 0.25) 2px, transparent 2px);
  background-size: 20px 20px;
  background-color: #f5fafd;
}

.bg-waves-blue {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 25px,
      rgba(120, 195, 232, 0.1) 25px,
      rgba(120, 195, 232, 0.1) 26px
    ),
    linear-gradient(180deg, rgba(90, 159, 198, 0.06) 0%, transparent 100%);
  background-color: #f8fcff;
}

.bg-grid-blue {
  background:
    linear-gradient(90deg, rgba(120, 195, 232, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 195, 232, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  background-color: #f0f8fe;
}

.bg-gradient-blue {
  background: linear-gradient(135deg, rgba(120, 195, 232, 0.15) 0%, rgba(240, 248, 254, 0.5) 50%, rgba(90, 159, 198, 0.1) 100%);
  background-color: #fafcff;
}

/* Flash Sale */
.flash-sale {
  background: linear-gradient(135deg, var(--color-accent) 0%, #333 100%);
}

.timer-block {
  background: var(--color-gold);
  color: #fff;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  min-width: 60px;
  text-align: center;
}

.timer-block span {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.timer-block small {
  font-size: 0.6rem;
  display: block;
  opacity: 0.9;
}

/* Section Heading */
.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  color: #66ccff;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 8px;
}
.section-heading.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* Category Card */
.card-category {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(120, 195, 232, 0.25);
}

.card-category img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-category .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-category .overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Banner Promo */
.banner-promo {
  background-color: var(--color-accent);
  border-radius: var(--radius-card);
}

/* Footer */
.footer {
  background-color: #e8f4fa;
  color: #333;
}

.footer a {
  color: #555;
  text-decoration: none;
  transition: color var(--transition);
}

.footer .btn {
  color: #fff;
}

.footer h6 {
  color: #72cdff;
}

.footer a:hover {
  color: var(--color-gold);
}

.footer .btn:hover {
  color: #fff;
}

.footer .brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* Rating */
.star-rating .bi-star-fill {
  color: var(--color-gold);
}

.star-rating .bi-star {
  color: var(--color-muted);
}

/* Product Detail */
.product-gallery img {
  border-radius: var(--radius-card);
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.thumb-img:hover,
.thumb-img.active {
  border-color: var(--color-gold);
}

.size-toggle {
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-muted);
  border-radius: var(--radius-btn);
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  transition: all var(--transition);
}

.size-toggle:hover,
.size-toggle.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.color-swatch {
  width: auto;
  min-width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: border-color var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  gap: 6px;
}

.color-swatch .color-label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  color: #111;
}

.color-swatch:hover {
  border-color: var(--color-gold);
}

.color-swatch.active {
  border-color: var(--color-gold);
}

.color-swatch.active::after {
  content: '✓';
  margin-left: -2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #111;
}

/* Quantity */
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-muted);
  background: transparent;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.qty-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Price */
.price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.5rem;
}

.price-old {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

/* Breadcrumb */
.breadcrumb { background: transparent; }
.breadcrumb-item { color: var(--color-muted); }
.breadcrumb-item a { color: var(--color-muted); }
.breadcrumb-item a:hover { color: var(--color-gold); }
.breadcrumb-item.active { color: #111; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--color-muted); }

/* tabs */
.nav-tabs { border-bottom-color: rgba(0,0,0,0.1); }
.nav-tabs .nav-link {
  color: var(--color-muted);
  font-weight: 500;
  border: none;
}
.nav-tabs .nav-link:hover { color: #111; }
.nav-tabs .nav-link.active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  background: transparent;
}

/* Table */
.table { color: #111; --bs-table-bg: transparent; --bs-table-border-color: rgba(0,0,0,0.1); }
.table-light { --bs-table-bg: rgba(0,0,0,0.03); --bs-table-color: #111; }

/* Form */
.form-control {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  color: #111;
}
.form-control:focus {
  background: #fff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--color-gold) 25%, transparent);
  color: #111;
}
.form-control::placeholder { color: var(--color-muted); }

/* Text muted on white */
.text-muted { color: var(--color-muted) !important; }
.text-dark { color: #111 !important; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-card {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
  animation-delay: 0s;
}

/* Pagination */
.pagination .page-link {
  color: #333;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

.pagination .page-link:hover {
  color: #fff;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.pagination .page-item.active .page-link {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  color: var(--color-muted);
  background: transparent;
}

/* Admin */
.admin-sidebar {
  background-color: #1a1a1a;
  min-height: 100vh;
  color: rgba(255,255,255,0.7);
  position: sticky;
  top: 0;
}

.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.5);
  padding: 0.75rem 1.25rem;
  transition: all var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: var(--color-gold);
  background-color: rgba(255,255,255,0.06);
}

/* Cart */
.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .main-nav { display: none; }
  .header-actions .hamburger { display: flex; }
  .main-header { padding: 0.8rem 1.5rem; }
  .main-logo { font-size: 1.8rem; }
  .prev, .next { padding: 1rem; }
  .prev:hover, .next:hover { transform: scale(1.2); }
  .heading-big { font-size: 2rem; padding: 1.5rem 0 0.5rem 0; }
}

@media (max-width: 576px) {
  .main-header { padding: 0.5rem 1rem; }
  .main-logo { font-size: 1.5rem; }
  .main-logo img { max-height: 40px; }
}

@media (max-width: 768px) {
  .section-heading { font-size: 1.4rem; }
  .main-header { padding: 0.5rem 1rem; }
  .main-logo { font-size: 1.5rem; line-height: 1.3rem; }
  .main-logo img { max-height: 32px; }
  .heading-big { font-size: 1.6rem; padding: 1rem 0 0.25rem 0; }
  .section-heading::after { margin-top: 4px; }
  .price { font-size: 1rem !important; }
  .price-old { font-size: 0.8rem; }
  .card-product .card-body { padding: 0.75rem !important; }
  .card-product .card-title { font-size: 0.8rem !important; }
  section.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .banner-promo { padding: 2rem 1rem !important; }
  .banner-promo h2 { font-size: 1.4rem !important; }
  .footer .brand-text { font-size: 1.2rem; }
  .footer .pt-5 { padding-top: 2rem !important; }
  .flash-timer .timer-block { padding: 0.3rem 0.6rem; min-width: 45px; }
  .flash-timer .timer-block span { font-size: 1.1rem; }
  .filter-sidebar { padding: 1rem !important; }
  .controls { bottom: 1rem; gap: 1rem; }
  .prev, .next { padding: 0.8rem 1rem; font-size: 1rem; }
}

/* Skeleton Loading */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #e0e4e8;
  border-radius: 8px;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s infinite;
  background-size: 200% 100%;
}

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

.skeleton-img {
  aspect-ratio: 4/5;
  width: 100%;
  display: block;
}

.skeleton-text {
  height: 14px;
  width: 60%;
  margin-bottom: 8px;
}

.skeleton-text-sm {
  height: 10px;
  width: 40%;
  margin-bottom: 12px;
}

.skeleton-btn {
  height: 36px;
  width: 100%;
  border-radius: var(--radius-btn);
}

.card-img-wrapper {
  position: relative;
}

.card-img-wrapper img {
  opacity: 1;
}

.card-img-wrapper .skeleton-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-img-wrapper.loaded .skeleton-img {
  display: none;
}

/* Filter sidebar */
.filter-sidebar {
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.filter-sidebar .list-group-item {
  background: transparent;
  border-color: rgba(0,0,0,0.06);
  color: #111;
}
.filter-sidebar .list-group-item:hover,
.filter-sidebar .list-group-item.active {
  background: rgba(0,0,0,0.03);
  color: var(--color-gold);
}
.filter-sidebar .form-check-label { color: #111; }

/* Modal / Offcanvas white theme */
.modal-content { background: #fff; color: #111; border: 1px solid rgba(0,0,0,0.1); }
.modal-header { border-bottom-color: rgba(0,0,0,0.1); }
.modal-footer { border-top-color: rgba(0,0,0,0.1); }
.offcanvas { background: #fff; color: #111; }
.offcanvas-header { border-bottom-color: rgba(0,0,0,0.1); }

/* Checkout page bottom padding for mobile fixed bar */
.checkout-page { padding-bottom: 80px; }
@media (min-width: 576px) {
  .checkout-page { padding-bottom: 0; }
}

/* Checkout fixed bottom bar (mobile) */
.checkout-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 1050;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.checkout-mobile-bar .bar-info {
  line-height: 1.3;
}
.checkout-mobile-bar .bar-info .bar-total {
  font-size: 1.1rem;
}
.checkout-mobile-bar .bar-info .bar-count {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1070;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@media (max-width: 575.98px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .slide-title { font-size: 1.6rem; }
  .slide-subtitle { font-size: 0.9rem; }
  .slide-cta { padding: 0.5rem 1.5rem; font-size: 0.9rem; }
  .slider-dots { bottom: 5rem; }
  .slider-dot { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.2rem; }
  .slide-subtitle { font-size: 0.8rem; }
  .slide-overlay { padding: 1rem; }
  .controls { gap: 1rem; }
  .prev, .next { padding: 1rem 1.2rem; font-size: 1.2rem; }
}
