/* =========================================================
   TiCi Aquatics — Main Stylesheet
   Fonts: Playfair Display + DM Sans
   Palette: Deep ocean teal + sand gold + midnight
   ========================================================= */

:root {
  --teal:       #0a7e6e;
  --teal-dark:  #065248;
  --teal-light: #12a88e;
  --teal-pale:  #e0f4f1;
  --gold:       #c9a84c;
  --gold-light: #f0d890;
  --sand:       #f5ede0;
  --midnight:   #0d1a18;
  --dark:       #1a2e2a;
  --text:       #2c3e3a;
  --muted:      #6b8280;
  --border:     #d4e8e4;
  --white:      #ffffff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(10,126,110,.10);
  --shadow-lg:  0 12px 48px rgba(10,126,110,.18);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 700; color: var(--dark); line-height: 1.25; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-serif);
  color: var(--dark);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

/* ─── Preloader ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--midnight);
  display: grid; place-items: center; z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.fish-loader { font-size: 2.5rem; animation: swim 1.2s ease-in-out infinite; }
.preloader-text {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1rem;
  margin-top: .5rem;
  letter-spacing: .15em;
}
.preloader-inner { text-align: center; }
@keyframes swim { 0%,100%{transform:translateX(-8px)} 50%{transform:translateX(8px)} }

/* ─── Flash Alert ─────────────────────────────────────────── */
.flash-alert {
  position: fixed; top: 80px; right: 20px; z-index: 8000;
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideIn .4s ease forwards;
  max-width: 420px;
}
.flash-success { background: var(--teal); color: #fff; }
.flash-error   { background: #c0392b; color: #fff; }
.flash-alert button { background: none; border: none; color: inherit; cursor: pointer; margin-left: auto; font-size: 1rem; }
@keyframes slideIn  { from{transform:translateX(120%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes slideOut { from{transform:translateX(0);opacity:1}   to{transform:translateX(120%);opacity:0} }

/* ─── Navbar ──────────────────────────────────────────────── */
.tici-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.tici-navbar.scrolled {
  background: rgba(13,26,24,.96);
  backdrop-filter: blur(20px);
  padding: .6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.navbar-brand {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--font-serif);
}
.brand-icon { font-size: 1.4rem; }
.brand-name {
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--teal-light);
  align-self: flex-end;
  margin-bottom: 3px;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500; font-size: .9rem;
  padding: .4rem .7rem !important;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--teal-light) !important; }
.nav-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight);
  font-size: .6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: var(--font-mono);
  letter-spacing: .05em;
  vertical-align: middle;
  margin-right: 2px;
}
.nav-icon-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: background var(--transition);
}
.nav-icon-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--midnight);
  font-size: .6rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}
.dropdown-menu.mega-menu {
  background: var(--midnight);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .5rem;
  min-width: 220px;
}
.dropdown-menu.mega-menu .dropdown-item {
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  font-size: .875rem;
  padding: .5rem .75rem;
  transition: all var(--transition);
}
.dropdown-menu.mega-menu .dropdown-item:hover {
  background: var(--teal);
  color: #fff;
}
.user-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 220px;
}
.user-menu-header { padding: .75rem; }
.user-menu .dropdown-item {
  border-radius: 6px;
  font-size: .875rem;
  padding: .5rem .75rem;
  gap: .5rem; display: flex; align-items: center;
}
.user-menu .dropdown-item:hover { background: var(--teal-pale); color: var(--teal-dark); }
.navbar-toggler { border: none; color: #fff; font-size: 1.4rem; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.btn-tici-sm {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: .35rem .9rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  transition: background var(--transition);
}
.btn-tici-sm:hover { background: var(--teal-dark); color: #fff; }

/* ─── Search Overlay ──────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,26,24,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-box { width: 100%; max-width: 680px; padding: 1.5rem; }
.search-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.5rem; position: absolute; top: 1.5rem; right: 2rem;
  cursor: pointer; transition: color var(--transition);
}
.search-close:hover { color: #fff; }
.search-input-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: .75rem 1.25rem;
  gap: .75rem;
}
.search-input-wrap i { color: rgba(255,255,255,.4); font-size: 1.1rem; }
.search-input-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: var(--font-sans); font-size: 1.1rem;
}
.search-input-wrap input::placeholder { color: rgba(255,255,255,.3); }
.search-input-wrap button {
  background: var(--teal); color: #fff; border: none;
  padding: .4rem 1rem; border-radius: 8px; font-size: .875rem;
  cursor: pointer; transition: background var(--transition);
}
.search-input-wrap button:hover { background: var(--teal-dark); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-tici {
  background: var(--teal); color: #fff; border: none;
  padding: .7rem 1.75rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-tici:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,126,110,.3); }
.btn-tici-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
  padding: .65rem 1.6rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-tici-outline:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--midnight); border: none;
  padding: .7rem 1.75rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-gold:hover { background: #b8923e; color: var(--midnight); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

/* ─── Cards ───────────────────────────────────────────────── */
.eco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.eco-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.eco-card-img {
  height: 220px;
  background: var(--teal-pale);
  overflow: hidden;
  position: relative;
}
.eco-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.eco-card:hover .eco-card-img img { transform: scale(1.06); }
.eco-card-badges {
  position: absolute; top: .75rem; left: .75rem;
  display: flex; gap: .35rem; flex-wrap: wrap;
}
.badge-eco {
  background: rgba(10,126,110,.9);
  color: #fff; font-size: .65rem;
  font-family: var(--font-mono);
  letter-spacing: .08em; padding: 3px 8px;
  border-radius: 20px;
}
.eco-card-body { padding: 1.25rem; }
.eco-card-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .35rem; }
.eco-card-price { font-family: var(--font-mono); font-size: 1rem; color: var(--teal); font-weight: 500; }
.eco-card-actions { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.eco-card-actions .btn-xs {
  flex: 1; min-width: 0;
  font-size: .72rem; padding: .4rem .5rem;
  border-radius: 8px; text-align: center;
  font-weight: 600; white-space: nowrap;
}

/* Product cards */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-img {
  height: 200px; overflow: hidden;
  background: var(--sand);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1rem; }
.product-card-name { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: .25rem; }
.product-card-price { font-family: var(--font-mono); color: var(--teal); font-weight: 600; }
.product-card-sale { color: var(--muted); text-decoration: line-through; font-size: .8rem; }
.wishlist-btn {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(255,255,255,.9); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  font-size: .95rem; color: var(--muted);
}
.wishlist-btn:hover, .wishlist-btn.active { color: #e74c3c; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--midnight);
}
.hero-video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d2a25 0%, #0a7e6e20 50%, #0d1a18 100%);
}
.hero-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a7e6e' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 5rem;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: inline-block; margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.65);
  max-width: 540px; margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--gold); font-weight: 700;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .75rem;
  text-align: center; animation: bounce 2s infinite;
  cursor: pointer;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Aquarium showcase image */
