/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

/* =========================
   COLOR VARIABLES
========================= */
:root {
  --gold: #f5c16c;
  --gold-dark: #c9983f;
  --cream: #f8f1e6;
  --black: #000;
  --blue: #7ec3dc;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 70%);
  padding: 10px 6%;
  text-align: center;
  position: relative;
  min-height: 40vh;
  /* ADDED */
  display: flex;
  /* ADDED */
  flex-direction: column;
  /* ADDED */
  justify-content: center;
  /* ADDED */
}

/* FIXED BACKGROUND IMAGE */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/image/hero.png") no-repeat center bottom;
  background-size: contain;
  /* FIX */
  opacity: 0.35;
  pointer-events: none;
  /* ADDED */
}

/* Desktop fine-tuning */
@media (min-width: 1200px) {
  .hero::after {
    background-size: 100% auto;
  }

  .locationstore {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    /* FIX */
    justify-content: space-between;
    /* FIX */
    align-items: center;
    /* FIX */
    padding: 0 6%;
    /* MATCH HERO PADDING */
    color: #f5c16c;
    font-size: 24px;
    /* FIX */
  }

  .locationstore p {
    width: 100%;
    display: flex;
    /* FIX */
    justify-content: space-between;
    /* FIX */
    margin: 0;
  }
}


.hero {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 70%);
  padding: 10px 6%;
  text-align: center;
  position: relative;
  min-height: 92vh;
  /* ADDED */
  display: flex;
  /* ADDED */
  flex-direction: column;
  /* ADDED */
  justify-content: center;
  /* ADDED */
}


.mainlogo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 99;
}

.mainlogo img {
  width: 60px;
  height: 60px;
}

.number {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 80px;
  z-index: 99;
}

a {
  text-decoration: none;
}
.number p {
  font-size: 24px;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #f5c16c;
  font-weight: 600;
  border-radius: 20px;
}


.logo {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 4px;
  color: transparent;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 10s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

.tagline {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #aaa;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  margin-top: 30px;
  text-shadow: 0 0 25px rgba(245, 193, 108, 0.4);
}

.hero p {
  margin-top: 10px;
  font-size: 14px;
  color: #ddd;
}


.cta-btn {
  margin-top: 30px;
  padding: 12px 34px;
  border-radius: 30px;
  max-width: 200px;
  justify-self: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 193, 108, 0.5);
}

.locationstore {
  margin-top: 100px;
  text-align: center;
}

/* =========================
   WHOLESALE SECTION (FIXED & CENTERED)
========================= */
.wholesale {
  margin-top: 80px;
  position: relative;
  min-height: 900px;
  padding: 100px 6% 80px;
  display: flex;
  flex-direction: column;
  /* FIX 1 */
  align-items: center;
  /* FIX 2 */
}

.wholesale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/image/productbg.png") no-repeat center bottom;
  background-size: contain;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* FIX 3 */
}

@media (min-width: 1200px) {
  .wholesale::after {
    background-size: 100% 100%;
  }
}

/* ---------- HEADING ---------- */
.wholesale h3 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.wholesale h3::after {
  content: "";
  width: 90px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 18px auto 0;
}

/* ---------- GRID ---------- */
.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* MATCH IMAGE */
  gap: 60px;
  width: 100%;
  /* FIX CENTER */
  max-width: 1200px;
  /* CONTROL WIDTH */
  justify-items: center;
  /* PERFECT CENTER */
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wholesale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wholesale-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CARD ---------- */
.card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  width: 100%;
  max-width: 320px;
  /* SAME SIZE AS IMAGE */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  z-index: 2;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  background: #f4f4f4;
}

/* ---------- TEXT ---------- */
.card h4 {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #d97706;
  /* MATCH IMAGE TONE */
}

.card p {
  font-size: 13px;
  color: #666;
  margin: 6px 0 12px;
}

/* ---------- BUTTON ---------- */
.card a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: #f97316;
  color: #fff;
  text-decoration: none;
}

/* =========================
   STORY SECTION
========================= */

