/* ===========================
   KHILUNG KALIKA - shop.css
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #29bfd4;
  --primary-dark: #1aa0b4;
  --primary-light: #e0f7fa;
  --accent: #e63946;
  --navbar-bg: #29bfd4;
  --text: #1a1a2e;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: var(--transition);
  text-decoration: none; border: none; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0fdff; }
.btn-full { width: 100%; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; background: var(--primary-light);
  color: var(--primary); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: #fff; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 3px 20px rgba(0,0,0,0.11); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 0;
}
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; padding-right: 20px; }
.logo-img {
  height: 75px; width: auto; object-fit: contain; display: block; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }
.logo-divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0; margin: 0 14px;
}
.logo-name { display: flex; flex-direction: column; gap: 2px; }
.logo-title { font-size: 0.95rem; font-weight: 800; color: var(--primary); line-height: 1.15; letter-spacing: 0.4px; text-transform: uppercase; }
.logo-subtitle { font-size: 0.58rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.2px; }

.nav-links { display: flex; gap: 2px; flex: 1; justify-content: center; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 0.84rem; font-weight: 500;
  padding: 6px 11px; border-radius: 5px;
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-btn {
  background: #f1f5f9; border: 1.5px solid var(--border);
  color: var(--text); padding: 7px 14px; border-radius: 7px;
  font-size: 0.86rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
  font-family: inherit;
}
.cart-btn:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.cart-count {
  background: var(--accent); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-login {
  background: #29bfd4; border: 1.5px solid #29bfd4;
  color: #fff; padding: 7px 16px; border-radius: 7px;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: inherit; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-login:hover { background: #1aa0b4; border-color: #1aa0b4; color: #fff; }
.btn-signup {
  background: var(--primary); color: #fff;
  border: none; padding: 7px 16px; border-radius: 7px;
  font-size: 0.84rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.btn-signup:hover { background: var(--primary-dark); }
.nav-cta {
  padding: 9px 20px; font-size: 0.84rem; font-weight: 700;
  background: var(--accent); color: #fff;
  border-radius: 6px; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: var(--transition);
}
.nav-cta:hover { background: #c62a35; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(230,57,70,0.35); }

/* ===========================
   PROFILE DROPDOWN
   =========================== */
.profile-dropdown { position: relative; }

.profile-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; padding: 7px 14px; border-radius: 8px;
  font-size: 0.9rem; cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.profile-btn:hover { background: rgba(255,255,255,0.28); }
.profile-icon { font-size: 1.15rem; }
.profile-chevron {
  font-size: 0.65rem; display: inline-block;
  transition: transform 0.25s ease;
}
.profile-dropdown.open .profile-chevron { transform: rotate(180deg); }

.profile-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
  min-width: 170px; z-index: 500;
  border: 1px solid var(--border);
  overflow: hidden;
  animation: dropDown 0.2s ease;
}
.profile-dropdown.open .profile-menu { display: block; }

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.profile-menu-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 13px 18px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.92rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: background 0.18s ease;
  border-bottom: 1px solid var(--border);
}
.profile-menu-item:last-child { border-bottom: none; }
.profile-menu-item:hover { background: var(--primary-light); color: var(--primary); }

/* ===========================
   MODALS
   =========================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,0.65); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }

.modal-box {
  background: #fff; border-radius: 20px;
  padding: 40px 36px 32px; width: 100%; max-width: 440px;
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  animation: slideUp 0.35s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: #f1f5f9; border: none; width: 30px; height: 30px;
  border-radius: 50%; font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.modal-close:hover { background: #e2e8f0; color: var(--text); }

.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo {
  height: 52px; width: auto; object-fit: contain;
  background: var(--primary-light); border-radius: 8px;
  padding: 4px 12px; margin-bottom: 14px;
}
.modal-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.modal-header p  { font-size: 0.88rem; color: var(--text-muted); }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input {
  padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.9rem; font-family: inherit;
  outline: none; transition: var(--transition);
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(41,191,212,0.12); }

.modal-options {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
}
.remember-me { display: flex; align-items: center; gap: 6px; cursor: pointer; color: var(--text-muted); }
.forgot-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

.btn-signup-submit {
  background: var(--primary); color: #fff; border: none;
  padding: 12px; border-radius: 8px; font-size: 0.95rem;
  font-weight: 700; cursor: pointer; font-family: inherit;
  transition: var(--transition); margin-top: 4px;
}
.btn-signup-submit:hover { background: var(--primary-dark); }

.modal-switch { text-align: center; margin-top: 18px; font-size: 0.85rem; color: var(--text-muted); }
.modal-switch a { color: var(--primary); font-weight: 600; text-decoration: none; }
.modal-switch a:hover { text-decoration: underline; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 480px) {
  .modal-box { padding: 28px 20px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .btn-login, .btn-signup { display: none; }
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ===========================
   HERO CAROUSEL (same as index.html)
   =========================== */
