* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: Poppins, sans-serif;

    background: var(--cream);

    color: var(--text);

}

.container {
  width: min(100% - 144px, 1296px);
  margin-inline: auto;
}

.navbar {

    background: white;

    padding: 20px 0;

    box-shadow: var(--shadow);

    position: sticky;

    top: 0;

    z-index: 100;

}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

nav ul {

    display: flex;

    gap: 30px;

    list-style: none;

}

nav a {

    text-decoration: none;

    color: #333;

}

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: Cinzel, serif;

    font-size: 22px;

    font-weight: 600;

    color: var(--green);

    text-decoration: none;

    white-space: nowrap;

}
.navbar .logo img {

    height: 42px;

    width: auto;

}
.footer-logo {

    display: block;

    max-width: 160px;

    height: auto;

    margin-bottom: 12px;

}

.btn {

    background: var(--gold);

    padding: 14px 26px;

    border-radius: 40px;

    text-decoration: none;

    color: white;

    display: inline-block;

    transition: .3s;

}

.btn:hover {

    transform: translateY(-3px);

}

.hero {

    padding: 80px 0;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

}

.hero h1 {

    font-family: Cinzel;

    font-size: 52px;

    color: var(--green);

    margin-bottom: 20px;

}

.hero p {

    margin-bottom: 35px;

    font-size: 18px;

    line-height: 1.8;

}

.hero img {

    border-radius: 20px;
    box-shadow: var(--shadow);

}
.page-header {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 60px 0 50px;
}
.page-header h1 {
  font-family: Cinzel, serif;
  font-size: 42px;
  margin-bottom: 12px;
}
.page-header p {
  opacity: 0.85;
  font-size: 17px;
}