/* ================= STATS TOP STRIP ================= */
.stats-top-strip {
  background: #000;
  color: #fff;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}

.stats-top-strip span {
  white-space: nowrap;
}

.stats-top-strip .highlight {
  color: #d946ef;
  font-weight: 600;
  animation: blink 1.4s infinite;
}

.stats-top-strip .gradient-text {
  background: linear-gradient(90deg, #22d3ee, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.call-btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

@keyframes blink {
  0%,100% { opacity: 1 }
  50% { opacity: 0.5 }
}

/* ================= BUSINESS JOURNAL ================= */
.business-journal {
  background: #6bbbd7;
  text-align: center;
  padding: 34px 0;
}

.business-journal span {
  display: block;
  font-size: 14px;
  letter-spacing: 6px;
  font-weight: 600;
}

.business-journal h3 {
  font-size: 42px;
  margin: 6px 0 0;
  font-weight: 700;
  text-shadow: 0 4px 6px rgba(0,0,0,0.35);
}

/* ================= STATS SECTION ================= */
.stats {
  background: #cfeef8;
  padding: 70px 6%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h2 {
  font-size: 46px;
  font-weight: 700;
  color: #1e3a8a;
}

.stat p {
  margin-top: 14px;
  font-size: 18px;
  color: #2563eb;
  line-height: 1.4;
  font-weight: 500;
}

/* ================= BOTTOM STORY ================= */
.stats-bottom-text {
  background: #6bbbd7;
  color: #fff;
  padding: 50px 10%;
  text-align: center;
  font-size: 22px;
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-top-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .business-journal h3 {
    font-size: 34px;
  }
}



/* =========================
   FOOTER
========================= */
/* ================= FOOTER (IMAGE MATCH) ================= */

.footer {
  background: #000;
  padding: 70px 6% 40px;
  color: #d1d1d1;
  position: relative;
}

/* TITLE */
.footer-title {
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #d9e7c9;
  margin-bottom: 30px;
}

.footer-title span {
  color: var(--gold);
}

/* MAP + IMAGE */
.footer-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 6px;
}

.footer-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

/* DIVIDER */
.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px 0;
}

/* INFO ROW */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  color: var(--gold);
  font-size: 18px;
}

.footer-info p {
  margin-bottom: 8px;
}

.footer-name {
  font-weight: 600;
  font-size: 20px;
}

/* BRAND */
.footer-brand {
  text-align: center;
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.footer-brand span {
  display: block;
  font-size: 42px;
  letter-spacing: 8px;
  color: #b97a3c;
}

.footer-brand strong {
  font-size: 64px;
  letter-spacing: 4px;
  color: #f3c98b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-media {
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-title {
    text-align: center;
  }
}


@media (max-width: 480px) {

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 80px 6% 40px;
  }

  .logo {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .hero h2 {
    font-size: 20px;
    margin-top: 20px;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.6;
  }

  .tagline {
    font-size: 12px;
  }

  /* FIX FIXED LOGO & NUMBER */
  .mainlogo {
    top: 10px;
    left: 10px;
    width: 45px;
    height: 45px;
  }

  .mainlogo img {
    width: 45px;
    height: 45px;
  }

  .number {
    top: 10px;
    right: 10px;
    width: auto;
    height: auto;
  }

  .number p {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 14px;
  }

  /* LOCATION STRIP */
  .locationstore {
    margin-top: 60px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 576px) {

  /* CTA BUTTON */
  .cta-btn {
    padding: 10px 26px;
    font-size: 14px;
  }

  /* WHOLESALE */
  .wholesale {
    padding: 80px 6% 60px;
  }

  .wholesale h3 {
    font-size: 30px;
  }

  .card img {
    height: 200px;
  }

  /* STATS TOP STRIP */
  .stats-top-strip {
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
  }

  .call-btn {
    font-size: 14px;
    padding: 6px 16px;
  }

  /* BUSINESS JOURNAL */
  .business-journal h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {

  /* STATS */
  .stats {
    padding: 50px 6%;
  }

  .stat h2 {
    font-size: 34px;
  }

  .stat p {
    font-size: 16px;
  }

  /* STORY TEXT */
  .stats-bottom-text {
    font-size: 18px;
    padding: 40px 6%;
  }

  /* FOOTER */
  .footer-title {
    font-size: 26px;
  }

  .footer-info {
    font-size: 16px;
  }

  .footer-brand span {
    font-size: 32px;
  }

  .footer-brand strong {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .footer-map iframe,
  .footer-image img {
    height: 280px;
  }
}