.hero-showcase {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-aquarium-frame {
  width: 100%; max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0a7e6e22, #12a88e44);
  border-radius: 24px;
  border: 1px solid rgba(10,126,110,.3);
  box-shadow: 0 0 80px rgba(10,126,110,.25), inset 0 0 40px rgba(10,126,110,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-aquarium-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,126,110,.2));
}
.hero-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(18,168,142,.15);
  animation: float-up 4s infinite;
}
@keyframes float-up {
  0%{transform:translateY(100px);opacity:0}
  20%{opacity:.6}
  100%{transform:translateY(-200px);opacity:0}
}

/* ─── Section styles ──────────────────────────────────────── */
.section-py { padding: 80px 0; }
.section-py-lg { padding: 100px 0; }
.bg-teal-pale { background: var(--teal-pale); }
.bg-dark-teal { background: var(--midnight); }
.bg-sand { background: var(--sand); }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1rem;
  text-align: center; transition: all var(--transition);
  cursor: pointer;
}
.cat-card:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card:hover .cat-icon, .cat-card:hover .cat-name { color: #fff; }
.cat-icon { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.cat-name { font-family: var(--font-serif); font-size: 1rem; color: var(--dark); }

/* DIY Builder teaser */
.builder-teaser {
  background: linear-gradient(135deg, var(--teal-dark), var(--midnight));
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative; overflow: hidden;
}
.builder-teaser::before {
  content: '🌿';
  position: absolute; right: -1rem; bottom: -2rem;
  font-size: 10rem; opacity: .06;
}

/* Step cards for builder */
.builder-step {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.builder-step.active, .builder-step:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10,126,110,.1);
}
.builder-step-num {
  width: 40px; height: 40px;
  background: var(--teal-pale); color: var(--teal);
  border-radius: 50%;
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.builder-step.active .builder-step-num, .builder-step:hover .builder-step-num {
  background: var(--teal); color: #fff;
}

/* Price summary */
.price-summary {
  background: var(--midnight);
  color: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky; top: 100px;
}
.price-summary-title { font-family: var(--font-serif); color: var(--gold); margin-bottom: 1rem; }
.price-item { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .875rem; }
.price-item:last-child { border: none; }
.price-total { font-family: var(--font-mono); font-size: 1.4rem; color: var(--gold); font-weight: 700; }

/* 360 Viewer */
.viewer-360 {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.viewer-360:active { cursor: grabbing; }
.viewer-360-img { width: 100%; display: block; user-select: none; }
.viewer-360-hint {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.6); color: #fff;
  padding: .4rem 1rem; border-radius: 20px;
  font-size: .75rem; font-family: var(--font-mono);
  display: flex; align-items: center; gap: .4rem;
}

/* Dashboard */
.dashboard-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.dashboard-card:hover { box-shadow: var(--shadow); }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.stat-card-val { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--teal); }
.stat-card-label { font-size: .8rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: .05em; }

/* Order status badges */
.status-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .7rem; border-radius: 20px;
  font-size: .7rem; font-weight: 600; font-family: var(--font-mono);
  letter-spacing: .05em;
}
.status-pending    { background: #fff3e0; color: #e65100; }
.status-production { background: #e3f2fd; color: #1565c0; }
.status-assembly   { background: #f3e5f5; color: #6a1b9a; }
.status-dispatch   { background: #e8f5e9; color: #2e7d32; }
.status-delivered  { background: #e0f2f1; color: #00695c; }
.status-cancelled  { background: #fce4ec; color: #b71c1c; }
.status-new        { background: #e3f2fd; color: #1565c0; }
.status-confirmed  { background: #e8f5e9; color: #2e7d32; }
.status-paid       { background: #e8f5e9; color: #2e7d32; }

/* Tables */
.tici-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: .875rem;
}
.tici-table th {
  background: var(--teal-pale); color: var(--teal-dark);
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .75rem 1rem; font-weight: 600;
}
.tici-table th:first-child { border-radius: var(--radius) 0 0 0; }
.tici-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.tici-table td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.tici-table tr:hover td { background: rgba(10,126,110,.03); }

/* Forms */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,126,110,.12);
  outline: none;
}
.form-label {
  font-size: .82rem; font-weight: 600;
  color: var(--dark); margin-bottom: .35rem;
  font-family: var(--font-mono); letter-spacing: .03em;
}

/* Consultation form */
.consult-type-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center; cursor: pointer;
  transition: all var(--transition);
}
.consult-type-card:hover,
.consult-type-card.selected {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.consult-type-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }

/* Blog */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--teal-pale); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-tag {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.blog-title { font-family: var(--font-serif); font-size: 1.1rem; margin: .4rem 0 .5rem; }

/* Testimonials */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem; line-height: 1;
  color: var(--teal-pale);
  position: absolute; top: .5rem; right: 1.25rem;
}
.stars { color: var(--gold); font-size: .9rem; }

/* Sidebar for shop */
.filter-sidebar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.filter-heading {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .75rem;
}

/* Footer */
.tici-footer { background: var(--midnight); color: rgba(255,255,255,.7); }
.footer-top { padding: 70px 0 40px; }
.footer-brand {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--font-serif); margin-bottom: 1rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-tagline { color: var(--gold); font-style: italic; font-family: var(--font-serif); margin-bottom: .75rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 320px; }
.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .95rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-heading {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1rem; font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact { list-style: none; }
.footer-contact li {
  font-size: .875rem; color: rgba(255,255,255,.55);
  margin-bottom: .6rem; display: flex; align-items: flex-start; gap: .5rem;
}
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--teal-light); }
.footer-contact i { color: var(--teal-light); margin-top: .15rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); margin-left: 1.25rem; transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 54px; height: 54px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Animate on scroll */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
[data-aos].in-view { opacity: 1; transform: none; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].in-view { transform: none; }

/* ─── Admin Panel ─────────────────────────────────────────── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--midnight);
  position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto; z-index: 100;
  transition: transform .3s;
}
.admin-sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: .5rem;
}
.admin-sidebar-brand .brand-name { color: #fff; font-family: var(--font-serif); font-size: 1.2rem; }
.admin-nav { padding: 1rem 0; }
.admin-nav-label {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3); padding: .75rem 1.25rem .35rem;
}
.admin-nav-link {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem 1.25rem;
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link i { font-size: 1rem; width: 18px; }
.admin-nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-nav-link.active { color: var(--teal-light); background: rgba(10,126,110,.15); border-left-color: var(--teal-light); }
.admin-main {
  margin-left: 260px;
  flex: 1;
  background: #f4f7f6;
  min-height: 100vh;
}
.admin-topbar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-page-title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--dark); }
.admin-content { padding: 1.75rem; }
.admin-stat {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
.admin-stat-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.admin-stat-val { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--dark); }
.admin-stat-label { font-size: .75rem; color: var(--muted); }
.admin-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-card-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card-title { font-weight: 600; font-size: .95rem; color: var(--dark); }
.admin-card-body { padding: 1.25rem; }
@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: none; }
  .admin-main { margin-left: 0; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-py { padding: 50px 0; }
  .hero-content { padding: 7rem 0 3rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-showcase { margin-top: 2rem; }
  .builder-teaser { padding: 2rem 1.25rem; }
  .price-summary { position: static; margin-top: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-card-actions .btn-xs { font-size: .65rem; }
}

/* ─── Utilities ───────────────────────────────────────────── */
.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted-custom { color: var(--muted) !important; }
.bg-teal { background: var(--teal) !important; }
.fw-serif { font-family: var(--font-serif); }
.fw-mono { font-family: var(--font-mono); }
.rounded-tici { border-radius: var(--radius-lg); }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-pale), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