.filters {
  padding: 30px 0 10px;
  border-bottom: 1px solid #e8e4db;
}
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  transition: 0.25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-section {
  padding: 50px 0 70px;
}
.result-info {
  color: #888;
  margin-bottom: 25px;
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 35px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f0ece3;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-info {
  padding: 18px 20px 22px;
}
.product-cat {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.product-info h3 {
  font-family: Cinzel, serif;
  font-size: 17px;
  color: var(--green);
  margin: 6px 0 8px;
}
.product-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}
.product-price {
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
}

.product-detail {
  padding: 50px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0ece3;
}
.detail-img img {
  width: 100%;
  display: block;
}
.detail-info h1 {
  font-family: Cinzel, serif;
  font-size: 34px;
  color: var(--green);
  margin: 10px 0 15px;
}
.detail-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.detail-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 18px 0;
  border-top: 1px solid #e8e4db;
  border-bottom: 1px solid #e8e4db;
}
.detail-meta div span {
  display: block;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.detail-meta div strong {
  font-size: 16px;
  color: var(--green);
}
.detail-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.whatsapp-btn {
  margin-right: 15px;
}

/* ---------- Image Gallery (v0.3) ---------- */
.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0ece3;
}
.detail-main-img img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}
.detail-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.detail-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.2s;
  background: #f0ece3;
}
.detail-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}
.detail-thumb.active {
  opacity: 1;
  border-color: var(--green);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-section {
  padding: 40px 0 70px;
  border-top: 1px solid #e8e4db;
}
.related-section h2 {
  font-family: Cinzel, serif;
  text-align: center;
  color: var(--green);
  margin-bottom: 40px;
  font-size: 28px;
}

.about-section {
  padding: 50px 0 70px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about-grid h2 {
  font-family: Cinzel, serif;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 18px;
}
.about-grid p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0ece3;
  line-height: 1.6;
}
.feature-list li:last-child {
  border-bottom: none;
}

.contact-section {
  padding: 50px 0 70px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card h3 {
  font-family: Cinzel, serif;
  color: var(--green);
  font-size: 17px;
  margin-bottom: 14px;
}
.contact-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.contact-card a {
  color: var(--gold);
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
.wa-cta {
  text-align: center;
}

/* ---------- Footer (v0.2) ---------- */
.hero {
  min-height: 700px;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 35, 27, 0.82) 0%,
      rgba(3, 35, 27, 0.55) 40%,
      rgba(3, 35, 27, 0.12) 72%,
      rgba(3, 35, 27, 0.05) 100%
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.hero .container {
  min-height: 700px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-subtitle {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}
.hero-content h1 {
  font-family: Cinzel, serif;
  font-size: 68px;
  color: #F7F0DF;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-content p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(247, 240, 223, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btns .btn {
  background: var(--gold);
  color: var(--green);
  font-weight: 600;
  border-radius: 999px;
  border: none;
  padding: 15px 30px;
}
.hero-btns .btn:hover {
  background: #D4AF5E;
  color: var(--green);
  transform: translateY(-2px);
}
.hero-btns .btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: #F7F0DF;
  border-radius: 999px;
  padding: 15px 30px;
}
.hero-btns .btn-outline:hover {
  background: var(--gold);
  color: var(--green);
}

/* ---------- Trust Strip ---------- */
.trust-section {
  background: var(--green);
  padding: 50px 0;
  position: relative;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 16px;
}
.trust-item h4 {
  color: var(--white);
  font-family: Cinzel, serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.trust-item p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

/* ---------- Featured Collections (v0.2) ---------- */
.featured-section {
  padding: 80px 0 50px;
}
.featured-products-section {
  padding-bottom: 80px;
  background: #fff;
}
.section-title {
  font-family: Cinzel, serif;
  font-size: 38px;
  color: var(--green);
  text-align: center;
  margin-bottom: 50px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}
.featured-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s;
  display: block;
}
.featured-card:hover {
  transform: translateY(-6px);
}
.featured-card-img {
  width: 100%;
  height: 180px;
  background: #f0ece3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.featured-card:hover .featured-card-img img {
  transform: scale(1.08);
}
.featured-card-body {
  padding: 18px 16px 22px;
  text-align: center;
}
.featured-card-body h3 {
  font-family: Cinzel, serif;
  color: var(--green);
  font-size: 17px;
  margin-bottom: 4px;
}
.featured-card-body p {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}
.featured-card-body .link-gold {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}
.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

/* ---------- Product Card (enhanced) ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.product-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f0ece3;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-info {
  padding: 20px;
}
.product-cat {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.8px;
}
.product-info h3 {
  font-family: Cinzel, serif;
  font-size: 17px;
  color: var(--green);
  margin: 8px 0 6px;
}
.product-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.product-price {
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
}

/* ---------- About Section ---------- */
.about-section {
  padding: 90px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: Cinzel, serif;
  font-size: 36px;
  color: var(--green);
  margin-bottom: 8px;
}
.about-subtitle {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 16px;
}
.about-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.about-img-wrap {
  display: flex;
  justify-content: center;
}
.about-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.link-gold {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.link-gold:hover {
  text-decoration: underline;
}

/* ---------- Footer (v0.2) ---------- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h3 {
  font-family: Cinzel, serif;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
}
.footer h4 {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer a:hover {
  color: var(--gold);
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  padding: 5px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: left;
  font-size: 13px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Misc ---------- */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--green);
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.3s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.08);
}

/* ---------- Scroll to Top ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 96px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 199;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s;
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-to-top:hover {
  background: var(--gold);
}

/* ---------- Search ---------- */
.search-section {
  padding: 50px 0 80px;
}
.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto 30px;
  border: 1.5px solid #e8e4db;
  border-radius: 50px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.search-box input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  outline: none;
  background: transparent;
}
.search-box button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0 28px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}
.search-box button:hover {
  background: var(--green);
}
.search-filters {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.search-filters select {
  padding: 10px 18px;
  border: 1.5px solid #e8e4db;
  border-radius: 30px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  outline: none;
}

/* ---------- Nav Actions (search + wa) ---------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-decoration: none;
  transition: 0.3s;
}
.nav-search:hover {
  color: var(--gold);
}

/* ---------- Visit Page ---------- */
.visit-page-section {
  padding: 50px 0 80px;
}
.visit-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 35px;
  align-items: start;
}
.visit-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visit-page-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.visit-page-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-page-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.visit-page-card h4 {
  font-family: Cinzel, serif;
  color: var(--green);
  font-size: 15px;
  margin-bottom: 6px;
}
.visit-page-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 4px;
}
.visit-cta-section {
  background: var(--green);
  text-align: center;
  padding: 60px 0;
}
.visit-cta-section h2 {
  font-family: Cinzel, serif;
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}
.visit-cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 16px;
}
.visit-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About Features ---------- */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.about-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid #e8e4db;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}
.about-feature svg {
  color: var(--gold);
}

/* ---------- Visit CTA overrides ---------- */
.visit-cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.visit-cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}