/* ── Custom overrides — Bootstrap 5 handles the rest ── */

:root {
  --gradient: linear-gradient(to right, #70cfeb 0%, #3F8FEB 100%);
  --accent:   #E53935;
  --dark:     #1a1a2e;
  --dark-alt: #0d1b2a;
  --gold:     #f5c518;
}

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

/* ── Navbar ──────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
  width: 99%;
  max-width: 1100px;
  border-radius: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand img { height: 48px; width: auto; }

.nav-link {
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark) !important;
  border-radius: 4px;
  padding: 8px 14px !important;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: #2196F3 !important; background: #e3f2fd; }

.nav-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #e0e0e0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
}
.nav-icon-btn:hover { border-color: #2196F3; background: #e3f2fd; }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
#home .btn{
  font-size: 1.15rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
}
/* ── Typography ──────────────────────────────────── */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted-light { color: #cfd8dc !important; }

/* ── Button: gradient ────────────────────────────── */
.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter .2s, transform .15s;
}
.btn-gradient:hover { color: #fff; filter: brightness(1.1); transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: url('../images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before { content:''; position:absolute; inset:0; background:rgba(10,20,40,.55); }
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 4px;
  letter-spacing: .08em;
}

/* ── How It Works ────────────────────────────────── */
.hiw-section {
  background: var(--dark) url('../images/gallery/bts\ \(3\).jpg') center/cover no-repeat;
  position: relative;
}
.hiw-section::before { content:''; position:absolute; inset:0; background:rgba(10,20,40,.78); }
.hiw-section .container { position: relative; z-index: 1; }

.hiw-title { color: var(--gold); }

.hiw-step {
  border-radius: 12px;
  padding: 22px 26px;
}
.hiw-step h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hiw-step p { font-size: 0.87rem; color: rgba(255,255,255,.88); line-height: 1.6; margin: 0; }

.hiw-step-blue { background: rgba(25, 90, 185, 0.88); }
.hiw-step-red  { background: rgba(210, 45, 40, 0.88); }

.hiw-center-img {
  /* width: 240px; height: 240px; */
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.hiw-center-img img { width: 100%; height: 100%; object-fit: cover; }

.hiw-img-caption {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Sign-up Banner ──────────────────────────────── */
.signup-section { background: #f0f2f5; padding: 48px 0;
 }
.wholesale-section,
.signup-section,
#contact {
background-image: url('../images/pattern.jpg') !important; background-repeat: no-repeat;
background-size: cover !important; background-position: center !important;
}
.signup-card {
  background: var(--accent);
  border-radius: 24px;
}

.signup-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Wholesale ───────────────────────────────────── */
.wholesale-section { background: #f0f2f5; }

.wholesale-card {
  background: #1b3a6b;
  border-radius: 20px;
}

.wholesale-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.wholesale-card p {
  color: rgba(255,255,255,.9);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}

/* ── Deals ───────────────────────────────────────── */
.deals-banner {
  background: var(--dark) url('https://images.unsplash.com/photo-1501595091296-3aa970afb3ff?w=1920&q=80') center/cover no-repeat;
  position: relative;
}
.deals-banner::before { content:''; position:absolute; inset:0; background:rgba(10,20,40,.75); }
.deals-banner .container { position: relative; z-index: 1; }

.deal-card { border-radius: 10px !important; transition: transform .2s, box-shadow .2s; }
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.14) !important; }
.deal-card .card-img-top { height: 200px; object-fit: cover; }
.deal-card .card-title { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

.deal-price { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--accent); font-weight: 700; }
.deal-old { font-size: 0.8rem; color: #999; text-decoration: line-through; margin-left: 6px; font-weight: 400; }

/* ── Reviews ─────────────────────────────────────── */
.stars { display: flex; gap: 3px; }
.stars svg { fill: var(--gold); }

.review-card {
  border-radius: 10px !important;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: #e3f2fd;
  position: absolute;
  top: -10px; left: 16px;
  line-height: 1;
  pointer-events: none;
}
.review-text { font-size: 0.88rem; line-height: 1.7; color: #555; }

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Map ─────────────────────────────────────────── */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Contact ─────────────────────────────────────── */
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: #e3f2fd;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { fill: #2196F3; }

.form-control:focus {
  border-color: #2196F3;
  box-shadow: 0 0 0 3px rgba(33,150,243,.1);
}

/* ── Email Signup ────────────────────────────────── */
.email-signup { background: var(--accent); }

.signup-label {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.signup-input {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.3) !important;
  color: #fff !important;
}
.signup-input::placeholder { color: rgba(255,255,255,.5) !important; }
.signup-input option { color: #000 !important; background: #fff !important; }
.signup-input:focus { border-color: #fff !important; background: rgba(255,255,255,.2) !important; box-shadow: none !important; }

/* ── Gallery ─────────────────────────────────────── */
.gallery-section { background: #f8f9fa; }
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item { cursor: pointer; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Lightbox ────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  animation: lb-in .2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
}
#lightbox-close:hover { opacity: 1; }

/* ── Features Bar ────────────────────────────────── */
.feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(33,150,243,.3);
}
.feature-icon svg { fill: #fff; }

.feature-item { border-radius: 10px; padding: 32px 24px; transition: box-shadow .2s, transform .2s; }
.feature-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-item p { font-size: 0.85rem; color: #777; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────── */
footer { background: var(--dark-alt); color: #cfd8dc; }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2196F3;
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: #cfd8dc; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: #2196F3; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s;
}
.social-link:hover { background: #2196F3; }
.social-link svg { fill: #fff; stroke: none; transition: fill .2s; }
.social-link:hover svg { fill: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

.pay-icon {
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
  #mainNav { border-radius: 12px; }
  #mainNav .navbar-collapse { padding: 12px 0; }
  .section-title {
    font-size: 2.5em;
  }
  #home .btn {
    font-size: 12pt;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #mainNav{
    width: 90%;
    left: 49%;
  }
}

