/* ==================================================
   GLOBAL RESET & BASE
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0F0F0F;
  color: #fff;
  overflow-x: hidden;
}

/* ==================================================
   SCROLL CONTAINER (JS CONTROLLED)
================================================== */

.scroll-container {
  height: 100vh;
  overflow-y: auto;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1, h2, h3 {
  font-weight: 600;
}

/* ==================================================
   HEADER & NAVBAR
================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(15,15,15,0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,77,0.25);

  transition: transform 0.35s ease;
}

header.hide {
  transform: translateY(-120%);
}

.logo {
  height: 110px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin: 0 26px;
  color: #C9A24D;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #FFD700;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ==================================================
   BUTTONS (COMMON)
================================================== */

.btn {
  padding: 12px 26px;
  border-radius: 10px;
  background: #C9A24D;
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-primary {
  font-size: 20px;
}

.btn:hover {
  background: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201,162,77,0.45);
}

.btn.whatsapp {
  background: #25D366;
}

/* ==================================================
   PRODUCT CARDS (COMMON)
================================================== */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 60px;
}

.product-card {
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(201,162,77,0.25);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #C9A24D;
}

/* ==================================================
   WHATSAPP FLOAT (GLOBAL)
================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(37,211,102,0.5);
  z-index: 9999;
  animation: whatsapp-pop 2.2s infinite;
}

@keyframes whatsapp-pop {
  0% { transform: scale(1); }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
  background: #0B0B0B;
  color: #ccc;
  padding-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 18px;
}

.footer-col h4 {
  color: #C9A24D;
  margin-bottom: 18px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ==================================================
   MOBILE (GLOBAL)
================================================== */

@media (max-width: 768px) {

  .logo {
    height: 70px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15,15,15,0.97);
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 14px 0;
    font-size: 18px;
  }

  .products {
    padding: 40px 20px;
  }
}


/* ================================
   HAMBURGER MENU
================================ */

/* Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #C9A24D;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(10px);

    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;

    border-top: 1px solid rgba(201,162,77,0.25);
  }

  nav a {
    padding: 14px 0;
    font-size: 18px;
  }

  nav.show {
    display: flex;
  }
}

/* Animate hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Safari safe
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  nav {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
} */
/* ================================
   HOME PAGE – MOBILE OPTIMISATION
   Screen ≤ 768px
================================ */

@media (max-width: 768px) {

  /* ===== HEADER FIX ===== */
  header {
    padding: 12px 18px;
  }

  .logo {
    height: 64px;
  }

  nav a {
    font-size: 16px;
    margin: 10px 0;
  }

}

