:root {
  /* Colors based on the provided screenshots */
  --primary-color: #0b7077;
  --primary-light: #e6f1f2;
  --secondary-color: #f7c93e;
  --secondary-light: #fef9e6;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --bg-color: #f8f9fa;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  --success: #38a169;
  --danger: #e53e3e;
  --warning: #ed8936;
  --info: #3182ce;

  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/*
 * Element-level resets are placed in @layer base so that Tailwind utility
 * classes (which live in @layer utilities) can override them.  Without this,
 * unlayered CSS always wins over any layered CSS — causing Tailwind utilities
 * like bg-blue-600 or text-white on <button> elements to be silently ignored.
 */
@layer base {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* background:none and border:none are in @layer base so Tailwind utility
     classes (bg-*, border-*) applied to <button> elements can override them. */
  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }
}

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

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-align: center;
}

.btn i {
  margin-right: 8px;
}

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

.btn--primary:hover {
  background-color: #095c62;
  box-shadow: var(--shadow-md);
}

.btn--primary:disabled,
.btn--primary[disabled] {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn--secondary:hover {
  background-color: #e5b938;
}

.btn--outline {
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  background-color: var(--white);
}

.btn--outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn--full {
  width: 100%;
}

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

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

.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  opacity: 0.9;
}

.topbar__link:hover {
  opacity: 1;
}

.topbar__phone {
  color: var(--secondary-color);
  font-weight: 600;
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255,255,255,0.2);
}

.topbar__select {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar__select select {
  background: transparent;
  border: none;
  color: var(--white);
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}

.topbar__select select option {
  color: var(--text-dark);
}

.topbar__center {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__badge {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
}

/* ═══════════════════════════════════════
   CURRENCY SWITCHER TOGGLE
═══════════════════════════════════════ */
.cur-switcher {
  position: relative;
}

.cur-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 3px 10px 3px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, border-color .18s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.4;
}
.cur-switcher__toggle:hover,
.cur-switcher__toggle.is-open {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.45);
}
.cur-switcher__icon {
  font-size: 11px;
  opacity: .8;
}
.cur-switcher__active-code {
  font-weight: 700;
  letter-spacing: .3px;
}
.cur-switcher__active-sym {
  opacity: .75;
  font-size: 11px;
}
.cur-switcher__rate {
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.cur-switcher__chevron {
  font-size: 9px;
  opacity: .7;
  transition: transform .2s;
}
.cur-switcher__toggle.is-open .cur-switcher__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.cur-switcher__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 1px 4px rgba(0,0,0,.08);
  z-index: 9999;
  overflow: hidden;
  animation: curDropIn .15s ease;
}
@keyframes curDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cur-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  transition: background .12s;
  gap: 10px;
}
.cur-switcher__option:hover {
  background: #f0f9ff;
}
.cur-switcher__option.is-active {
  background: #eff6ff;
}

.cur-switcher__opt-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cur-switcher__opt-code {
  font-weight: 700;
  color: #1e293b;
  font-size: 13px;
}
.cur-switcher__opt-sym {
  color: #64748b;
  font-size: 12px;
}
.cur-switcher__option.is-active .cur-switcher__opt-code {
  color: #0b7077;
}
.cur-switcher__option.is-active::after {
  content: '✓';
  color: #0b7077;
  font-weight: 900;
  font-size: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.cur-switcher__opt-rate {
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  font-weight: 500;
}

.cur-switcher__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 11px;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}
.cur-switcher__footer i {
  font-size: 10px;
}
.cur-switcher__refresh-link {
  color: #0b7077;
  font-weight: 600;
  text-decoration: none;
}
.cur-switcher__refresh-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cur-switcher__dropdown { left: auto; right: 0; min-width: 200px; }
  .cur-switcher__rate { display: none; }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 64px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  height: 100%;
  max-height: 70px;
  line-height: 0;
  min-width: 200px;
}

.header__logo-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.header__logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  line-height: 1;
}

