/* ===== FORTUNA ONLINE - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --blood-red: #8B0000;
  --bright-red: #C0392B;
  --light-red: #E74C3C;
  --dark-red: #5C0000;
  --black: #0D0D0D;
  --dark-gray: #1A1A1A;
  --medium-gray: #2C2C2C;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --off-white: #FAF9F8;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --text-dark: #1A1A1A;
  --text-medium: #555;
  --text-light: #888;
  --border-color: #E0E0E0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--blood-red); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--blood-red); border-radius: 3px; }

/* ===== TOP BAR ===== */
#topbar {
  background: var(--dark-gray);
  color: #ccc;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 2px solid var(--blood-red);
  z-index: 1050;
}
#topbar a { color: #ccc; font-size: 12.5px; }
#topbar a:hover { color: var(--gold); }
#topbar .contact-info i { color: var(--blood-red); margin-right: 4px; }
#topbar .topbar-right { display: flex; align-items: center; gap: 16px; }
#topbar .btn-topbar {
  background: var(--blood-red);
  color: var(--white);
  border: none;
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
#topbar .btn-topbar:hover { background: var(--dark-red); color: var(--white); }
#topbar .btn-topbar.btn-outline {
  background: transparent;
  border: 1px solid #555;
  color: #ccc;
}
#topbar .btn-topbar.btn-outline:hover { border-color: var(--blood-red); background: var(--blood-red); color: #fff; }

