:root {
  --ink: #0f172a;
  --muted: #64748b;
  --brand: #0f766e;
  --accent: #f97316;
  --brand-2: #2563eb;
  --accent-2: #f43f5e;
  --light: #f8fafc;
  --bg: #f1f5f9;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}
* { box-sizing: border-box; }
body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, #e2f3f0, #f8fafc 45%, #fff7ed),
              radial-gradient(circle at bottom right, rgba(37,99,235,0.08), transparent 50%);
  color: var(--ink);
  scroll-behavior: smooth;
}
.page-anim {
  animation: pageReveal 0.8s ease-out both;
}
.navbar {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}
.navbar-ow {
  background: linear-gradient(135deg, rgba(15,118,110,0.14), rgba(37,99,235,0.08), rgba(249,115,22,0.08));
  backdrop-filter: blur(12px);
}
.navbar-ow .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text {
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #0f172a, #0f766e, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  text-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
  animation: brandGlow 3.5s ease-in-out infinite;
}
.brand-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0f766e, #2563eb, #f97316);
  transform: scaleX(0.3);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.navbar-brand:hover .brand-text::after {
  transform: scaleX(1);
  opacity: 1;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #f97316, #f43f5e);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.25);
}
.navbar-ow .nav-link {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}
.navbar-ow .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0f766e, #2563eb, #f97316);
  transition: width 0.25s ease;
}
.navbar-ow .nav-link:hover::after,
.navbar-ow .nav-link:focus::after {
  width: 100%;
}
.navbar-ow .nav-link:hover {
  color: #0f766e;
}
.hero {
  padding: 64px 0;
  background: linear-gradient(120deg, rgba(15,118,110,0.2), rgba(37,99,235,0.18), rgba(249,115,22,0.18));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(249,115,22,0.25), transparent 70%);
  top: -60px;
  right: -40px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 70%);
  bottom: -120px;
  left: -60px;
  animation: drift 10s ease-in-out infinite;
}
.hero-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.float-card { animation: float 5s ease-in-out infinite; }
.stat-card { animation: pulse 2.8s ease-in-out infinite; }
.hero-premium {
  position: relative;
  padding: 64px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9, #ecfeff, #fff7ed);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15,118,110,0.25), transparent 70%);
  top: -80px;
  left: -60px;
  animation: float 6s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 220px;
  height: 220px;
  top: 40px;
  left: auto;
  right: -40px;
  background: radial-gradient(circle, rgba(249,115,22,0.25), transparent 70%);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.metric-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  animation: rise 1s ease-in both;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.premium-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  border: 1px solid rgba(15, 118, 110, 0.08);
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
}
.premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(15,118,110,0.08), rgba(37,99,235,0.08), rgba(249,115,22,0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.premium-card:hover::after {
  opacity: 1;
}
.badge-soft {
  background: rgba(15,118,110,0.12);
  color: var(--brand);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}
.product-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border: 1px solid rgba(15, 118, 110, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(37,99,235,0.08), rgba(249,115,22,0.1));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.product-card:hover::after {
  opacity: 1;
}
.card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  animation: cardLift 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: linear-gradient(135deg, #0f766e, #2563eb);
  border: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.3);
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 0.6s ease;
}
.btn:hover::after {
  left: 140%;
}
.btn-outline-dark {
  border-color: rgba(15, 118, 110, 0.4);
  color: #0f766e;
}
.btn-outline-dark:hover {
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
}
.card-img-top {
  height: 220px;
  object-fit: contain;
  background: #f8fafc;
}
#mainProductImage {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f8fafc;
}
.section-luxe {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(241,245,249,0.75));
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  animation: sectionFloat 0.8s ease both;
}
.slice-in {
  animation: sliceReveal 0.9s ease both;
  clip-path: inset(0 0 0 0 round 22px);
}
.section-luxe::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,0.16), transparent 70%);
  top: -80px;
  left: -60px;
}
.section-luxe::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.16), transparent 70%);
  bottom: -100px;
  right: -70px;
}
.deal-timer {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(226,232,240,0.7));
}
.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}
.timer-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: #0f172a;
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
}
.timer-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.timer-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(226, 232, 240, 0.7);
}
@media (max-width: 576px) {
  .timer-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .timer-value {
    font-size: 1.3rem;
  }
}
.auto-scroll {
  overflow: hidden;
  position: relative;
}
.auto-scroll-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.auto-scroll-item {
  min-width: 240px;
  flex: 0 0 auto;
}
.auto-scroll:hover .auto-scroll-track {
  animation-play-state: paused;
}
.luxe-card {
  transform: translateY(0);
  animation: cardReveal 0.8s ease both;
}
.scroll-fade {
  animation: scrollFloat 0.9s ease both;
}
.section-luxe .scroll-fade:nth-child(1) { animation-delay: 0.05s; }
.section-luxe .scroll-fade:nth-child(2) { animation-delay: 0.1s; }
.section-luxe .scroll-fade:nth-child(3) { animation-delay: 0.15s; }
.section-luxe .scroll-fade:nth-child(4) { animation-delay: 0.2s; }
.section-luxe .scroll-fade:nth-child(5) { animation-delay: 0.25s; }
.section-luxe .scroll-fade:nth-child(6) { animation-delay: 0.3s; }
.luxe-card .card-body {
  position: relative;
  z-index: 2;
}
.luxe-card:hover {
  transform: translateY(-8px) scale(1.01);
}
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex; justify-content: space-around; padding: 12px 0; z-index: 999;
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.1);
}
.bottom-nav a { color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.bottom-nav a.active { color: var(--brand); }
.footer {
  background: linear-gradient(140deg, #0f172a 0%, #0f3d3a 40%, #1d1b3a 100%);
  color: #e2e8f0;
  padding: 56px 0 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%);
  top: -80px;
  right: -60px;
}
.footer::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 70%);
  bottom: -140px;
  left: -80px;
}
.footer h5,
.footer h6 {
  color: #fff;
  font-weight: 600;
}
.footer-brand {
  display: grid;
  gap: 14px;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #ffffff, #93c5fd, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.3);
  position: relative;
}
.footer-icon::before {
  content: "\1F6D2";
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}
.footer-tagline {
  color: rgba(226, 232, 240, 0.85);
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}
.footer-title {
  color: #f8fafc;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.footer-links li + li {
  margin-top: 8px;
}
.footer-links a {
  color: rgba(226, 232, 240, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  color: rgba(226, 232, 240, 0.82);
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.15);
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.85rem;
}
.footer a {
  color: #cbd5f5;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.purchase-pop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92));
  color: #f8fafc;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 1050;
}
.purchase-pop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.purchase-badge {
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}
.purchase-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #f8fafc;
}
.product-thumb.active {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
@media (max-width: 576px) {
  .purchase-pop {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
.fade-in { animation: fadeIn 0.8s ease-in; }
.stagger-in { animation: staggerIn 0.8s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }
@keyframes pageReveal { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }
@keyframes cardLift { from { opacity: 0; transform: translateY(10px) scale(0.98);} to { opacity: 1; transform: translateY(0) scale(1);} }
@keyframes staggerIn { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: translateY(0);} }
@keyframes glowPulse { 0%,100% { box-shadow: 0 12px 30px rgba(15,23,42,0.12);} 50% { box-shadow: 0 18px 42px rgba(37,99,235,0.18);} }
@keyframes drift { 0%,100% { transform: translateY(0);} 50% { transform: translateY(12px);} }
@keyframes brandGlow { 0%,100% { filter: drop-shadow(0 6px 12px rgba(15,118,110,0.25)); } 50% { filter: drop-shadow(0 10px 18px rgba(37,99,235,0.35)); } }
@keyframes sectionFloat { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }
@keyframes cardReveal { from { opacity: 0; transform: translateY(14px) scale(0.98);} to { opacity: 1; transform: translateY(0) scale(1);} }
@keyframes sliceReveal { from { opacity: 0; clip-path: inset(0 100% 0 0 round 22px);} to { opacity: 1; clip-path: inset(0 0 0 0 round 22px);} }
@keyframes scrollFloat { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .auto-scroll-track { animation: none; }
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 30px rgba(15,23,42,0.12);} 50% { box-shadow: 0 18px 40px rgba(15,23,42,0.2);} }
@keyframes rise { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: translateY(0);} }
@media (min-width: 992px) {
  .bottom-nav { display: none; }
}
