:root {
  --surface: #f8f9f5;
  --surface-card: #ffffff;
  --ink: #1a1c1a;
  --muted: #414843;
  --emerald: #0c3321;
  --emerald-dark: #001d0f;
  --gold: #c59e47;
  --gold-dark: #795901;
  --champagne: #f3e7c5;
  --line: #d6c088;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
  --label: "Work Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
.hero__copy{
	zoom: 1;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
}

.page-loader--hide {
  pointer-events: none;
}
.hm-mission__inner{
	display: grid;
}
.page-loader--hide .page-loader__inner {
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.img-package img.for-desktop-banner{
	display: block;
}
.img-package img.for-mobile-banner{
	display: none;
}
.page-loader__door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(197, 158, 71, 0.12), transparent 55%),
    #0c3321;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader__door--left {
  left: 0;
}

.page-loader__door--right {
  right: 0;
}

.page-loader--hide .page-loader__door--left {
  transform: translateX(-100%);
}

.page-loader--hide .page-loader__door--right {
  transform: translateX(100%);
}

.page-loader__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-loader__logo {
  width: 200px;
  height: 133px;
  background-color: var(--gold);
  -webkit-mask-image: url("../img/try/logo-heritage.webp");
  mask-image: url("../img/try/logo-heritage.webp");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.95;
  animation: page-loader-pulse 2.2s ease-in-out infinite;
}

.page-loader__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 999px;
  border: 2px solid rgba(197, 158, 71, 0.35);
  border-top-color: var(--gold);
  animation: page-loader-spin 1.6s linear infinite;
}

.page-loader__text {
  margin: 0;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

@keyframes page-loader-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
 
img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.try-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.try-cart__toggle,
.try-cart__panel {
  pointer-events: auto;
}

.try-cart__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 48px;
  margin-left: auto;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #075b33, #003f23);
  box-shadow: 0 10px 26px rgba(0, 29, 15, 0.28);
  cursor: pointer;
}

.try-cart__toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.try-cart__toggle b {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--emerald-dark);
  background: #f0c95f;
  font-size: 12px;
}

.try-cart__panel {
  display: none;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(12, 51, 33, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 29, 15, 0.22);
}

.try-cart.is-open .try-cart__panel {
  display: block;
}

.try-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: var(--emerald);
}

.try-cart__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
}

.try-cart__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.try-cart__items {
  max-height: 260px;
  overflow-y: auto;
  padding: 8px 14px;
}

.try-cart__empty {
  margin: 0;
  padding: 18px 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.try-cart__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 51, 33, 0.12);
}

.try-cart__item:last-child {
  border-bottom: 0;
}

.try-cart__name {
  margin: 0;
  color: var(--emerald);
  font-weight: 800;
  line-height: 1.25;
}

.try-cart__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.try-cart__qty button,
.try-cart__remove {
  border: 0;
  cursor: pointer;
}

.try-cart__qty button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--emerald);
}

.try-cart__qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
}

.try-cart__remove {
  margin-top: 8px;
  padding: 0;
  color: #9b6b16;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.try-cart__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #f7f1df;
}

.try-cart__continue,
.try-cart__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.try-cart__continue {
  border: 1px solid rgba(12, 51, 33, 0.25);
  color: var(--emerald);
  background: #fff;
  cursor: pointer;
}