/* Language switcher */
.lang-switcher .dropdown-toggle { background: none; border: none; color: #ccc; font-size: 12.5px; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0; }
.lang-switcher .dropdown-toggle::after { display: none; }
.lang-switcher .dropdown-menu { background: var(--dark-gray); border: 1px solid #333; min-width: 140px; border-radius: var(--radius); }
.lang-switcher .dropdown-item { color: #ccc; font-size: 12.5px; padding: 7px 14px; display: flex; align-items: center; gap: 8px; }
.lang-switcher .dropdown-item:hover { background: var(--blood-red); color: #fff; }
.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

/* Topbar icons */
.topbar-icon {
  position: relative;
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.topbar-icon:hover { color: var(--gold); }
.topbar-icon .badge-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--blood-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.btn-track {
  background: transparent;
  border: 1px solid var(--blood-red);
  color: var(--blood-red);
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-track:hover { background: var(--blood-red); color: #fff; }

/* ===== MAIN NAVBAR ===== */
#mainNav {
  background: var(--white);
  border-bottom: 3px solid var(--blood-red);
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1040;
}
#mainNav .navbar-brand { padding: 10px 0; }
#mainNav .navbar-brand .logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--blood-red);
  letter-spacing: -0.5px;
}
#mainNav .navbar-brand .logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

/* Nav links */
#mainNav .nav-link {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dark) !important;
  padding: 22px 12px !important;
  position: relative;
  white-space: nowrap;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--blood-red);
  transition: var(--transition);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-item.active > .nav-link::after { left: 0; right: 0; }
#mainNav .nav-link:hover, #mainNav .nav-item.active > .nav-link { color: var(--blood-red) !important; }

/* Mega dropdown */
#mainNav .dropdown-menu {
  border: none;
  border-top: 3px solid var(--blood-red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  padding: 20px 0;
  animation: dropFade 0.2s ease;
}
@keyframes dropFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
#mainNav .dropdown-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  padding: 8px 24px;
  transition: var(--transition);
}
#mainNav .dropdown-item:hover { background: var(--light-gray); color: var(--blood-red); padding-left: 30px; }
#mainNav .dropdown-item i { margin-right: 8px; color: var(--blood-red); }

/* Submenu headers */
.submenu-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blood-red);
  padding: 8px 24px 4px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 8px;
}

/* Search bar */
.search-wrapper { position: relative; }
.search-input {
  border: 2px solid var(--border-color);
  border-radius: 25px;
  padding: 8px 44px 8px 18px;
  font-size: 13px;
  width: 220px;
  transition: var(--transition);
  background: var(--light-gray);
  font-family: var(--font-body);
}
.search-input:focus { outline: none; border-color: var(--blood-red); background: #fff; width: 260px; box-shadow: 0 0 0 3px rgba(139,0,0,0.1); }
.search-btn {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--blood-red);
  cursor: pointer;
  font-size: 15px;
}

/* ===== PROMO TICKER ===== */
#promoTicker {
  background: var(--blood-red);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
#promoTicker::before, #promoTicker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}
#promoTicker::before { left: 0; background: linear-gradient(to right, var(--blood-red), transparent); }
#promoTicker::after { right: 0; background: linear-gradient(to left, var(--blood-red), transparent); }
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ticker-item i { margin-right: 6px; color: var(--gold); }
.ticker-sep { color: rgba(255,255,255,0.3); margin: 0 5px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== MINI BANNERS SECTION ===== */
.mini-banners { padding: 20px 0 5px; }
.mini-banner-card {
  background: var(--dark-gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--blood-red);
  transition: var(--transition);
  height: 100%;
}
.mini-banner-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--medium-gray); }
.mini-banner-icon {
  width: 42px; height: 42px;
  background: var(--blood-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.mini-banner-text h6 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  font-family: var(--font-body);
}
.mini-banner-text p { font-size: 11px; color: #888; margin: 0; }

/* ===== HERO SLIDER ===== */
#heroSlider { position: relative; }
.hero-slide {
  min-height: 960px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,0,0,0.85) 0%, rgba(139,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
/* Geometric shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape-1 { width: 500px; height: 500px; background: var(--blood-red); top: -100px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; background: var(--gold); bottom: -80px; right: 200px; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--white); top: 50px; right: 350px; opacity: 0.04; border-radius: 0; transform: rotate(45deg); }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: var(--blood-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero-subtitle {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--blood-red); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; max-width: 520px; }
.btn-hero-primary {
  background: var(--blood-red);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-primary:hover { background: var(--dark-red); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,0,0,0.4); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Slider controls */
.hero-indicators { 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,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--blood-red); width: 24px; border-radius: 4px; }

/* ===== SECTION STYLES ===== */
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.section-title span { color: var(--blood-red); }
.section-subtitle { color: var(--text-light); font-size: 14px; margin-bottom: 40px; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-divider::before {
  content: '';
  width: 40px; height: 3px;
  background: var(--blood-red);
  border-radius: 2px;
}
.section-divider span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blood-red);
}

/* ===== CATEGORY CARDS ===== */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.cat-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(139,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%); }
.cat-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.cat-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.cat-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.cat-card:hover .cat-card-link { opacity: 1; transform: translateY(0); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  height: 100%;
  border: 1px solid var(--border-color);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 3/4;
}
.product-img {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Product badges */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-new { background: var(--dark-gray); color: #fff; }
.badge-sale { background: var(--blood-red); color: #fff; }
.badge-hot { background: var(--gold); color: var(--dark-gray); }

/* Product actions */
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 3;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.action-btn:hover { background: var(--blood-red); color: #fff; }
.action-btn.active { background: var(--blood-red); color: #fff; }

/* Product info */
.product-info { padding: 16px; }
.product-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blood-red); margin-bottom: 4px; }
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.star-rating { color: var(--gold); font-size: 11px; }
.rating-count { font-size: 11px; color: var(--text-light); }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--blood-red); font-family: var(--font-display); }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.price-discount { font-size: 11px; font-weight: 700; color: #27AE60; }

/* Variants swatches */
.product-variants { display: flex; gap: 5px; margin-bottom: 12px; flex-wrap: wrap; }
.color-swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.color-swatch:hover, .color-swatch.active { border-color: var(--blood-red); transform: scale(1.2); }
.size-swatch {
  width: 26px; height: 26px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-medium);
}
.size-swatch:hover, .size-swatch.active { background: var(--blood-red); border-color: var(--blood-red); color: #fff; }

.btn-add-cart {
  width: 100%;
  background: var(--dark-gray);
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart:hover { background: var(--blood-red); }
.btn-add-cart:active { transform: scale(0.98); }

/* ===== BRAND LOGOS ===== */
.brands-section { background: var(--light-gray); padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.brand-item { filter: grayscale(100%) opacity(0.5); transition: var(--transition); cursor: pointer; }
.brand-item:hover { filter: grayscale(0) opacity(1); }

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--dark-gray); padding: 50px 0; }
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(139,0,0,0.15);
  border: 2px solid rgba(139,0,0,0.3);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blood-red);
  font-size: 24px;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--blood-red); color: #fff; border-color: var(--blood-red); transform: scale(1.1); }
