
    :root {
      --brand: #c79a3d;
      --dark: #0f0f0f;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f5f5f5;
      overflow-x: hidden;
      padding-top: 90px;


    }

    /* ================= HEADER ================= */
    .navbar {
      /* -webkit-backdrop-filter: blur(10px); */
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-brand {
      font-weight: 700;
      color: rgb(0, 0, 0);
      letter-spacing: 1px;
    }

    .nav-link {
      color: rgb(9, 9, 9) !important;
      margin-left: 15px;
      font-weight: 500;
    }

    .nav-link:hover {
      color: var(--brand) !important;
    }
/* EDITORIAL NAV */
.editorial-nav {
  background: #FAF8F5;
  border-bottom: 1px solid #E6E3DD;
  padding: 1.1rem 0;
}

/* BRAND */
.editorial-nav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .6px;
}

/* LINKS */
.editorial-nav .nav-link {
  font-size: .95rem;
  font-weight: 500;
  color: #2B2B2B;
  position: relative;
}

.editorial-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #2B2B2B;
  transition: width .3s ease;
}

.editorial-nav .nav-link:hover::after {
  width: 100%;
}

/* ACTIONS */
.action-link {
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: #2B2B2B;
  padding: .35rem .9rem;
}

.action-link.bold {
  border-left: 2px solid #2B2B2B;
  padding-left: 1.2rem;
  font-weight: 600;
}

    .btn-auth {
      border: 1px solid var(--brand);
      color: var(--brand);
      padding: 6px 16px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .btn-auth:hover {
      background: var(--brand);
      color: #000;
    }

    /* ================= HERO ================= */
    .hero {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.85)
    ),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  opacity: .95;
}

    .btn-primary-custom {
      background: var(--brand);
      border: none;
      padding: 14px 32px;
      border-radius: 0px;
      font-weight: 600;
      color: #000;
    }

    .btn-primary-custom:hover {
      background: #ddb55a;
    }

    /* ================= SECTION ================= */
    .section {
      padding: 80px 0;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* ================= PRODUCTS ================= */
    .product-card {
      width: 80%;
      border: none;
      margin-left: 3rem;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
    }

    .product-card:hover {
      transform: translateY(-10px);
    }

    .product-card img {
      height: 220px;
      object-fit: cover;
    }

    .product-card .card-body {
      padding: 25px;
    }

    .btn-outline-brand {
      border: 1px solid var(--brand);
      color: var(--brand);
      border-radius: 10px;
      padding: 10px 24px;
      font-weight: 600;
    }

    .btn-outline-brand:hover {
      background: var(--brand);
      color: #000;
    }
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
  padding: 3rem 0;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card i {
  font-size: 1.6rem;
  color: #c79a3d;
  margin-bottom: .4rem;
  display: block;
}

.feature-card span {
  font-size: .9rem;
  font-weight: 500;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}


#loader {
  position: fixed;
  inset: 0;
  background: #FAF8F5;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #eee;
  border-top: 4px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

    /* ================= FOOTER ================= */
    footer {
      background: var(--dark);
      color: #aaa;
      padding: 40px 0;
      margin-top: 2rem;
    }
    /* ================= MOBILE HERO FIX ================= */
@media (max-width: 576px) {

body {
  padding-top: 64px; /* smaller navbar offset */
}

.hero {
  min-height: auto;
  padding: 3rem 1rem 3.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 0.9rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
}

.btn-primary-custom {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* Feature pills smaller */

.pill {
  padding: 1rem 0.5rem;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  min-height: 100px;
  justify-content: center;
}

.pill i {
  color: var(--brand);
  font-size: 1.5rem;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product cards spacing */
.product-card img {
  height: 180px;
}

.section {
  padding: 50px 0;
}

/* ================= MOBILE PRODUCT CARD FIX ================= */
@media (max-width: 576px) {

/* Keep original image height */
.product-card img {
  height: 220px;
}

/* Restore normal padding */
.product-card .card-body {
  padding: 25px;
}

/* Optional: slightly smaller text only */
.product-card h5 {
  font-size: 1rem;
}

.product-card p {
  font-size: 0.85rem;
}

/* Keep centered narrow cards */
.product-card {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}
}