.header__logo-img {
  height: 66px;
  max-height: 70px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .header { padding: 10px 0; }
  .header__inner { gap: 16px; min-height: 76px; }
  .header__logo-img { height: 72px; max-height: 76px; max-width: 240px; }
  .header__logo-text { font-size: 26px; }
  .header__logo-icon { width: 48px; height: 48px; font-size: 22px; }
}

@media (max-width: 480px) {
  .header__inner { min-height: 64px; }
  .header__logo-img { height: 60px; max-height: 64px; max-width: 180px; }
  .header__logo-text { font-size: 20px; }
  .header__logo-icon { width: 40px; height: 40px; font-size: 18px; }
}

.header__search {
  flex: 1;
  max-width: 600px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 5px 20px;
  background-color: #fcfcfc;
  transition: var(--transition);
}

.header__search:focus-within {
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 112, 119, 0.1);
}

.header__search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  outline: none;
  font-size: 14px;
}

.header__search-btn {
  color: var(--text-muted);
  font-size: 18px;
  padding: 5px;
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.header__action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  position: relative;
}

.header__action-item:hover .header__action-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.header__action-text {
  display: flex;
  flex-direction: column;
}

.header__action-label {
  font-size: 12px;
  color: var(--text-muted);
}

.header__action-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__wishlist-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes wishlist-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.wishlist-pop {
  animation: wishlist-pop 0.4s ease;
}

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.header__account:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
}

.header__dropdown-item i {
  color: var(--text-muted);
  width: 16px;
}

.header__dropdown-item:hover {
  background-color: var(--bg-color);
  color: var(--primary-color);
}

.header__dropdown-item:hover i {
  color: var(--primary-color);
}

.header__dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 8px 0;
}

.header__dropdown-item--btn {
  width: 100%;
  text-align: left;
}

/* Mobile Menu Toggle Button */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.header__mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: var(--transition);
}

.header__mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ── Mobile search toggle button ──────────────────────── */
.header__search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.header__search-toggle:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* App Media Queries */
@media (max-width: 992px) {
  .topbar__center {
    display: none;
  }
  /* Search bar stays visible on mobile: full-width row on top, under the logo/actions */
  .header__inner {
    flex-wrap: wrap;
  }
  .header__search {
    display: flex;
    position: static;
    order: 10;
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 3px 16px;
    background: #fff;
  }
  .header__search-input {
    padding: 9px 0;
    font-size: 15px;
  }
  .header__search-toggle {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .topbar__left {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
  }
  .header__account .header__action-text,
  .header__cart-btn .header__action-text {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════
   STICKY HEADER — scroll-aware shrink & hide
══════════════════════════════════════════════════════ */
.header {
  transition: padding 0.25s ease, box-shadow 0.25s ease, transform 0.3s ease;
}

.header--scrolled {
  padding: 8px 0 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.header--scrolled .header__inner {
  min-height: 70px !important;
}
.header--scrolled .header__logo-img {
  height: 52px !important;
  max-height: 56px !important;
}

.header--hidden {
  transform: translateY(-100%);
}
.header--visible {
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   PAGE LOADING PROGRESS BAR
══════════════════════════════════════════════════════ */
#pageProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 99999;
  transition: width 0.3s ease;
  pointer-events: none;
}
#pageProgressBar.is-loading {
  width: 70%;
  transition: width 2s cubic-bezier(0.1, 0.05, 0, 1);
}

/* ══════════════════════════════════════════════════════
   BACK-TO-TOP BUTTON
══════════════════════════════════════════════════════ */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(11,112,119,0.35);
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  pointer-events: none;
}
#backToTop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#backToTop:hover {
  background: #095c62;
  transform: translateY(-3px) scale(1);
  box-shadow: 0 8px 20px rgba(11,112,119,0.45);
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════ */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.products-grid .reveal-ready:nth-child(2)  { transition-delay: 0.05s; }
.products-grid .reveal-ready:nth-child(3)  { transition-delay: 0.10s; }
.products-grid .reveal-ready:nth-child(4)  { transition-delay: 0.15s; }
.products-grid .reveal-ready:nth-child(5)  { transition-delay: 0.20s; }
.products-grid .reveal-ready:nth-child(6)  { transition-delay: 0.25s; }
.features      .reveal-ready:nth-child(2)  { transition-delay: 0.08s; }
.features      .reveal-ready:nth-child(3)  { transition-delay: 0.16s; }
.features      .reveal-ready:nth-child(4)  { transition-delay: 0.24s; }
.categories-grid .reveal-ready:nth-child(n+2) { transition-delay: 0.05s; }
.categories-grid .reveal-ready:nth-child(n+4) { transition-delay: 0.10s; }
.categories-grid .reveal-ready:nth-child(n+6) { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════
   FLASH ALERT (auto-dismiss)
══════════════════════════════════════════════════════ */
.flash-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.flash-alert--success {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.flash-alert--error {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}
.flash-alert--warning {
  background: #fffbeb;
  color: #d97706;
  border-color: #fde68a;
}
.flash-alert i { flex-shrink: 0; }
.flash-alert__msg { flex: 1; }
.flash-alert__close {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.65;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  transition: opacity 0.2s;
}
.flash-alert__close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════
   CART BADGE POP ANIMATION
══════════════════════════════════════════════════════ */
@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.6); }
  70%  { transform: scale(0.85); }
  100% { transform: scale(1); }
}
.badge-pop {
  animation: badgePop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* ══════════════════════════════════════════════════════
   MOBILE NAV OPEN — lock body scroll
══════════════════════════════════════════════════════ */
body.mobile-nav-open {
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   NAVBAR MOBILE DROPDOWN ACCORDION
══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .navbar__item--dropdown .navbar__submenu,
  .navbar__item--dropdown .navbar__megamenu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar__item--dropdown.is-open .navbar__submenu,
  .navbar__item--dropdown.is-open .navbar__megamenu {
    display: block;
    max-height: 800px;
  }
}

/* ══════════════════════════════════════════════════════
   GLOBAL TOAST — improve mobile positioning
══════════════════════════════════════════════════════ */
#globalToast {
  word-break: break-word;
}
@media (max-width: 480px) {
  #globalToast {
    bottom: 12px !important;
    right: 12px !important;
    left: 12px !important;
    max-width: none !important;
  }
}

