/* ============================================
   FITZONE — style.css
   Clean Dark Theme (old orange theme removed)
   Author: Hassan Javed © 2026
   ============================================ */
.container {
  max-width: 1200px !important;
  margin: 15px auto;
  padding: 0 1.5rem;
}

/* Prevent jerk when cart opens */
body.cart-open {
  overflow: hidden;
}

/* ══════════════════════════════════════════
   ROOT VARIABLES
   ══════════════════════════════════════════ */
:root {
  --primary: #1a1a2e;
  --accent:  #e94560;
  --gold:    #f5a623;
  --light-bg: #f8f9fc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  transition: background 0.4s;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(233, 69, 96, 0.12);
  color: #e94560 !important;
}

/* ══════════════════════════════════════════
   CART ICON (Navbar)
   ══════════════════════════════════════════ */
.cart-icon-wrap {
  position: relative;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100%;
  background: #fff;
  z-index: 2001;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(.25, .8, .25, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h5 {
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close:hover {
  color: var(--accent);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: center;
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info strong {
  font-size: 0.88rem;
  color: var(--primary);
  display: block;
}

.cart-item-info span {
  font-size: 0.78rem;
  color: #999;
}

.cart-item-price {
  font-weight: 800;
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 4px;
  display: block;
}

.cart-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.cart-remove:hover {
  color: var(--accent);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-total-row strong {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.cart-total-row span {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.btn-checkout-cart {
  background: linear-gradient(135deg, var(--accent), #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 100%;
  padding: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-checkout-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #bbb;
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

/* ══════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  position: relative;
  min-height: 92vh;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.4) 55%,
    transparent 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 40px;
}

.slide-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.slide-title em {
  font-style: italic;
  color: var(--accent);
}

.slide-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 44px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233, 69, 96, 0.5);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 16px 44px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.arrow-btn {
  pointer-events: all;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: var(--accent);
}

/* ══════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════ */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
  gap: 0;
}

.marquee-inner span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
}

.marquee-inner span i {
  margin-right: 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

/* ══════════════════════════════════════════
   SEASON HIGHLIGHTS
   ══════════════════════════════════════════ */
.season-section {
  padding: 90px 0;
  background: #fff;
}

.season-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.season-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.season-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.season-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}

.season-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════ */
.products-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-new {
  background: var(--accent);
  color: #fff;
}

.p-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
}

.p-wishlist:hover {
  color: var(--accent);
}

.p-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.92);
  color: #fff;
  border: none;
  padding: 13px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .p-add {
  transform: translateY(0);
}

.p-add:hover {
  background: var(--accent);
}

.p-info {
  padding: 18px 20px 20px;
}

.p-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.p-price {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.05rem;
}

.p-stars {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 4px;
}

/* Filter pills active state */
.hp-filter.active {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

/* ══════════════════════════════════════════
   PROMO BANNER
   ══════════════════════════════════════════ */
.promo-section {
  padding: 90px 0;
  background: #fff;
}

.promo-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
}

.promo-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.promo-content h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 10px 0 16px;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.btn-promo {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 36px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
  color: #fff;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cd-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 56px;
}

.cd-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.cd-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  padding: 80px 0;
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.btn-subscribe {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

/* ══════════════════════════════════════════
   TRUST ICONS
   ══════════════════════════════════════════ */
.trust-section {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid #f0f0f0;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.trust-item h6 {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

/* ══════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════ */
#addToast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  z-index: 9999;
  background: #fff;
  border-left: 5px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 16px 28px;
  transition: transform 0.4s cubic-bezier(.25, .8, .25, 1);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

#addToast.show {
  transform: translateX(-50%) translateY(0);
}

#addToast i {
  color: var(--accent);
  margin-right: 10px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .slide-content {
    padding: 0;
    text-align: center;
  }

  .slide.active {
    min-height: 70vh;
  }

  .slide-sub {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .promo-content {
    padding: 28px 24px;
  }

  .slider-nav {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .season-card {
    aspect-ratio: 3/2;
  }

  .cart-drawer {
    width: 100%;
  }

  #addToast {
    white-space: normal;
    max-width: calc(100vw - 40px);
    text-align: center;
  }
}

/* © 2026 FitZone — Hassan Javed */