/* ============================================================
   HEADER — matches http://72.61.151.220/
   ============================================================ */

:root {
  --primary-color: #e79520;
  --primary-color-dark: #d17a1a;
  --secondary-color: #31a1de;
  --secondary-dark: #0e8cd7;
  --accent-color: #f59e0b;
  --primary-dark: #232d4e;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background-primary: #ffffff;
  --background-secondary: #f9fafb;
  --background-light: #f8fafc;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1);
  --spacing-xs: .25rem;
  --spacing-sm: .5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: .25rem;
  --radius-md: .375rem;
  --radius-lg: .5rem;
  --radius-xl: .75rem;
  --radius-full: 9999px;
  --font-family-primary: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-secondary: "Titillium Web", -apple-system, sans-serif;
  --font-size-xs: .75rem;
  --font-size-sm: .875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --transition-fast: .15s ease-in-out;
  --transition-normal: .25s ease-in-out;
  --transition-slow: .35s ease-in-out;
}

/* ── Reset for header elements ── */
.tan-header *, .tan-mobile-nav *, .tan-wishlist *, .tan-search-overlay * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   FULL DESKTOP HEADER
   ============================================================ */
.tan-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow: visible;
  font-family: var(--font-family-primary);
}

.tan-header.header--scrolled {
  transform: translateY(-100%);
}

/* ── TOP INFO BAR ── */
.tan-header__top {
  background: white;
}

.tan-header__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.tan-header__top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  min-height: 50px;
}

/* Logo */
.tan-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.tan-header__logo img {
  width: 130px;
  height: 60px;
  object-fit: contain;
}

/* Contact info */
.tan-header__contact-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}
.tan-header__contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-primary);
}
.tan-header__contact-info-icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f1f6fe;
  color: var(--primary-color);
  font-size: .875rem;
  flex-shrink: 0;
}
.tan-header__contact-info-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.tan-header__contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .5px;
}
.tan-header__contact-info-value {
  font-size: .8rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Top actions */
.tan-header__top-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

/* Social icons */
.tan-header__social-media {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.tan-header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f1f6fe;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-normal);
  font-size: .875rem;
}
.tan-header__social-link:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Icon buttons */
.tan-header__search-btn,
.tan-header__wishlist-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tan-header__search-btn:hover {
  color: var(--primary-color);
  background: var(--background-secondary);
  transform: scale(1.1);
}
.tan-header__wishlist-btn:hover {
  color: var(--accent-color);
  background: var(--background-secondary);
  transform: scale(1.1);
}
.tan-header__search-btn svg,
.tan-header__wishlist-btn svg {
  width: 20px;
  height: 20px;
}
.tan-header__wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

/* Sign / Register */
.tan-main-button {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  line-height: 1;
  font-size: 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .35s;
  border: none;
  font-family: var(--font-family-primary);
}
.tan-main-button:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.tan-main-button--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}
.tan-main-button--outline:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── Page Banner (shared across all inner pages) ── */
.tan-page-banner {
  position: relative;
  height: 500px;
  background: url('../images/slider91.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -120px;
  padding-top: 120px;
}
.tan-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 100%);
}
.tan-page-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.tan-page-banner__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-family-primary);
}
.tan-page-banner__breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.tan-page-banner__breadcrumb a:hover { color: var(--primary-color); }
.tan-page-banner__sep { color: rgba(255,255,255,.5); font-size: .7rem; }
.tan-page-banner__breadcrumb span:last-child {
  color: var(--primary-color);
  font-size: .85rem;
  font-weight: 600;
}
.tan-page-banner .tan-page-banner__subtitle {
  color: #e79520 !important;
  font-size: clamp(.8rem, 1.5vw, .95rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: var(--font-family-primary);
}
.tan-page-banner__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-family-primary);
  letter-spacing: .5px;
}

/* ── BOTTOM NAV BAR ── */
.tan-header__bottom {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 1001;
}
.tan-header__bottom .tan-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Blue angled bg element */
.tan-header__nav-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: var(--secondary-color);
  clip-path: polygon(100% 0,100% 42%,98.5% 100%,1.5% 100%,0 42%,0% 0%);
  z-index: 999;
}

