:root {
  --l-cream: #fff9ef;
  --l-beige: #f5ebdf;
  --sand: #d4c4b0;
  --warm-tan: #c4a882;
  --golden: #f1d393;
  --dark-brown: #2c1f14;
  --text-dark: #3a2d22;
  --text-mid: #7a6654;
  --text-light: #a89880;
  --accent-gold: #c9a96e;
  --white: #ffffff;
  --card-bg: #ede5d8;
  --tag-green: #6b8c6b;
  --tag-blue: #6b7e8c; }

/* ===== HERO ===== */
.block-banner {
  padding: 60px 0px 80px;
  background: var(--l-cream); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffeedd;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--golden);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px; }

.hero-badge span.dot {
  width: 6px;
  height: 6px;
  background: var(--golden);
  border-radius: 50%;
  display: inline-block; }

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-brown);
  margin-bottom: 20px;
  margin-top: 0; }

.hero p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 32px; }

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px; }

.btn-primary {
  background: var(--golden);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s; }

.hero-btns .btn-primary svg {
  width: 12px;
  height: 12px;
  fill: currentcolor; }

.btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s; }

.btn-outline:hover {
  background: var(--golden);
  color: #FFF; }

.hero-features {
  display: flex;
  gap: 24px; }

.hero-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500; }

.hero-feat svg {
  width: 14px;
  height: 14px;
  color: var(--golden); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px; }

.hero-circle {
  width: 100%;
  max-width: 450px;
  background: var(--l-beige);
  border-radius: 50%;
  padding: 15px; }
  .hero-circle img {
    width: 100%;
    border-radius: 50%; }

.product-card-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  left: var(--x-d);
  top: var(--y-d); }
  @media (max-width: 992px) {
    .product-card-float {
      left: var(--x-m);
      top: var(--y-m); } }

.product-card-inner {
  display: flex;
  gap: 10px;
  align-items: center; }
  .product-card-inner .pprice {
    display: flex;
    gap: 5px;
    align-items: center; }
  .product-card-inner .ptitle {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px; }
  .product-card-inner .price {
    font-size: 14px;
    color: #f1d393;
    font-weight: 500; }
  .product-card-inner .price-compare {
    text-decoration: line-through;
    color: #d9d9d9;
    font-size: 14px; }

.product-card-float .pimg {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; }

/* ===== BRANDS ===== */
.brands-bar {
  background: var(--l-beige);
  padding: 40px 60px;
  text-align: center; }

.brands-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: bold; }

.brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 1; }

/* ===== FEATURE CARDS ===== */
.features-section {
  padding: 60px 60px;
  background: var(--l-cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s; }

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); }

.feature-icon {
  min-width: 48px;
  background: var(--l-beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; }

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--golden); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px; }

.feature-card p {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0; }

/* ===== BESTSELLERS ===== */
.bestsellers {
  padding: 60px 60px;
  background: var(--l-cream); }

.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 8px; }

.section-badge span {
  color: var(--golden);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  gap: 7px; }

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--dark-brown);
  margin-bottom: 28px; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px; }

.tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Be Vietnam Pro', sans-serif;
  background: transparent;
  color: var(--text-mid); }

.tab.active {
  background: var(--golden);
  color: white; }

.tab:not(.active):hover {
  background: var(--l-beige); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px; }

.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--l-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; }

.product-img svg {
  width: 40px;
  height: 40px;
  color: var(--sand); }

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase; }

.tag-hot {
  background: #e05a5a;
  color: white; }

.tag-new {
  background: var(--golden);
  color: white; }

.tag-bestseller {
  background: var(--tag-blue);
  color: white; }

.product-info {
  padding: 14px 16px; }

.product-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px; }

.product-desc {
  font-size: 10px;
  color: var(--text-light);
  margin-bottom: 10px; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--golden); }

.btn-cart {
  background: var(--golden);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Be Vietnam Pro', sans-serif;
  transition: background 0.2s; }

.btn-cart:hover {
  background: var(--accent-gold); }

.center-btn-wrap {
  display: flex;
  justify-content: center; }

/* ===== FEATURED PRODUCT ===== */
.block-intro {
  padding: 60px 60px;
  background: var(--l-beige); }

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

