/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}


body {
  font-family: "Inter", sans-serif;
  color: #032E15;
}

/* ================= GLOBAL ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* ================= HEADER ================= */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #4f7d62;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 15px;
  color: #1f3d2b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
}

/* ================= MOBILE MENU TOGGLE ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #032E15;
}




/* ================= BUTTON ================= */
.btn-primary {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 999px;
  background: linear-gradient(178deg, #032E15 0%, #016630 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  /* font-weight: 100; */
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background-image: url("/assets/images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-top: 180px;
}

/* Content block */
.hero-content {
  max-width: 600px;
}

/* ================= BADGE ================= */
.badge {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #032E15 0%, #016630 100%);
  color: #fff;
  font-size: 13px;
  width: 50%;
}

span.badge svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

/* ================= HERO TITLE ================= */
.hero h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #032E15;
}

/* ================= STATS ================= */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.stat-value {
  display: block;
  font-size: 80px;
  font-weight: 700;
  color: rgba(3, 46, 21, 0.45);
}

.stat-label {
  font-size: 18px;
  color: #4f7d62;
  font-weight: 100;
}

/* end banner n hero */

/* gtg perfumes section  */
/* ================= PRODUCT SECTION ================= */
.product-section {
  padding: 100px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* GALLERY */
.product-gallery img {
  width: 100%;
  display: block;
}

/* ===== Gallery main container ===== */
.gallery-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* ===== SVG arrows ===== */
.gallery-arrow {
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.gallery-arrow.left {
  left: 20px;
}

.gallery-arrow.right {
  right: 20px;
}

.gallery-arrow svg {
  display: block;
  width: 30px;
  height: 30px;
}

/* Optional hover */
.gallery-arrow:hover svg rect {
  stroke-width: 1.2;
}

/* ===== Dots ON IMAGE ===== */
.gallery-dots.on-image {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

/* Dot style */
.gallery-dots span {
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #032E15;
}

/* Active dot */
.gallery-dots span.active {
  background: #032E15;
  border: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.gallery-thumbs img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-thumbs img:hover {
  border-color: #016630;
}


/* DETAILS */
.product-details {
  max-width: 600px;
}

.rating {
  color: #032e14;
  margin: 8px 0 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

p.description {
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.subscription-card {
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
}

.subscription-card.active {
  border-color: #B8B8B8;
}

.card-header {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  align-items: center;
}

.card-header label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
}

.card-body h4 {
  font-weight: 200;
}

.price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.price del {
  color: #aaa;
  font-size: 16px;
  margin-left: 8px;
  font-weight: 100;
  letter-spacing: 1px;
}

.card-body {
  padding: 20px;
  display: none;
}

.subscription-card.active .card-body {
  display: block;
}

.most-popular-bar {
  background: linear-gradient(90deg,
      #00C950 0%,
      #008236 52%,
      #032E15 100%);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 14px 14px 0 0;
}


/* FRAGRANCES */
.fragrance-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 30px;
}

/* ===== Card ===== */
.fragrance-card {
  position: relative;
  border: 1.5px solid #e3e3e3;
  border-radius: 14px;
  padding: 14px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fragrance-card:hover {
  border-color: #9fc3ac;
}

/* Selected */
.fragrance-card.active {
  border-color: #1f6b3b;
  background: #ffffff;
}

/* ===== BEST SELLER badge ===== */
.fragrance-card .badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #1f6b3b;
  color: #fff;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

/* ===== Title + radio ===== */
.fragrance-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #919798;
  margin-bottom: 10px;
  font-weight: 100;
}

.fragrance-title input {
  accent-color: #1f6b3b;
}

/* ===== Image box ===== */
.fragrance-image {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fragrance-image img {
  max-height: 120px;
  object-fit: contain;
}


.best {
  position: absolute;
  top: -10px;
  left: 10px;
  background: #1f6b3b;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
}

/* INCLUDED */
.include-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 16px;
  margin: 16px 0;
}

.include-box {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 18px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.include-title {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 200;
  color: #032e15;
}

.include-box .mini-row img {
  max-width: 60px;
}


.include-box img {
  max-width: 70px;
}

.mini-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}

/* BENEFITS */
.benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefits li {
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
  color: #032E15;
  font-weight: 200;
}



/* CTA */
.btn-primary.full {
  display: block;
  text-align: center;
  margin-top: 24px;
}

/*end  */

/* ================= ACCORDION ================= */
section.collection-section {
  padding-bottom: 60px;
}

.accordion-item {
  border: 1px solid #cdcdcd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.accordion-item.active {
  border-color: #1f4d2b;
}

h2.section-title {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Header */
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #032e15;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
}

/* Icon */
.accordion-header .icon {
  font-size: 22px;
  line-height: 1;
}

/* Body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

/* Active body */
.accordion-item.active .accordion-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 24px;
}

.accordion-body p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  max-width: 420px;
  font-weight: 200;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.collection-image img {
  width: 92%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* end */

/* ================= COUNTER SECTION ================= */

.counter-section {
  padding: 70px 0;
  background: linear-gradient(179deg, #0f2f1c, #2f6b3c);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.counter-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 100;
}

/* Responsive */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}

/*end  */

/* ================= COMPARISON TABLE ================= */
.comparison-section {
  padding: 100px 0;
  background: #ffffff;
}

.comparison-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b3b1e;
  margin-bottom: 60px;
}

/* TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #d9d9d9;
  color: #444;
}

/* First column */
.comparison-table .label-col,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #555;
}

/* Brand header */
.brand-col {
  font-weight: 500;
}

.brand-col img {
  width: 74px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}

.brand-col span {
  display: block;
  font-size: 14px;
  color: #666;
}

/* Highlight GTG column */
.highlight {
  background: #f1fbf4;
  font-weight: 600;
  color: #0b3b1e;
}

/* Icons */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0b3b1e;
  color: #fff;
  font-size: 14px;
}

.check-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #333;
  font-size: 14px;
}

.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #999;
  color: #999;
  font-size: 14px;
}

/* CTA */
.comparison-cta {
  text-align: center;
  margin-top: 60px;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* end */

/* ================= FOOTER ================= */
.site-footer {
  background: radial-gradient(circle at top,
      #1e5a2f 0%,
      #0b2d18 60%,
      #061b0f 100%);
  padding: 80px 0;
  color: #eaeaea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 2.2fr;
  gap: 40px;
  align-items: start;
}

/* Brand */
.footer-brand .logo {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

/* Links */
.footer-links a {
  display: block;
  color: #d6e2d8;
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Social */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d6e2d8;
  text-decoration: none;
  font-size: 16px;
}

.social-item .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #d6e2d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Newsletter */
.footer-newsletter {
  max-width: 520px;
}

.newsletter-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #cfd9d2;
}

.newsletter-form button {
  background: #6b4616;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #7b5220;
}

.newsletter-note {
  font-size: 14px;
  color: #cfd9d2;
  line-height: 1.6;
}

.newsletter-note a {
  color: #ffffff;
  text-decoration: underline;
}