/* Nav */
.tan-header__nav {
  padding: var(--spacing-md) 0;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: visible;
  z-index: 1000;
}
.tan-header__nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  height: 100%;
}
.tan-header__nav-item {
  position: relative;
  z-index: 1003;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Last nav item (More) — align dropdown to the right edge to prevent overflow */
.tan-header__nav-item:last-child > .tan-header__dropdown-container > .tan-header__dropdown,
.tan-header__nav-item:last-child .tan-header__dropdown-container > .tan-header__dropdown {
  left: auto;
  right: 0;
}
.tan-header__dropdown-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  height: 100%;
  position: relative;
}
/* Dropdown parent links are hover-only — clicking should not navigate */
.tan-header__dropdown-container > .tan-header__nav-link {
  pointer-events: none;
  cursor: default;
}
/* Re-enable pointer events on the container so hover still works */
.tan-header__dropdown-container {
  pointer-events: auto;
}
.tan-header__nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-normal);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-base);
  font-family: inherit;
  border-radius: var(--radius-md);
  position: relative;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  height: 100%;
}
.tan-header__nav-link:hover {
  color: var(--accent-color);
  background: rgba(255,255,255,.1);
}

/* Dropdown arrow */
.tan-header__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: var(--transition-normal);
  margin-left: var(--spacing-xs);
  flex-shrink: 0;
}
.tan-header__nav-item:hover .tan-header__dropdown-arrow,
.tan-header__dropdown-container:hover .tan-header__dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Base dropdown panel ── */
.tan-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  z-index: 1002;
  list-style: none;
  margin: 0;
  padding: var(--spacing-sm) 0;
  /* overflow-y scroll only on simple dropdowns; multi-level overrides below */
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.tan-header__dropdown::-webkit-scrollbar { width: 6px; }
.tan-header__dropdown::-webkit-scrollbar-track { background: transparent; }
.tan-header__dropdown::-webkit-scrollbar-thumb { background: rgba(0,0,0,.2); border-radius: 3px; }

/* Trigger: show dropdown on hover of nav item or its container */
.tan-header__nav-item:hover > .tan-header__dropdown,
.tan-header__dropdown-container:hover > .tan-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tan-header__dropdown li { margin: 0; }

/* Link styles inside dropdown */
.tan-header__dropdown > li > a,
.tan-header__dropdown-link--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-normal);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  white-space: nowrap;
}
.tan-header__dropdown > li > a:hover,
.tan-header__dropdown-link--parent:hover {
  background: var(--background-secondary);
  color: var(--primary-color);
}

/* ── Multi-level dropdown: allow submenu to render outside ── */
.tan-header__dropdown--multi-level {
  min-width: 280px;
  /* Must be visible so the right-side submenu is not clipped */
  overflow: visible;
  max-height: none;
}

/* Items that carry a right-side submenu */
.tan-header__dropdown-item--has-submenu {
  position: relative;
}

/* Right-arrow chevron inside parent link */
.tan-header__dropdown-arrow--right {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

/* ── Submenu panel (opens to the left to avoid viewport overflow) ── */
.tan-header__dropdown--submenu {
  position: absolute;
  top: 0;
  left: auto;
  right: 100%;
  background: var(--background-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  list-style: none;
  padding: var(--spacing-sm) 0;
  z-index: 1003;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: var(--transition-normal);
}

/* Trigger: show submenu on hover of its parent item */
.tan-header__dropdown-item--has-submenu:hover > .tan-header__dropdown--submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tan-header__dropdown--submenu li a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: var(--transition-normal);
  font-family: var(--font-family-primary);
  white-space: nowrap;
}
.tan-header__dropdown--submenu li a:hover {
  background: var(--background-secondary);
  color: var(--primary-color);
}

/* ============================================================
   COMPACT / STICKY HEADER  (appears on scroll)
   ============================================================ */
.tan-header--compact {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--secondary-color);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 15px rgba(0,0,0,.15);
  height: 60px;
  overflow: visible;
  transform: translateY(-100%);
  font-family: var(--font-family-primary);
}
.tan-header--compact.active {
  transform: translateY(0);
}
.tan-header--compact .tan-header__container {
  height: 100%;
}
.tan-compact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--spacing-md);
  gap: var(--spacing-sm);
  position: relative;
}
.tan-compact-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.tan-compact-logo img {
  width: 100px;
  height: 40px;
  object-fit: contain;
  filter: brightness(10);
}
.tan-compact-actions {
  display: none;
  align-items: center;
  gap: var(--spacing-xs);
}