.feature-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feature-desc { font-size: 12px; color: #888; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--blood-red) 0%, var(--dark-red) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border: 80px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -150px; right: -100px;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -80px; left: 100px;
}
.newsletter-title { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.newsletter-sub { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 0; }
.newsletter-form .input-group { max-width: 480px; }
.newsletter-input {
  border: none;
  border-radius: 3px 0 0 3px !important;
  padding: 14px 20px;
  font-size: 14px;
  font-family: var(--font-body);
}
.newsletter-input:focus { box-shadow: none; }
.newsletter-btn {
  background: var(--dark-gray);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { background: var(--black); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--blood-red);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--blood-red);
  opacity: 0.1;
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--text-medium); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blood-red); }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 10px; }
.blog-meta span { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.blog-meta i { color: var(--blood-red); }
.blog-cat { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blood-red); margin-bottom: 8px; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-title a:hover { color: var(--blood-red); }
.blog-excerpt { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.btn-read-more { font-size: 12px; font-weight: 700; color: var(--blood-red); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 5px; }
.btn-read-more:hover { gap: 10px; }

/* ===== FOOTER ===== */
#mainFooter {
  background: var(--black);
  color: #aaa;
  padding: 60px 0 0;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--blood-red);
}
.footer-desc { font-size: 13px; color: #888; line-height: 1.7; margin: 12px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--blood-red); color: #fff; border-color: var(--blood-red); }
.footer-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blood-red);
  display: inline-block;
  font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: #888;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--blood-red); font-size: 16px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--blood-red); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text span { display: block; font-size: 13px; color: #888; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #666; margin: 0; }
.payment-icons { display: flex; gap: 8px; }
.payment-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
}

/* ===== CART SIDEBAR ===== */
#cartSidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; height: 100vh;
  background: var(--white);
  z-index: 9999;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