.featured-badge {
  display: inline-block;
  margin-bottom: 12px; }

.featured-product p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px; }

.stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px; }

.star {
  color: var(--golden);
  font-size: 14px; }

.rating-count {
  font-size: 11px;
  color: var(--text-mid); }

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px; }

.price-main {
  font-size: 28px;
  font-weight: 700;
  color: var(--golden); }

.price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through; }

.featured-img {
  background: var(--card-bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .featured-img img {
    border-radius: 20px; }

.featured-img svg {
  width: 80px;
  height: 80px;
  color: var(--sand); }

/* ===== FLASH SALE ===== */
.flash-sale {
  background: var(--dark-brown);
  padding: 48px 60px;
  text-align: center; }

.flash-sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px; }

.flash-sale h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 28px;
  font-weight: 600; }

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px; }

.countdown-unit {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 60px;
  text-align: center; }

.countdown-num {
  font-size: 28px;
  font-weight: 700;
  color: white;
  font-family: 'Playfair Display', serif;
  display: block; }

.countdown-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px; }

.countdown-sep {
  font-size: 24px;
  color: white;
  font-weight: 700;
  margin-bottom: 16px; }

/* ===== VOUCHER ===== */
.voucher-section {
  padding: 60px 60px;
  background: var(--l-cream);
  text-align: center; }

.voucher-icon {
  font-size: 28px;
  margin-bottom: 8px; }

.voucher-icon img {
  width: 28px;
  height: 28px; }

.voucher-section h2,
.ingredients-section h2,
.instagram-section p,
.bestsellers h2,
.featured-product h2 {
  font-size: 30px;
  color: var(--dark-brown);
  margin-bottom: 15px;
  font-weight: bold; }

.voucher-section h2 img {
  width: 30px;
  height: 30px; }

.voucher-section > p {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 32px; }

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px; }

.voucher-card {
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  background-color: white; }

.voucher-card.v1 {
  background: #fdf6ee;
  border: 1.5px solid var(--warm-tan); }

.voucher-card.v2 {
  background: #fdf6ee;
  border: 1.5px solid var(--warm-tan); }

.voucher-card.v3 {
  background: #fff8f5;
  border: 1.5px solid #e07a60; }

.voucher-amount {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.5px; }

.v1 .voucher-amount, .v2 .voucher-amount {
  color: var(--golden); }

.v3 .voucher-amount {
  color: #e07a60; }

.voucher-card p {
  font-size: 11px;
  color: var(--text-mid);
  margin-bottom: 16px; }

.voucher-code {
  background: var(--l-beige);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  line-height: 1; }

.voucher-code:hover {
  background: var(--sand); }

/* ===== INGREDIENTS ===== */
.ingredients-section {
  padding: 60px 60px;
  background: var(--l-beige);
  text-align: center; }

.ingredients-section > p {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 48px; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 70%;
  margin: 60px auto 0; }

.cert-item {
  text-align: center;
  background: white;
  padding: 60px 15px;
  border-radius: 12px; }

.cert-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 235, 223, 0.5);
  border-radius: 50%;
  margin: 0 auto 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center; }

.cert-icon svg {
  width: 26px;
  height: 26px;
  color: var(--golden); }

.cert-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px; }

.cert-item p {
  font-size: 10px;
  color: var(--text-mid); }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 60px 60px;
  background: var(--l-cream);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start; }

.reviews-visual {
  position: relative; }

.reviews-circle {
  width: 280px;
  height: 280px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }

.reviews-circle svg {
  width: 80px;
  height: 80px;
  color: var(--sand); }

.reviews-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 10px; }

.reviews-content > p {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7; }

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 14px; }

.review-card {
  background: white;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--l-beige);
  transition: transform 0.2s; }

.review-card:hover {
  transform: translateX(4px); }

.reviewer-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px; }

.reviewer-stars {
  font-size: 11px;
  color: var(--golden);
  margin-bottom: 6px; }

.review-text {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic; }

/* ===== INSTAGRAM ===== */
.instagram-section {
  padding: 0px 0px 50px;
  background: var(--l-cream);
  text-align: center; }

