/* ===== Zero Lifestyle Theme Overrides ===== */

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --zero-green: #1a4d3e;
  --zero-accent: #2d6a4f;
  --header-height: 64px;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track span {
  display: inline-block;
  animation: marquee 30s linear infinite;
  padding-right: 100%;
}

.announcement-bar strong {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Zero Header */
.header-zero {
  background: var(--black);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-zero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-zero {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo-z {
  width: 32px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-zero {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-zero a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .3s, text-shadow .3s;
  white-space: nowrap;
}

.nav-zero a:hover,
.nav-zero a.active {
  color: var(--white);
  text-shadow: 0 0 20px rgba(255,255,255,.5);
}

.header-zero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  border-radius: 50%;
  transition: background .3s;
}

.icon-btn:hover { background: rgba(255,255,255,.1); }

.header-zero .cart-badge {
  top: 2px;
  right: 2px;
  background: var(--white);
  color: var(--black);
  width: 16px;
  height: 16px;
  font-size: 9px;
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  padding: 20px 32px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-input-zero {
  width: 100%;
  padding: 14px 48px 14px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 15px;
}

.search-input-zero::placeholder { color: rgba(255,255,255,.4); }
.search-input-zero:focus { outline: none; border-color: rgba(255,255,255,.4); }

.search-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  font-size: 18px;
}

.search-dropdown-zero {
  position: static;
  margin-top: 12px;
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,.1);
}

.search-dropdown-zero .search-result-item { color: var(--white); }
.search-dropdown-zero .search-result-info h4 { color: var(--white); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + 36px);
  left: 0;
  right: 0;
  background: var(--black);
  padding: 16px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all .3s;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover { background: rgba(255,255,255,.08); }

.header-zero .mobile-menu-btn {
  display: none;
  color: var(--white);
  font-size: 22px;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.6) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-slide-badge {
  display: inline-block;
  background: var(--zero-accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-slide-content h2 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-slide-sub {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 32px;
}

.hero-slide-products {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-slide-products img {
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  animation: float 4s ease-in-out infinite;
}

.hero-slide-products img:nth-child(2) { animation-delay: .5s; }
.hero-slide-products img:nth-child(3) { animation-delay: 1s; }

.btn-live {
  background: var(--white);
  color: var(--black);
  padding: 14px 40px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  display: inline-block;
}

.btn-live:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255,255,255,.3);
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .3s;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover { background: rgba(255,255,255,.25); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* Category Quick Nav */
.category-quick-nav {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.category-quick-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.category-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .3s;
}

.category-quick-item:hover { transform: translateY(-4px); }

.category-quick-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: border-color .3s, box-shadow .3s;
}

.category-quick-item:hover .category-quick-icon {
  border-color: var(--black);
  box-shadow: var(--shadow-md);
}

.category-quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-quick-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}

/* Zero Product Cards */
.products-grid-zero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zero-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

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

.zero-product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.zero-product-img-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 20px 16px 24px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f9f9fb 0%, #f0f0f3 100%);
  position: relative;
  overflow: hidden;
}

.zero-product-img-wrap {
  display: none;
}

.zero-product-image .product-photo {
  display: block;
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 78%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zero-product-card:hover .zero-product-image .product-photo {
  transform: scale(1.08) translateY(-4px);
}

.zero-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.zero-new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
}

.zero-product-body { padding: 16px; }

.zero-product-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.zero-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: transform .2s;
}

.zero-color-dot:hover { transform: scale(1.15); }

.zero-color-more {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}

.zero-product-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.zero-product-desc {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.zero-product-reviews {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.zero-product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.zero-price-old {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.zero-price-sale {
  font-size: 18px;
  font-weight: 800;
}

.btn-zero {
  width: 100%;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: all .3s;
  border: 2px solid var(--black);
}

.btn-zero:hover {
  background: var(--white);
  color: var(--black);
}

.btn-zero-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: all .3s;
}

.btn-zero-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* Section Zero Style */
.section-zero { padding: 56px 0; }

.section-zero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-zero-title {
  font-size: 24px;
  font-weight: 800;
}

.section-zero-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2px;
  transition: color .3s;
}

.section-zero-link:hover { color: var(--black); }

/* Trust Carousel */
.trust-carousel {
  background: var(--white);
  padding: 32px 0;
  overflow: hidden;
}

.trust-carousel-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.trust-carousel-item {
  text-align: center;
  min-width: 160px;
}

.trust-carousel-item h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.trust-carousel-item p {
  font-size: 12px;
  color: var(--gray-500);
}

/* Lifestyle Grid */
.lifestyle-section { padding: 56px 0; background: #f5f5f5; }

.lifestyle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lifestyle-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lifestyle-banner {
  grid-row: span 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
}

.lifestyle-banner-overlay .year {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  opacity: .9;
  margin-bottom: 4px;
}

.lifestyle-banner-overlay h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: all .3s;
}

.btn-read-more:hover {
  background: var(--white);
  color: var(--black);
}

.lifestyle-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 230px;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

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

.lifestyle-card-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lifestyle-card-header span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.lifestyle-card-arrow {
  width: 32px;
  height: 32px;
  background: #1e3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: transform .3s;
}

.lifestyle-card:hover .lifestyle-card-arrow { transform: translateX(4px); }

.lifestyle-card img {
  max-height: 140px;
  object-fit: contain;
  margin-top: 20px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
  transition: transform .3s;
}

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

/* Featured Launches */
.featured-launches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-launch-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s;
}

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

.featured-launch-image {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.featured-launch-image img {
  max-height: 160px;
  object-fit: contain;
}

.featured-launch-body { padding: 20px; }

.featured-launch-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.featured-launch-body .subtitle {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.featured-launch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.featured-launch-tags span {
  font-size: 11px;
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--gray-600);
}

.featured-launch-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.featured-launch-stats strong { color: var(--black); }

/* Tabs */
.tabs-zero {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.tab-zero {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .3s;
  margin-bottom: -1px;
}

.tab-zero.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Footer Zero */
.footer-zero {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding: 56px 0 24px;
}

.footer-zero-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.logo-zero-footer .logo-z { border-color: rgba(255,255,255,.6); }
.logo-zero-footer .logo-text { color: var(--white); }

.footer-zero-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-zero-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-zero .footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-zero .footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: block;
  padding: 3px 0;
  transition: color .3s;
}

.footer-zero .footer-col a:hover { color: var(--white); }

.footer-zero-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-zero-bottom .footer-social {
  display: flex;
  gap: 16px;
}

.footer-zero-bottom .footer-social a {
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.footer-zero-bottom .footer-social a:hover { color: var(--white); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Promise Section */
.promise-section {
  padding: 64px 0;
  background: var(--white);
}

.promise-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 700px;
}

.promise-section > .container > p {
  color: var(--gray-600);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promise-card {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.promise-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.promise-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-zero { display: none; }
  .header-zero .mobile-menu-btn { display: block; }
  .products-grid-zero { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-layout { grid-template-columns: 1fr; }
  .lifestyle-cards-grid { grid-template-columns: 1fr 1fr; }
  .featured-launches { grid-template-columns: 1fr; }
  .footer-zero-top { grid-template-columns: 1fr; }
  .footer-zero-links { grid-template-columns: repeat(2, 1fr); }
  .category-quick-inner { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .products-grid-zero:not(.products-grid-zero--scroll) { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .hero-carousel { height: 420px; }
  .hero-slide-products img { height: 120px; }
  .category-quick-inner { gap: 16px; }
  .category-quick-icon { width: 56px; height: 56px; }
}