.try-cart__checkout {
  color: #fff;
  background: linear-gradient(180deg, #075b33, #003f23);
}

.container {
  width: min(100% - 48px, 1280px); 
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(420px, 52vw, 520px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 18%, rgba(218, 184, 82, 0.2), transparent 22%),
    radial-gradient(circle at 68% 48%, rgba(27, 99, 58, 0.5), transparent 36%),
    linear-gradient(90deg, rgba(0, 29, 15, 1) 0%, rgba(7, 68, 39, 0.97) 45%, rgba(0, 29, 15, 0.84) 100%),
    #062315;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(197, 158, 71, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(197, 158, 71, 0.05) 87.5%),
    linear-gradient(150deg, rgba(197, 158, 71, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(197, 158, 71, 0.05) 87.5%);
  background-size: 34px 59px;
  opacity: 0.32;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, 1440px);
  min-height: clamp(420px, 52vw, 520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  align-items: center;
  gap: 24px;
  padding: 20px 0 58px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-logo {
  object-fit: contain;
}

.brand-logo--hero {
	width: 225px;
    height: auto; 
	margin-inline: auto;
	position: relative;
	left: -20px;
}

.hero h1 {
  max-width: 600px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.8vw, 43px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: #f0bd52;
  font-size: 1.32em;
}

.hero p {
	max-width: 380px;
    margin: 22px 0;
    font-size: 20px;
    text-align: left;
    letter-spacing: .5px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.tagline {
  display: flex;
  align-items: center;
  width: min(520px, 100%);
  color: #f0bd52;
  font-family: var(--label);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tagline::before,
.tagline::after,
.section-title > span,
.intro-lines > span {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.tagline span {
  position: relative;
  padding: 0 13px;
  white-space: nowrap;
  font-weight: 100;
    font-size: 20px;
}

.tagline span::before,
.tagline span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.tagline span::before {
  left: -4px;
}

.tagline span::after {
  right: -4px;
}

.hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: -64px;
  padding-top: 18px;
  isolation: isolate;
}

.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__media::before {
  z-index: -1;
  background:
    radial-gradient(ellipse at 55% 52%, rgba(39, 101, 52, 0.45), transparent 52%),
    linear-gradient(90deg, rgba(0, 29, 15, 0.8), transparent 32%, rgba(0, 29, 15, 0.16));
  -webkit-mask-image: radial-gradient(ellipse at 62% 56%, #000 36%, transparent 76%);
  mask-image: radial-gradient(ellipse at 62% 56%, #000 36%, transparent 76%);
}

.hero__media::after {
  z-index: 2;
  inset: -2px -18px -6px -60px;
  background:
    linear-gradient(90deg, rgba(0, 29, 15, 0.96) 0%, rgba(12, 51, 33, 0.72) 18%, rgba(12, 51, 33, 0.08) 48%, rgba(0, 29, 15, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 29, 15, 0.76), transparent 28%, transparent 68%, rgba(0, 29, 15, 0.72));
  -webkit-mask-image: radial-gradient(ellipse at 66% 54%, #000 30%, rgba(0, 0, 0, 0.7) 50%, transparent 78%);
  mask-image: radial-gradient(ellipse at 66% 54%, #000 30%, rgba(0, 0, 0, 0.7) 50%, transparent 78%);
}

.hero__media img {
  position: relative;
  z-index: 0;
  width: min(120%, 860px);
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.94) contrast(1.06) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
  -webkit-mask-image: radial-gradient(ellipse at 62% 56%, #000 40%, rgba(0, 0, 0, 0.72) 56%, transparent 78%);
  mask-image: radial-gradient(ellipse at 62% 56%, #000 40%, rgba(0, 0, 0, 0.72) 56%, transparent 78%);
}

.hero-curve {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 72px;
  pointer-events: none;
}
.for-bg-match{
	background: #f2e9e0;
}
.hero-curve__fill {
  fill: #f2e9e0;
}

.hero-curve__line {
  fill: none;
  stroke: #edcc77;
  stroke-width: 9;
  stroke-linecap: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  zoom: 1.3;
  stroke: #f5bf42;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--gold svg {
  width: 26px;
  height: 26px;
}

.button--gold {
  margin-top: 4px;
  min-width: 435px;
  min-height: 64px;
  padding: 14px 28px;
  color: var(--emerald-dark);
  font-size: 17px;
  background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%);
  background-size: 200% auto;
  background-position: left center;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button--gold:hover {
  background-position: right center;
}

.button--green {
  color: #fff;
  background: linear-gradient(180deg, #075b33, #003f23);
	/* background: #003f23; */
}

.button--small {
  width: auto;
  min-height: 42px;
  padding: 11px 20px;
  font-size: 13px;
  border-radius: 6px;
}

.intro-section {
  padding: 22px 0 34px;
  text-align: center;
}

.intro-section__inner {
  max-width: 960px;
}

.intro-heading {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.intro-heading h2,
.help-panel h2 {
  margin: 0;
  color: var(--emerald);
  font-family: auto;
  font-size: clamp(34px, 4vw, 45px);
  line-height: 1;
  font-weight: 700;
}
.help-panel__copy h2{
	margin-bottom: 10px;
	font-size: 25px;
} 
.help-panel p strong{
	font-size: 20px;
	font-weight: 600;
}
.heart-badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #f4cf70;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(197, 158, 71, 0.55), 0 3px 8px rgba(0, 0, 0, 0.24);
}

.heart-badge svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.intro-lines {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 64px;
  margin: 16px 30px 8px;
}

.intro-lines h3 {
  margin: 0;
  color: #9b6b16;
  font-family: var(--sans);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
}

.intro-section p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.48;
}

.product-section,
.bundle-section {
  padding: 24px 0 18px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
  color: var(--emerald);
}

.section-title h2 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
.subcard{
	position: absolute;
    top: 0;
    height: 100%;
	overflow: hidden;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.section-title h2::before {
  left: -27px;
}

.section-title h2::after {
  right: -27px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.product-card,
.bundle-card,
.help-panel {
  background: var(--surface-card);
  border: 1px solid rgba(114, 121, 115, 0.22);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover,
.bundle-card:hover,
.help-panel:hover {
  box-shadow: 0 12px 28px rgba(12, 51, 33, 0.14);
}

.product-card {
  min-height: 220px;
  display: grid;
  position: relative;
  grid-template-columns: 170px 1fr;
  align-items: end;
  gap: 16px;
  overflow: visible;
  padding: 18px 22px 18px 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(12, 51, 33, 0.1);
}

.product-card__image {
	grid-column: 1;
    grid-row: 1;
    align-self: end;
    position: relative;
    justify-self: start;
    top: -30px;
    width: 160px;
    max-width: none;
    margin-bottom: -18px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 12px 16px rgba(12, 51, 33, 0.16));

}

.product-card__content {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.product-card__content .buy_product {
  margin-top: auto;
  align-self: flex-start;
}

.product-card h3,
.bundle-card h3,
.partner-panel h2 {
  margin: 0;
  color: var(--emerald);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
  text-wrap: balance;
}

.product-card h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 2.5em; 
  height: 10px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 25px;
  padding-top: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-card--soursop h3 {
  color: #103f9b;
}

.product-card--asam h3,
.asam {
  color: #b10f0f;
}

.ruby {
  color: #006331;
}

.soursop {
  color: #0b4699;
}

.product-card p {
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
}

.product-card strong {
  display: block;
  margin: 0 0 16px;
  color: #9b6b16;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
}
.container-fluid{
width: min(100% - 48px, 100%);
}
.bundle-section {
  padding-top: 24px;
}

.bundle-banner {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bundle-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.packed-bundle {
  width: 100%;
  border-top: 5px solid #20703c;
  border-bottom: 5px solid #20703c;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  background-color: #f2e9e0;
}
 
.packed-bundle img {
  display: block;

  width: 100%;
  height: auto;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 60px 0 60px;
}

.pack-card {
  position: relative;
  padding: 34px 20px 22px;
  border: 2px solid var(--emerald);
  border-radius: 16px;
  background: #f4ece3;
  text-align: center;
}
.pack-card.r-padding{
padding-left: 20px;
padding-right: 20px;
}
.pack-card--value {
  border-color: var(--gold-dark);
}

.pack-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px; 
  border-bottom-left-radius: 10px;
  
  border-bottom-right-radius: 10px;
  white-space: nowrap;
  color: #fff;
  background: var(--emerald);
  font-family: var(--label);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.pack-card--value .pack-card__badge {
  background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 60%, #7a5c1e 100%);
}

.pack-card__badge small {
  font-size: 11px;
  font-weight: 600;
}

.pack-card__badge-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.pack-card__bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  min-height: 150px;
  margin: 26px 0 18px;
}

.pack-card__bottles img { 
  height: auto;
  object-fit: contain;
}

.pack-card__bag {
  width: 46px !important;
  margin-left: 6px;
}

.pack-breakdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pack-breakdown li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.25;
}

.pack-dot {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.pack-dot--ruby {
  background: #9b1c2e;
}

.pack-dot--durian {
  background: #103f9b;
}

.pack-dot--asam {
  background: #3f7a3a;
}

.pack-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0px;
}

.pack-price {
  padding: 8px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--emerald);
  font-family: var(--label);
  font-size: 18px;
  font-weight: 800;
}

.pack-price__normal {
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-dark);
} 
.pack-price__save {
	padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--gold-dark);
    font-family: var(--label);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
	white-space: nowrap;
}
.hero-curve__fill{
	background: #00331e;
}
.packed-bundle__features {
  background: var(--emerald);
  border-radius: 0 0 4px 4px;
}

.packed-bundle__features-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
}

.packed-bundle__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold);
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.packed-bundle__feature:last-child {
  border-right: 0;
}

.packed-bundle__feature svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}

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

  .packed-bundle__features-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .packed-bundle__feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 14px;
  }

  .packed-bundle__feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.bundle-card {
  position: relative;
  min-height: 310px;
  padding: 44px 26px 16px;
  text-align: center;
}

.bundle-card__ribbon {
	position: absolute;
    top: -15px;
    left: 26px;
    right: 26px;
    font-size: 23px;
    padding: 9px 10px;
    border-radius: 4px;
    color: white;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 60%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%);
    font-family: var(--label);
    font-weight: 600;
    text-transform: uppercase;
}
.bundle-card__ribbon::before {
	position: absolute;
    content: "";
    width: 0;
    left: 0;
    height: 0;
    top: -15px;
    left: -32px;
    scale: .3;
    border-left: 50px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 46px solid #947b48;
}
.bundle-card h3 {
  font-size: 24px;
  font-family: 'Work Sans';
  font-weight: 600;
}

.bundle-card p {
  min-height: 45px;
  margin: 10px 0 10px;
  line-height: 1.25;
  font-size: medium;
}

.bundle-card__price {
  display: block;
  margin: 0 0 12px;
  color: #9b6b16;
  font-size: 20px;
  font-weight: 800;
}

.bundle-card img {
  width: 100%; 
  object-fit: contain;
  margin: 0 auto 14px;
}

.bundle-card .button { 
  width: auto;
    font-size: 18px;
    font-weight: 600;
}

.partner-section {
  padding: 32px 0 24px;
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr 400px;
  gap: 20px;
  align-items: center;
  min-height: 180px;
  padding: 24px 34px;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 14%, rgba(12, 51, 33, 0.14), transparent 18%),
    linear-gradient(110deg, #f5d16d, #f7e7ac 48%, #e3af4c);
}

.partner-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 0;
  width: 220px;
  height: 100%;
  background: url("../img/try/ornament.webp") no-repeat center / contain;
  opacity: 0.35;
  pointer-events: none;
}
.circle-icon.for-wa{
	background: linear-gradient(180deg, #25ba4f, #16943a);
	border: none;
}
.circle-icon.for-wa img{
	width: 70%;
}
.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border: 4px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
}
.circle-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circle-icon img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.circle-icon--dark {
  background: var(--emerald);
}

.partner-panel h2 {
  font-size: 34px; 
  font-family: fangsong;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-panel__copy p {
	margin: 12px 0 20px 0px;
    font-weight: 500;
    font-size: 18px;
}

.partner-panel ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 4px 100px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-panel__action .button{
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
}
.img_reseper{
	width: 40px;
    margin-right: 10px;
}
.partner-panel li {
  font-size: 16px;
  line-height: 1.35;
}

.partner-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-right: 11px; 
  border-right: 3px solid #604108;
  border-bottom: 3px solid var(--emerald);
  transform: rotate(45deg);
}

.partner-panel__action {
  position: relative;
  z-index: 1;
  justify-self: start;
}

.partner-panel__action .button {
  min-width: 246px;
}

.partner-panel__action p {
  margin: 14px 0 0 22px;
  line-height: 1.35;
  font-weight: 500;
}

.help-section {
  padding: 0 0 22px;
}

.help-panel {
  display: grid;
  grid-template-columns: 125px 1fr 590px;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding: 20px 40px;
  border-color: rgba(12, 51, 33, 0.25);
  background: linear-gradient(90deg, #fbfdf8, #eff5ed);
}

.circle-icon--whatsapp {
  width: 86px;
  height: 86px;
  background: #1eb746;
}

.circle-icon--whatsapp svg {
  width: 58px;
  height: 58px;
}

.help-panel h2 {
  font-size: 30px;
}

.help-panel p {
  margin: 4px 0;
  line-height: 1.35;
}

.help-panel__action {
  text-align: center;
}

.button--whatsapp {
  
	font-size: 25px;
    font-weight: 600; 
    min-height: 54px;
	width: 68%;
    color: #d7a93d;
	background: linear-gradient(180deg, #174d32, #286142);
}
.button--whatsapp img{
	width: 50px;
    margin-right: 10px;
}
.button--whatsapp svg {
  fill: none;
  stroke: currentColor;
}

.help-panel__action p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 18% 36%, rgba(90, 143, 99, 0.22), transparent 24%),
    linear-gradient(180deg, #00331e, #001d0f);
}

.footer-grid {
	display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1.25fr;
    gap: 48px;
    min-height: 132px;
    padding: 26px 0px 25px 0px;
    border-bottom: 1px inset rgba(255, 255, 255, 0.25);
}

.brand-logo--footer {
 width: 100%;
  margin-top: -5px;
}
.site-footer nav,
.footer-social {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 38px;
}
.text-center{
	text-align: center;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.site-footer h2 {
  margin: 0 0 15px;
  color: #fff;
  font-family: var(--label);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.social-list{
	justify-content: center;
} 
.site-footer a { 
  display: block;
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.25;
}

.social-list {
  display: flex;
  gap: 25px;
  margin: 0 0 16px;
}

.social-list a {
  display: grid;
  place-items: center; 
}

.social-list img {
	width: 45px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-social p.for-sos{
	font-size: 14px;
	letter-spacing: 1px;
}
.copyright {
  margin: 0;
  font-size: 13px;
}

.copyright {
  padding: 10px 24px 16px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  background: rgba(0, 0, 0, 0.12);
}
.for-mobile{
	display: none;
}
.nopadding{
	padding: 0px;
}
@media (max-width: 1366px) {
	.pack-price-row {
    
		flex-wrap: nowrap;
		padding: 5px;
	}
	.container{
		width: min(100% - 48px, 1400px);
	}
	.pack-breakdown{
		gap: 2rem;
	}
	.pack-grid{
		gap: 15px;
	}
 }
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .packed-bundle__features-inner { 
	align-items: center;
}
  .img-package img.for-desktop-banner{
	display: none;
}
.img-package img.for-mobile-banner{
	display: block;
}
  .hero__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 28px 0 82px;
  }

  .brand-logo--hero {
    left: 0;
    margin-left: 0;
  }

  .hero p,
  .button--gold {
    margin-left: 0;
  }

  .hero__media {
    margin-right: 0;
    justify-content: center;
    min-height: 250px;
    padding-top: 0;
  }

  .hero__media img {
    width: min(100%, 520px);
    max-height: 300px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-panel,
  .help-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 112px 1fr;
  }

  .product-card__image {
    width: 112px;
  }

  .partner-panel,
  .help-panel {
    text-align: center;
  }

  .circle-icon,
  .partner-panel__action,
  .help-panel__action {
    justify-self: center;
  }

  .partner-panel ul {
    justify-content: center;
    text-align: left;
  }

  .site-footer nav,
  .footer-social {
    border-left: 0;
    padding-left: 0;
  }
}

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

  .product-card {
    min-height: 190px;
  }

  .partner-panel,
  .help-panel {
    padding: 24px;
  }
}

@media (max-width: 560px) {
	.hero__media.for-mobile{
		display: block;
		width: 100%;
		align-self: stretch;
	}
	.site-footer a{
		font-size: 18px;
		text-align: center;
	}
	.brand-logo--hero{
		width: 80%;
		left: 0;
		text-align: center;
		margin: auto;
	}
	.hero__media	img.for-mobile{
		display: block;
		width: 100%;
	}
	.hero__media img{
		margin-bottom: 20px;
	}
	.hero p{
		margin-bottom: 50px;
	}
	.hero__media.for-desktop{
		display: none;
	}
	.hero h1{
		margin-top: 20px;
	}
	.hero__media img.for-desktop{
		display: none;
	}
	 
  .container {
    width: min(100% - 32px, 1200px);
  }
  .site-footer h2, .footer-social p.for-sos{
	text-align: center;
  }
  
  .subcard{
	top: 0px;
  }
  .product-card p{
	position: relative;
	top:5px
}
  }
  .hero h1 {
    font-size: clamp(31px, 9vw, 38px);
    text-align: center;
	width: 100%;
  }

  .hero p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .tagline {
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .tagline::before,
  .tagline::after {
    max-width: 44px;
  }

  .hero__media {
    min-height: 210px;
  }

  .hero__media::after {
    inset: -2px -20px -8px -20px;
    background:
      linear-gradient(90deg, rgba(0, 29, 15, 0.68), rgba(12, 51, 33, 0.08) 42%, rgba(0, 29, 15, 0.42)),
      linear-gradient(180deg, rgba(0, 29, 15, 0.48), transparent 34%, rgba(0, 29, 15, 0.65));
  }
 
  .button--gold,
  .button--whatsapp {
    width: 100%;
    min-width: 0;
  }

  .intro-lines,
  .section-title {
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .intro-lines {
    grid-template-columns: 1fr;
  }

  .intro-lines span {
    display: none;
  }

  .product-card {
    grid-template-columns: 130px 1fr;
    min-height: 200px;
    padding: 16px 14px 16px 10px;
  }

  .product-card__image {
    width: 130px;
	position: relative;
	top: -20px;
  }
.img-responsive{
	margin: auto;
}
.site-footer a{
	font-size: 16px;
 
}
  .product-card--soursop .product-card__image,
  .product-card--asam .product-card__image {
    width: 128px;
  }

  .product-card h3 {
    font-size: 20px;
	display: flow-root;
  }
  .product-card h3 sup{
	font-size: 12px;
	position: relative;
	top: 5px;
  }
  .product-card strong {
    margin-bottom: 16px;
  }

  .partner-panel ul {
    grid-template-columns: 1fr;
  }
  .product-card strong{
	margin-top: 10px;
  }
  .try-cart {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .try-cart__actions {
    grid-template-columns: 1fr;
  } 
  @media (max-width: 400px) {
	.hero__copy{
		zoom: .9;
	}
	.pack-grid{
		display: block;
	}
	
	.packed-bundle__features-inner { 
        align-items: center;
    }
	.container{
		display: table;
		box-sizing: border-box;
	} 
	.pack-card{
		margin-bottom: 20px;
	}
	.product-card h3 {
		font-size: 20px;
		display: flex;
		align-items: center;
		justify-content: start;
		min-height: 2.5em;
	}
	.product-card p {
        position: relative;
        top: 5%;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        color: var(--muted);
    }
  }
  @media (max-width: 360px) {
	.hero__copy{
		zoom: .7;
	}
	 
	.pack-price-row {
        flex-wrap: wrap; 
    }
	
  }