.shop-hero { position: relative; overflow: hidden; margin-top: 68px; }
.hero-carousel-wrapper { position: relative; width: 100%; overflow: hidden; }
.hero-carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-slide-inner {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 40px; padding-top: 60px; padding-bottom: 100px;
  position: relative; z-index: 1;
}
.hero-slide-content { color: #fff; max-width: 640px; }
.hero-tag {
  display: inline-block; background: rgba(41,191,212,0.3);
  color: #fff; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
  border: 1px solid rgba(41,191,212,0.6);
}
.hero-slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.9);
  max-width: 560px; margin-bottom: 36px; line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 8px;
  padding: 13px 30px; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Hero arrows */
.hero-btn {
  position: absolute; top: 45%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.hero-btn:hover { background: rgba(255,255,255,0.32); border-color: #fff; transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: var(--transition); padding: 0;
}
.hero-dot.active { background: #fff; width: 30px; border-radius: 5px; }

/* Stats bar */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0; z-index: 5;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 40px; color: #fff; }
.stat strong { font-size: 1.9rem; font-weight: 700; }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

/* Search box inside hero */
.shop-search {
  display: flex; max-width: 520px; border-radius: 10px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.shop-search input {
  flex: 1; padding: 14px 18px; border: none;
  font-size: 0.95rem; font-family: inherit; outline: none; background: #fff;
}
.shop-search button {
  background: var(--accent); color: #fff; border: none;
  padding: 14px 22px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: var(--transition); white-space: nowrap;
}
.shop-search button:hover { background: #c62a35; }

@media (max-width: 768px) {
  .hero-slide { min-height: 100vh; }
  .hero-slide-inner { flex-direction: column; text-align: center; padding-bottom: 120px; padding-top: 40px; }
  .hero-actions { justify-content: center; }
  .stat { padding: 0 16px; }
  .stat-divider { display: none; }
  .hero-btn { width: 40px; height: 40px; font-size: 1rem; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .shop-search { max-width: 100%; }
}

/* ===========================
   PRODUCT SHOWCASE
   =========================== */
.showcase-section { padding: 90px 0; background: #fff; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--primary);
}
.featured-card {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 24px rgba(41,191,212,0.15);
}

.showcase-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 20px;
}
.showcase-badge.new { background: #10b981; }

.showcase-img-box {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: #f4f8fb;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.showcase-card:hover .showcase-img {
  transform: scale(1.06);
}
.showcase-emoji {
  font-size: 7rem; opacity: 0.7;
  transition: var(--transition); display: block; line-height: 1;
}
.showcase-card:hover .showcase-emoji { transform: scale(1.12); opacity: 0.9; }

.showcase-body {
  padding: 22px 20px 20px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.showcase-brand {
  font-size: 0.72rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 1.2px;
}
.showcase-body h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3;
}
.showcase-body > p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1;
}
.showcase-specs {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.showcase-specs li { font-size: 0.8rem; color: var(--text); font-weight: 500; }

.showcase-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px; margin-top: 4px;
}
.showcase-price {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
}

.showcase-cta {
  text-align: center; padding: 40px 0 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.showcase-cta p { font-size: 1rem; color: var(--text-muted); }

@media (max-width: 1024px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .showcase-grid { grid-template-columns: 1fr; } }

/* ===========================
   CATEGORIES
   =========================== */
.categories-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
}
.cat-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px 12px;
  text-align: center; cursor: pointer; transition: var(--transition);
}
.cat-card span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.cat-card p { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.cat-card:hover, .cat-card.active {
  border-color: var(--primary); background: var(--primary-light);
  transform: translateY(-3px); box-shadow: 0 6px 16px rgba(41,191,212,0.15);
}
.cat-card.active p, .cat-card:hover p { color: var(--primary); }

/* ===========================
   FILTER BAR
   =========================== */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding: 14px 20px;
  background: #fff; border-radius: 10px; border: 1px solid var(--border);
}
.results-count { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.filter-bar select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.88rem; font-family: inherit; color: var(--text);
  cursor: pointer; background: #fff; outline: none;
}

/* ===========================
   PRODUCTS ROW (horizontal scroll)
   =========================== */
.products-row-wrap {
  position: relative;
  margin-bottom: 56px;
}
.products-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 4px 20px;
  scrollbar-width: none;
}
.products-row::-webkit-scrollbar { display: none; }

/* Row arrow buttons */
.row-btn {
  position: absolute; top: 50%; transform: translateY(-60%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  color: var(--text); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; z-index: 5; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.row-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.row-prev { left: -20px; }
.row-next { right: -20px; }

/* Individual product card in row */
.prod-card {
  min-width: 220px;
  max-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  flex-shrink: 0;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  border-color: var(--primary);
}
.prod-card-img {
  height: 180px;
  background: #f4f8fb;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 12px;
}
.prod-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 20px; color: #fff;
}
.prod-badge.popular { background: var(--accent); }
.prod-badge.new     { background: #10b981; }

.prod-card-body {
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.prod-brand {
  font-size: 0.7rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.prod-name {
  font-size: 0.88rem; font-weight: 700; color: var(--text);
  line-height: 1.3; min-height: 2.4em;
}
.prod-price {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  margin-top: 2px;
}
.prod-price small { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }
.btn-add-cart {
  width: 100%; margin-top: 10px;
  background: var(--primary); color: #fff;
  border: none; padding: 10px 0; border-radius: 6px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-add-cart.added { background: #10b981; }

/* All products section below */
.all-products-wrap { margin-top: 8px; }
.all-products-title {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border);
}

/* ===========================
   PRODUCTS GRID
   =========================== */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.product-img {
  height: 160px; background: #f4f8fb;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.product-badge.new { background: #10b981; }
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-brand { font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.product-name { font-size: 0.88rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.product-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 8px; }
.product-price { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.product-price span { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.btn-enquire {
  background: var(--primary); color: #fff; border: none;
  padding: 7px 14px; border-radius: 6px; font-size: 0.78rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  font-family: inherit; white-space: nowrap;
}
.btn-enquire:hover { background: var(--primary-dark); }

.no-results {
  text-align: center; padding: 48px 0; color: var(--text-muted);
}
.no-results span { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ===========================
   DEALS BANNER
   =========================== */
.deals-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0077b6 100%);
  padding: 72px 0;
}
.deals-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.deals-text h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.deals-text p { color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 28px; }
.deals-icon { font-size: 8rem; opacity: 0.15; flex-shrink: 0; }

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 1100;
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw;
  height: 100vh; background: #fff; z-index: 1200;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-close {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--text-muted); transition: var(--transition);
}
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 48px 0; color: var(--text-muted); }
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item-icon { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.88rem; font-weight: 600; }
.cart-item-info span { font-size: 0.78rem; color: var(--text-muted); }
.cart-item-remove {
  background: none; border: none; color: var(--accent);
  cursor: pointer; font-size: 1rem; transition: var(--transition);
}
.cart-item-remove:hover { transform: scale(1.2); }
.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.btn-clear {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 10px; border-radius: 8px; font-size: 0.85rem; cursor: pointer;
  font-family: inherit; transition: var(--transition);
}
.btn-clear:hover { border-color: var(--accent); color: var(--accent); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #060d1a; color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding: 56px 0 40px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 240px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: #fff; font-weight: 600; margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact h4 { color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); z-index: 999;
  }
  .nav-links.open a { padding: 12px 24px; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-links.open a:hover { color: var(--primary); background: var(--primary-light); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .deals-inner { flex-direction: column; text-align: center; }
  .deals-icon { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-name { display: none; }
  .cart-sidebar { width: 100vw; }
}

/* ===========================
   BRANDS SECTION - shop page
   =========================== */
.shop-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.shop-brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.shop-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: var(--primary);
}

.shop-brand-img-wrap {
  width: 110px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-brand-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.shop-brand-card:hover .shop-brand-img {
  filter: grayscale(0%);
}

.shop-brand-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .shop-brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .shop-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-brand-img-wrap { width: 80px; height: 52px; }
}


/* ===========================
   RESPONSIVE OVERHAUL - shop
   =========================== */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 0 32px; }
  .shop-brands-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 0; z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open a {
    padding: 13px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text); font-size: 0.95rem;
  }
  .nav-links.open a:hover { color: var(--primary); background: var(--primary-light); }

  /* Nav actions — hide text labels, keep icons */
  .nav-cta { display: none; }

  /* Hero */
  .hero-slide { min-height: 100svh; }
  .hero-slide-inner { flex-direction: column; text-align: center; padding-top: 36px; padding-bottom: 110px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .shop-search { max-width: 100%; }
  .hero-btn { width: 38px; height: 38px; font-size: 0.95rem; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .stat { padding: 0 14px; }
  .stat-divider { display: none; }
  .stat strong { font-size: 1.4rem; }
  .hero-dots { bottom: 64px; }

  /* Section headings */
  .section-header h2 { font-size: 1.7rem; }
  .section-header { margin-bottom: 36px; }

  /* Showcase */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-img-box { height: 220px; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .cat-card { padding: 14px 8px; }
  .cat-card span { font-size: 1.4rem; }
  .cat-card p { font-size: 0.7rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Row nav buttons */
  .row-prev { left: -10px; }
  .row-next { right: -10px; }

  /* Deals */
  .deals-inner { flex-direction: column; text-align: center; gap: 20px; }
  .deals-icon { display: none; }
  .deals-text h2 { font-size: 1.6rem; }

  /* Brands */
  .shop-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 0 24px; }

  /* Filter bar */
  .filter-bar { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.45rem; }

  /* Logo */
  .logo-img { height: 44px; }
  .logo-name { display: none; }

  /* Hero */
  .hero-slide-content h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; text-align: center; justify-content: center; }
  .hero-stats-bar { padding: 10px 0; }
  .stat strong { font-size: 1.2rem; }
  .stat span { font-size: 0.7rem; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .prod-card { min-width: 170px; max-width: 170px; }

  /* Cart */
  .cart-sidebar { width: 100vw; }

  /* Brands */
  .shop-brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shop-brand-img-wrap { width: 80px; height: 52px; }

  /* Modals */
  .modal-box { padding: 24px 16px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom p { font-size: 0.76rem; }
}

/* ===========================
   BRAND SLIDER (shop page)
   =========================== */
.brand-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-slider-viewport {
  overflow: hidden;
  flex: 1;
}
.brand-slider-track {
  display: flex;
  gap: 16px;
  animation: brandAutoScroll 22s linear infinite;
}
.brand-slider-track:hover { animation-play-state: paused; }

@keyframes brandAutoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-slide-card {
  flex-shrink: 0;
  width: 140px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.brand-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(41,191,212,0.15);
  border-color: var(--primary);
}
.brand-slide-img-wrap {
  width: 90px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.brand-slide-img-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.brand-slide-card:hover .brand-slide-img-wrap img { filter: grayscale(0%); }
.brand-slide-card span {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%;
}

.brand-slider-btn {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  color: var(--text); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.brand-slider-btn:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

@media (max-width: 600px) {
  .brand-slide-card { width: 110px; padding: 14px 10px 10px; }
  .brand-slide-img-wrap { width: 70px; height: 44px; }
  .brand-slider-btn { width: 32px; height: 32px; font-size: 0.85rem; }
}

/* ===========================
   INLINE BRANDS (between featured & all products)
   =========================== */
.inline-brands-wrap {
  margin: 48px 0 52px;
  padding: 36px 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inline-brands-header {
  text-align: center;
  margin-bottom: 28px;
}
.inline-brands-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}

/* ===========================
   LOGIN DROPDOWN (replaces profile)
   =========================== */
.login-dropdown {
  position: relative;
}

.login-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.login-drop-btn:hover {
  background: rgba(255,255,255,0.28);
}

.login-drop-chevron {
  font-size: 0.65rem;
  display: inline-block;
  transition: transform 0.25s ease;
}

.login-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
  min-width: 160px;
  z-index: 500;
  border: 1px solid var(--border);
  overflow: hidden;
  animation: dropDown 0.2s ease;
}
.login-dropdown.open .login-drop-menu {
  display: block;
}

.login-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.18s ease;
  border-bottom: 1px solid var(--border);
}
.login-drop-item:last-child {
  border-bottom: none;
}
.login-drop-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ===========================
   NAV AUTH BUTTONS
   =========================== */
.nav-auth-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
}
.nav-login-btn {
  background: transparent;
  color: #fff;
}
.nav-login-btn:hover {
  background: rgba(255,255,255,0.18);
}
.nav-signup-btn {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.nav-signup-btn:hover {
  background: #e0f7fa;
}
@media (max-width: 768px) {
  .nav-auth-btn { display: none; }
}

/* ===========================
   EVENT BANNER
   =========================== */
.event-banner {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0077b6 55%, #29bfd4 100%);
  overflow: hidden;
  padding: 48px 0;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

/* Decorative background pattern */
.event-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Glowing orb */
.event-banner::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(41,191,212,0.25) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.event-banner-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Close button */
.event-banner-close {
  position: absolute; top: 14px; right: 20px; z-index: 10;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 30px; height: 30px; border-radius: 50%;
  font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s ease;
}
.event-banner-close:hover { background: var(--accent); border-color: var(--accent); }

/* LEFT side */
.event-banner-left { display: flex; flex-direction: column; gap: 18px; }

.event-banner-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  width: fit-content;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}

.event-banner-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.event-banner-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 480px;
}

/* Countdown */
.event-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.countdown-block {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
  backdrop-filter: blur(4px);
}
.countdown-block span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-block label {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.countdown-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

/* Action buttons */
.event-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.event-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
}
.event-btn-primary:hover {
  background: #c62a35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.5);
}
.event-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.55);
  transition: 0.25s ease;
}
.event-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* RIGHT side — offer cards */
.event-banner-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.event-offer-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}
.event-offer-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.event-offer-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.event-offer-card strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.event-offer-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  margin: 2px 0 0;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 900px) {
  .event-banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .event-banner-right {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .event-banner { padding: 40px 0 32px; }
  .event-banner-right { grid-template-columns: 1fr 1fr; gap: 10px; }
  .event-offer-card { padding: 12px 10px; }
  .countdown-block { min-width: 52px; padding: 10px 12px; }
  .countdown-block span { font-size: 1.5rem; }
  .event-banner-actions { flex-direction: column; }
  .event-btn-primary, .event-btn-outline { width: 100%; text-align: center; }
}

/* ===========================
   PROMO BANNER (below showcase)
   =========================== */
.promo-banner {
  background: linear-gradient(120deg, #0a1628 0%, #004e89 50%, #29bfd4 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

/* Decorative circles */
.promo-banner::before,
.promo-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-banner::before {
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.04);
  top: -140px; left: -80px;
}
.promo-banner::after {
  width: 300px; height: 300px;
  background: rgba(41,191,212,0.12);
  bottom: -100px; right: 100px;
}

.promo-banner-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

/* LEFT */
.promo-banner-left {
  display: flex; flex-direction: column; gap: 20px;
}

.promo-banner-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  width: fit-content;
}

.promo-banner-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.promo-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 500px;
}

.promo-banner-perks {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
}
.promo-banner-perks span {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.promo-banner-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.promo-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  padding: 13px 30px; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 4px 18px rgba(230,57,70,0.4);
  white-space: nowrap;
}
.promo-btn-primary:hover {
  background: #c62a35;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(230,57,70,0.5);
}
.promo-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  transition: 0.25s ease;
  white-space: nowrap;
}
.promo-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* RIGHT — highlight cards */
.promo-banner-right {
  display: flex; flex-direction: column; gap: 14px;
}

.promo-highlight {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 20px;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}
.promo-highlight:hover {
  background: rgba(255,255,255,0.16);
  transform: translateX(4px);
}
.promo-highlight-accent {
  background: rgba(230,57,70,0.18);
  border-color: rgba(230,57,70,0.4);
}
.promo-highlight-accent:hover {
  background: rgba(230,57,70,0.28);
}

.promo-hi-num {
  font-size: 2rem; font-weight: 900;
  color: #fff; line-height: 1;
  flex-shrink: 0; min-width: 64px;
  letter-spacing: -1px;
}
.promo-highlight-accent .promo-hi-num {
  color: #ff8b94;
}
.promo-hi-label {
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .promo-banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .promo-banner { padding: 40px 0; }
  .promo-banner-actions { flex-direction: column; }
  .promo-btn-primary, .promo-btn-ghost { width: 100%; text-align: center; }
  .promo-hi-num { font-size: 1.6rem; min-width: 52px; }
}