/* ══════════════════════════════════════════════════════
   AUTH PAGES — consistent with design tokens
══════════════════════════════════════════════════════ */

/* Tailwind-based auth cards still benefit from these overrides */
.auth-card-wrapper {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

/* Focus ring consistent with the rest of the site */
.auth-form input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(11,112,119,0.1) !important;
}

/* Submit button on auth pages */
.auth-submit-btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11,112,119,0.25);
}
.auth-submit-btn:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   ACCOUNT DASHBOARD — subtle card hover
══════════════════════════════════════════════════════ */
.account-card {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.account-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   WISHLIST PAGE — card stagger
══════════════════════════════════════════════════════ */
.wishlist-grid .product-card:nth-child(1) { --reveal-delay: 0ms; }
.wishlist-grid .product-card:nth-child(2) { --reveal-delay: 55ms; }
.wishlist-grid .product-card:nth-child(3) { --reveal-delay: 110ms; }
.wishlist-grid .product-card:nth-child(4) { --reveal-delay: 165ms; }
.wishlist-grid .product-card.reveal-ready {
  transition-delay: var(--reveal-delay, 0ms);
}

/* ══════════════════════════════════════════════════════
   BLOG — card hover
══════════════════════════════════════════════════════ */
.blog-card {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════════════════
   PAGINATION — consistent style
══════════════════════════════════════════════════════ */
.pagination .page-link {
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ══════════════════════════════════════════════════════
   BREADCRUMB — consistent
══════════════════════════════════════════════════════ */
.breadcrumb-item a {
  color: var(--primary-color);
  transition: color 0.18s ease;
}
.breadcrumb-item a:hover { color: var(--primary-dark); }

/* ══════════════════════════════════════════════════════
   prefers-reduced-motion — honour user preference
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-ready { opacity: 1 !important; transform: none !important; }
}