.instagram-section h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 1px;
  margin-bottom: 24px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 35px; }

.insta-item {
  aspect-ratio: 1;
  background: var(--card-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s; }

.insta-item:hover {
  transform: scale(1.03);
  opacity: 0.85; }

.insta-item svg {
  width: 28px;
  height: 28px;
  color: var(--sand); }

/* ===== FOOTER ===== */
/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.hero-content {
  animation: fadeUp 0.6s ease forwards; }

.hero-visual {
  animation: fadeUp 0.6s ease 0.15s forwards;
  opacity: 0;
  animation-fill-mode: forwards; }

.brands-swiper .swiper-wrapper {
  transition-timing-function: linear !important; }

.bestsellers .row {
  margin-left: -10px;
  margin-right: -10px; }
  .bestsellers .row > div[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px; }

.bestsellers .product-item {
  border-radius: 20px;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px; }
  .bestsellers .product-item .button-add {
    display: none !important; }
  .bestsellers .product-item .product-img > a:after {
    display: none !important; }
  .bestsellers .product-item .product-detail .pro-name {
    padding: 0;
    font-size: 14px; }
  .bestsellers .product-item .product-vendor {
    display: none; }
  .bestsellers .product-item .pro-price .current-price {
    font-size: 16px; }
  .bestsellers .product-item .pro-price {
    color: #D8B578;
    letter-spacing: 0; }
  .bestsellers .product-item .btn-loop-add {
    align-items: center;
    line-height: 1.5;
    font-size: 14px;
    gap: 5px;
    background-color: #D8B578;
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 6px;
    color: #FFF;
    cursor: pointer; }
    .bestsellers .product-item .btn-loop-add svg {
      width: 13px;
      line-height: 1;
      height: 13px;
      fill: currentcolor; }
  .bestsellers .product-item .box-pro-prices {
    display: flex;
    justify-content: space-between;
    align-items: center; }

.bestsellers .nav-tabs {
  border: unset; }
  .bestsellers .nav-tabs .nav-link {
    background-color: transparent;
    border-radius: 999px;
    border-color: #f1d393;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    min-width: 105px;
    font-size: 14px;
    font-weight: 500;
    outline: none !important;
    box-shadow: none !important; }
    .bestsellers .nav-tabs .nav-link.active, .bestsellers .nav-tabs .nav-link:hover {
      background-color: #f1d393;
      border-color: #f1d393;
      color: white; }

.bestsellers .section-collection_action {
  margin-top: 30px; }
  .bestsellers .section-collection_action a {
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    border: 2px solid #f1d393;
    transition: .3s all;
    color: #f1d393;
    text-transform: none;
    letter-spacing: 0;
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px; }
    .bestsellers .section-collection_action a svg {
      fill: currentcolor;
      margin-left: 5px;
      display: inline-block; }
    .bestsellers .section-collection_action a:hover {
      color: #fff;
      background-color: #f1d393; }

.block-intro a {
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid #f1d393;
  transition: .3s all;
  text-transform: none;
  letter-spacing: 0;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #f1d393;
  color: white; }
  .block-intro a:hover {
    color: #f1d393;
    background-color: white;
    border: 1px solid #f1d393; }

@media (max-width: 992px) {
  .hero {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .hero p {
    margin-bottom: 15px; }
  .hero h1 {
    font-size: 40px; }
  .hero-features {
    flex-direction: column;
    gap: 15px; }
  .brands-bar {
    padding: 40px 0px; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px; }
  .features-section, .bestsellers, .block-intro, .voucher-section, .ingredients-section {
    padding: 40px 0px; }
  .block-intro .featured-product {
    grid-template-columns: 1fr;
    gap: 15px; }
  .block-banner {
    padding: 40px 0px; }
  .voucher-grid {
    grid-template-columns: repeat(1, 1fr); }
  .cert-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 30px auto 0; }
  .instagram-section {
    padding: 0px 0px 40px; }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px; }
  .block-ingredients br {
    display: none; }
  .voucher-section h2, .ingredients-section h2, .instagram-section p, .bestsellers h2, .featured-product h2 {
    font-size: 26px; } }