/* Hamburger button */
.tan-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
  flex-shrink: 0;
}
.tan-menu-btn span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-normal);
  transform-origin: center;
  display: block;
}
.tan-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.tan-menu-btn.active span:nth-child(2) { opacity: 0; }
.tan-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* Compact nav (visible on large screens in compact header) */
.tan-compact-nav {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: visible;
  height: 100%;
  justify-content: flex-end;
}
.tan-compact-nav .tan-header__nav-list {
  gap: var(--spacing-md);
  height: 100%;
  justify-content: flex-end;
}
.tan-compact-nav .tan-header__nav-link {
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: var(--spacing-xs) var(--spacing-sm);
}
.tan-compact-nav .tan-header__dropdown {
  top: calc(100% + 4px);
}

/* ============================================================
   MOBILE NAV SLIDER
   ============================================================ */
.tan-mobile-nav {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  box-shadow: 5px 0 25px rgba(0,0,0,.1);
  z-index: 2000;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-family-primary);
}
.tan-mobile-nav.active { left: 0; }

.tan-mobile-nav__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  backdrop-filter: blur(2px);
}
.tan-mobile-nav__backdrop.active { opacity: 1; visibility: visible; }

.tan-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
  background: var(--secondary-color);
  color: #fff;
  flex-shrink: 0;
}
.tan-mobile-nav__title {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #fff;
}
.tan-mobile-nav__close {
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
}
.tan-mobile-nav__close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }

.tan-mobile-nav__content { flex: 1; overflow-y: auto; padding: 0; }
.tan-mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.tan-mobile-nav__item { border-bottom: 1px solid var(--border-light); }
.tan-mobile-nav__item--has-sub { border-bottom: none; }

.tan-mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  transition: var(--transition-normal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family-primary);
}
.tan-mobile-nav__link:hover { background: var(--background-secondary); color: var(--primary-color); }
.tan-mobile-nav__link i { font-size: var(--font-size-sm); transition: transform .3s ease; color: var(--text-secondary); }
.tan-mobile-nav__link.open i { transform: rotate(180deg); }

.tan-mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--background-light);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tan-mobile-nav__sub.active { max-height: 1000px; padding: var(--spacing-sm) 0; }
.tan-mobile-nav__sub a {
  display: block;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: var(--transition-normal);
  border-left: 3px solid transparent;
  font-family: var(--font-family-primary);
}
.tan-mobile-nav__sub a:hover { background: var(--background-secondary); color: var(--primary-color); border-left-color: var(--primary-color); }

.tan-mobile-nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--transition-normal);
  font-family: var(--font-family-primary);
}
.tan-mobile-nav__sub-toggle:hover { background: var(--background-secondary); color: var(--primary-color); border-left-color: var(--primary-color); }
.tan-mobile-nav__sub-toggle i { font-size: var(--font-size-xs); transition: transform .3s ease; }
.tan-mobile-nav__sub-toggle.open i { transform: rotate(180deg); }

.tan-mobile-nav__subsub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--background-primary);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tan-mobile-nav__subsub.active { max-height: 1000px; padding: var(--spacing-sm) 0; }
.tan-mobile-nav__subsub a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm) var(--spacing-3xl);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: var(--transition-normal);
  border-left: 3px solid transparent;
  font-family: var(--font-family-primary);
}
.tan-mobile-nav__subsub a:hover { background: var(--background-secondary); color: var(--primary-color); border-left-color: var(--primary-color); }

/* ============================================================
   WISHLIST SLIDER
   ============================================================ */
.tan-wishlist {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: linear-gradient(to bottom, white 0%, #fafafa 100%);
  box-shadow: -8px 0 32px rgba(0,0,0,.15), -2px 0 8px rgba(0,0,0,.1);
  z-index: 2000;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0,0,0,.05);
  font-family: var(--font-family-primary);
}
.tan-wishlist.active { right: 0; }

.tan-wishlist__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.tan-wishlist__backdrop.active { opacity: 1; visibility: visible; }