#cartSidebar.open { right: 0; }
#cartOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
#cartOverlay.show { opacity: 1; pointer-events: all; }
.cart-header {
  background: var(--dark-gray);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--blood-red);
}
.cart-header-title { font-size: 18px; font-weight: 800; color: #fff; font-family: var(--font-display); }
.cart-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: var(--blood-red); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}
.cart-item-img { width: 80px; height: 90px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; border: 1px solid var(--border-color); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
.cart-item-variant { font-size: 11px; color: var(--text-light); margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--blood-red); }
.qty-control { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border-color); background: none; cursor: pointer; border-radius: 4px; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--blood-red); border-color: var(--blood-red); color: #fff; }
.qty-val { font-size: 14px; font-weight: 700; width: 30px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--text-light); font-size: 18px; cursor: pointer; transition: var(--transition); }
.cart-remove:hover { color: var(--blood-red); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border-color); background: var(--light-gray); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-total-label { font-size: 14px; color: var(--text-medium); }
.cart-total-val { font-size: 14px; font-weight: 700; }
.cart-grand-total { font-size: 18px; font-weight: 800; color: var(--blood-red); }
.btn-checkout {
  width: 100%;
  background: var(--blood-red);
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
  display: block;
  text-align: center;
}
.btn-checkout:hover { background: var(--dark-red); color: #fff; }
.btn-view-cart {
  width: 100%;
  background: var(--dark-gray);
  color: #fff;
  border: none;
  padding: 11px;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  display: block;
  text-align: center;
  letter-spacing: 0.5px;
}
.btn-view-cart:hover { background: var(--black); color: #fff; }

/* ===== BUTTONS ===== */
.btn-primary-red {
  background: var(--blood-red);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-red:hover { background: var(--dark-red); color: #fff; transform: translateY(-1px); }
.btn-outline-red {
  background: transparent;
  color: var(--blood-red);
  border: 2px solid var(--blood-red);
  padding: 10px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-red:hover { background: var(--blood-red); color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,...') repeat;
  opacity: 0.03;
}
.page-header-shape {
  position: absolute;
  width: 300px; height: 300px;
  background: var(--blood-red);
  border-radius: 50%;
  opacity: 0.05;
  right: -100px; top: -100px;
}
.page-header h1 { font-size: clamp(28px, 4vw, 48px); color: #fff; font-weight: 900; margin-bottom: 10px; }
.page-header .breadcrumb { margin: 0; }
.breadcrumb-item, .breadcrumb-item a { font-size: 13px; color: #888; }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: #555; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--blood-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 9000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--dark-red); transform: translateY(-3px) scale(1.05); }

/* ===== FILTER SIDEBAR (Shop/Products) ===== */
.filter-sidebar { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border-color); overflow: hidden; }
.filter-header { background: var(--dark-gray); padding: 16px 20px; }
.filter-header h5 { color: #fff; font-size: 15px; font-weight: 700; margin: 0; font-family: var(--font-body); letter-spacing: 1px; text-transform: uppercase; }
.filter-section { padding: 16px 20px; border-bottom: 1px solid var(--border-color); }
.filter-section-title { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 12px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.filter-section-title i { color: var(--blood-red); font-size: 10px; transition: var(--transition); }
.filter-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-check input[type="checkbox"] { accent-color: var(--blood-red); width: 15px; height: 15px; cursor: pointer; }
.filter-check label { font-size: 13px; color: var(--text-medium); cursor: pointer; flex: 1; }
.filter-check span { font-size: 11px; color: var(--text-light); }
.price-range-inputs { display: flex; gap: 8px; align-items: center; }
.price-input { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 6px 10px; font-size: 13px; width: 90px; font-family: var(--font-body); }
.price-input:focus { outline: none; border-color: var(--blood-red); }
input[type="range"] { accent-color: var(--blood-red); width: 100%; }
.color-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.color-filter-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.color-filter-dot:hover, .color-filter-dot.active { border-color: var(--blood-red); transform: scale(1.2); }
.color-filter-dot.active::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.size-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.size-filter-tag {
  padding: 4px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-medium);
}
.size-filter-tag:hover, .size-filter-tag.active { background: var(--blood-red); border-color: var(--blood-red); color: #fff; }

/* Sort bar */
.sort-bar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.sort-bar-left { font-size: 13px; color: var(--text-medium); }
.sort-bar-left span { font-weight: 700; color: var(--text-dark); }
.sort-select { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 6px 12px; font-size: 13px; font-family: var(--font-body); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--blood-red); }
.view-toggle { display: flex; gap: 6px; }
.view-btn { width: 34px; height: 34px; border: 1px solid var(--border-color); background: none; border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); color: var(--text-medium); }
.view-btn.active { background: var(--blood-red); border-color: var(--blood-red); color: #fff; }

/* ===== TABS ===== */
.nav-tabs { border-bottom: 2px solid var(--border-color); }
.nav-tabs .nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-medium);
  border: none;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.nav-tabs .nav-link.active { color: var(--blood-red); border-bottom-color: var(--blood-red); background: none; }
.nav-tabs .nav-link:hover { color: var(--blood-red); }

/* ===== FORM STYLES ===== */
.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--blood-red);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
  outline: none;
}
.form-label { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }

/* ===== SHOP/STORE CARDS ===== */
.shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}
.shop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.shop-card-banner { height: 160px; overflow: hidden; background: var(--light-gray); }
.shop-card-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.shop-card:hover .shop-card-banner img { transform: scale(1.06); }
.shop-card-body { padding: 20px; }
.shop-card-logo { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--blood-red); margin-top: -40px; background: #fff; object-fit: cover; margin-bottom: 10px; }
.shop-rating-badge { background: #27AE60; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px; display: inline-flex; align-items: center; gap: 3px; }
.shop-stats { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-color); }
.shop-stat span { display: block; font-size: 11px; color: var(--text-light); }
.shop-stat strong { font-size: 16px; font-weight: 800; color: var(--text-dark); }

/* ===== TOAST NOTIFICATION ===== */
#toastContainer {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-msg {
  background: var(--dark-gray);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--blood-red);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideInUp 0.3s ease, fadeOut 0.3s 2.7s ease forwards;
  display: flex; align-items: center; gap: 10px;
  max-width: 300px;
}
.toast-msg i { color: var(--blood-red); font-size: 16px; }
.toast-msg.toast-success { border-color: #27AE60; }
.toast-msg.toast-success i { color: #27AE60; }
@keyframes slideInUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-10px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .mini-banners { padding: 18px 0 8px; }
  .hero-desc { max-width: 100%; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 36px 0; }
  .blog-card-img { height: 180px; }
}

@media (max-width: 991px) {
  #topbar .contact-info { display: none; }
  #topbar .topbar-right { gap: 10px; flex-wrap: wrap; }
  #mainNav { padding: 0 15px; }
  #mainNav .navbar-brand { padding: 10px 0; }
  #mainNav .nav-link { padding: 14px 10px !important; font-size: 12px; white-space: normal; }
  .hero-slide { min-height: 920px; }
  .hero-title { font-size: clamp(30px, 4vw, 42px); }
  .hero-desc { font-size: 15px; margin-bottom: 26px; }
  .hero-shape-1, .hero-shape-2, .hero-shape-3 { width: 260px; height: 260px; }
  .mini-banner-card { padding: 16px; gap: 10px; }
  .mini-banner-icon { width: 38px; height: 38px; }
  .product-card { min-width: 0; }
  .product-img-wrap { aspect-ratio: 4 / 5; }
  .product-info { padding: 16px; }
  .shop-card-body { padding: 18px; }
  .shop-card-banner { height: 150px; }
  .shop-stats { flex-wrap: wrap; gap: 12px; }
  .blog-card-img { height: 170px; }
  .testimonial-card { padding: 26px; }
  .footer-bottom { padding: 18px 0; }
  #cartSidebar { width: 360px; }
}

@media (max-width: 767px) {
  #topbar { font-size: 11px; padding: 8px 0; }
  #topbar .topbar-right { gap: 8px; }
  #mainNav { padding: 0 10px; }
  #mainNav .navbar-brand .logo-sub { display: none; }
  #mainNav .nav-link { padding: 12px 10px !important; font-size: 11px; }
  .hero-slide { min-height: 620px; }
  .hero-shape-1, .hero-shape-2, .hero-shape-3 { display: none; }
  .hero-title { font-size: 28px; line-height: 1.1; }
  .hero-desc { font-size: 14px; margin-bottom: 22px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; padding: 12px 0; justify-content: center; }
  .mini-banners .mini-banner-card { flex-direction: column; align-items: flex-start; }
  .section-pad { padding: 45px 0; }
  .section-pad-sm { padding: 30px 0; }
  .product-card { min-width: auto; }
  .product-img-wrap { aspect-ratio: 5 / 6; }
  .shop-card-banner { height: 140px; }
  .brand-item { width: calc(50% - 8px); }
  .feature-item { width: 100%; }
  .newsletter-section { padding: 40px 0; }
  .newsletter-section::before, .newsletter-section::after { display: none; }
  .blog-card-img { height: 160px; }
  .blog-card-body { padding: 18px; }
  .footer-logo-text { font-size: 24px; }
  .footer-links a { font-size: 12px; }
  .footer-contact-item { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  #cartSidebar { width: 100%; max-width: 420px; }
  .cart-item { flex-direction: column; gap: 12px; }
  .cart-item-img { width: 100%; height: 180px; }
  .cart-total-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .filter-sidebar { width: 100%; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 24px; }
  .hero-desc { display: none; }
  .btn-hero-primary, .btn-hero-outline { padding: 10px 18px; font-size: 12px; }
  #mainNav .nav-link { padding: 10px 8px !important; font-size: 10.5px; }
  .mini-banners { padding: 16px 0 0; }
  .mini-banner-card { width: 100%; }
  .section-pad { padding: 35px 0; }
  .section-title { font-size: 26px; }
  .section-subtitle { margin-bottom: 24px; }
  .product-card, .shop-card, .blog-card, .testimonial-card { border-radius: 12px; }
  .product-info { padding: 14px; }
  .shop-card-banner { height: 130px; }
  .brand-item { width: 100%; }
  .feature-item { width: 100%; }
  .blog-card-body { padding: 16px; }
  .footer-logo-text { font-size: 22px; }
  .footer-links a { font-size: 12px; }
  .footer-contact-text span { font-size: 12px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom p { width: 100%; }
  #cartSidebar { width: 100%; max-width: none; }
  .cart-item-img { height: 140px; }
  .cart-item { padding: 12px 0; }
  .btn-add-cart { width: 100%; }
  .sort-bar { flex-direction: column; gap: 12px; }
  .filter-sidebar, .shop-card-body, .blog-card-body { padding: 16px; }
  .nav-tabs .nav-link { padding: 10px 12px; white-space: normal; }
}

/* ===== UTILITY ===== */
.text-red { color: var(--blood-red) !important; }
.bg-red { background: var(--blood-red) !important; }
.bg-dark-custom { background: var(--dark-gray); }
.fw-800 { font-weight: 800; }
.ls-2 { letter-spacing: 2px; }
.hover-red:hover { color: var(--blood-red) !important; }
.placeholder-img { background: linear-gradient(135deg, var(--light-gray), #e0e0e0); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 40px; }