.tan-wishlist__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl);
  border-bottom: 2px solid rgba(0,0,0,.05);
  background: linear-gradient(135deg, rgba(255,140,0,.05), rgba(255,140,0,.02));
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.tan-wishlist__title {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tan-wishlist__title i { color: var(--accent-color); font-size: var(--font-size-lg); -webkit-text-fill-color: var(--accent-color); }
.tan-wishlist__count {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  background: rgba(255,140,0,.1);
  padding: .25rem .5rem;
  border-radius: var(--radius-full);
  -webkit-text-fill-color: var(--text-secondary);
}
.tan-wishlist__close {
  background: rgba(0,0,0,.05);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-full);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
}
.tan-wishlist__close:hover { background: rgba(255,140,0,.1); color: var(--accent-color); transform: rotate(90deg) scale(1.1); }

.tan-wishlist__content {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-lg);
}
.tan-wishlist__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: var(--spacing-2xl);
}
.tan-wishlist__empty i { font-size: 4rem; color: var(--text-light); margin-bottom: var(--spacing-lg); }
.tan-wishlist__empty h4 { font-size: var(--font-size-xl); color: var(--text-primary); margin-bottom: var(--spacing-sm); }
.tan-wishlist__empty p { color: var(--text-secondary); margin-bottom: var(--spacing-xl); }
.tan-wishlist__explore {
  background: var(--primary-color);
  color: #fff;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-normal);
}
.tan-wishlist__explore:hover { background: var(--primary-color-dark); transform: translateY(-2px); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.tan-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  font-family: var(--font-family-primary);
}
.tan-search-overlay.active { opacity: 1; visibility: visible; }
.tan-search-overlay.active .tan-search-overlay__content { transform: translateY(0); }

.tan-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
}
.tan-search-overlay__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #ffffff, rgba(255,255,255,.98));
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-2xl);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.tan-search-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid rgba(0,0,0,.05);
}
.tan-search-overlay__header h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tan-search-overlay__close {
  background: rgba(0,0,0,.05);
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-full);
  transition: all .2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tan-search-overlay__close:hover { color: var(--primary-color); background: rgba(37,99,235,.1); transform: rotate(90deg) scale(1.1); }
.tan-search-overlay__close svg { width: 20px; height: 20px; }

.tan-search-overlay__form {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: var(--spacing-sm);
}
.tan-search-overlay__input {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-lg);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  outline: none;
  font-family: var(--font-family-primary);
  transition: border-color .2s;
}
.tan-search-overlay__input:focus { border-color: var(--secondary-color); }
.tan-search-overlay__search-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}
.tan-search-overlay__search-btn:hover { background: var(--secondary-dark); }
.tan-search-overlay__search-btn svg { width: 20px; height: 20px; }

/* ============================================================
   BODY OFFSET — push page content below fixed header
   ============================================================ */
body { padding-top: 120px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── Desktop (≥1025px) ── */
@media (min-width: 1025px) {
  /* Compact header only appears on scroll, hidden by default */
  .tan-header--compact { transform: translateY(-100%); background: var(--secondary-color); }
  .tan-header--compact.active { transform: translateY(0); }
  /* Show desktop nav, hide mobile icons & hamburger in compact */
  .tan-compact-nav { display: flex; }
  .tan-compact-actions { display: none; }
  .tan-menu-btn { display: none; }
  /* Logo stays white on blue compact header */
  .tan-compact-logo img { filter: brightness(10); }
}

/* ── Mobile (≤1024px) ── */
@media (max-width: 1024px) {
  /* Hide full desktop header */
  .tan-header { display: none; }
  /* Compact header always visible — white background */
  .tan-header--compact {
    transform: translateY(0) !important;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
  }
  /* Show hamburger (dark lines for white bg) and compact action icons */
  .tan-menu-btn { display: flex !important; }
  .tan-menu-btn span { background: var(--text-primary); }
  /* Center the logo */
  .tan-compact-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* Logo full color on white bg */
  .tan-compact-logo img { filter: none; }
  /* Show search/wishlist on right */
  .tan-compact-actions { display: flex; }
  /* Icon colors dark for white bg */
  .tan-compact-actions .tan-header__search-btn,
  .tan-compact-actions .tan-header__wishlist-btn {
    color: var(--text-primary);
  }
  /* Hide desktop nav in compact header */
  .tan-compact-nav { display: none; }
  body { padding-top: 60px; }
  .tan-wishlist { width: 90vw; right: -90vw; max-width: 400px; }
}

@media (max-width: 480px) {
  .tan-mobile-nav { width: 90vw; left: -90vw; max-width: 100%; }
}

@media (max-width: 768px) {
  .tan-header__contact-info { display: none; }
  .tan-header__social-media { display: none; }
}
