* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif, Arial;
}

body {
  background: #ffffff;
  color: #333;
}

:root {
  --primary-color: #03B0B1;
  --text-color: #5d6b75;
  --border-color: #e8eef2;
  --icon-color: #8fa1ad;
  --white: #ffffff;
}

.header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

/* Top bar */
.top-bar {
  height: 28px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.top-bar-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  opacity: 0.95;
}

.top-bar-item i {
  font-size: 14px;
}

/* Main header */
.main-header {
  height: 64px;
  background: var(--white);
}

.main-header-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  display: block;
}

.logo-text {
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: #333;
  letter-spacing: -1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav a.has-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a.has-dropdown i {
  font-size: 10px;
  margin-top: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.search-box {
  width: 290px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--white);
}

.search-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  background: transparent;
}

.search-box input::placeholder {
  color: #a4b0b8;
}

.search-box button {
  border: none;
  background: transparent;
  color: var(--icon-color);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-box button:hover {
  color: var(--primary-color);
}

.icon-list {
  display: flex;
  align-items: center;
  gap: 19px;
}

.icon-btn {
  position: relative;
  color: var(--icon-color);
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}

.icon-btn:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.mobile-menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav {
    gap: 22px;
  }

  .search-box {
    width: 230px;
  }
}

@media (max-width: 960px) {
  .top-bar {
    height: auto;
    padding: 8px 0;
  }

  .top-bar-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    text-align: center;
  }

  .main-header {
    height: auto;
    padding: 14px 0;
  }

  .main-header-container {
    flex-wrap: wrap;
    gap: 16px;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav {
    width: 100%;
    order: 4;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--border-color);
  }

  .header.active .nav {
    display: flex;
  }

  .header-actions {
    width: 100%;
    order: 3;
    justify-content: space-between;
  }

  .search-box {
    width: calc(100% - 150px);
  }
}

@media (max-width: 600px) {

  .top-bar-container,
  .main-header-container {
    padding: 0 16px;
  }

  .top-bar-item {
    font-size: 12px;
  }

  .logo-text {
    font-size: 28px;
  }

  .header-actions {
    gap: 14px;
  }

  .search-box {
    width: 100%;
    order: 1;
  }

  .icon-list {
    width: 100%;
    order: 2;
    justify-content: flex-end;
  }
}

/* =========================
   HERO BANNER SECTION
========================= */

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #eefbfc 0%, #dff2f0 100%);
}

.hero-banner__inner {
  position: relative;
  width: 100%;
}

.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 520px;
}

.hero-banner__subtitle {
  margin-bottom: 15px;
  color: #009b9c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-banner__title {
  color: #03B0B1;
  font-size: 39px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.hero-banner__title span {
  display: block;
  margin-bottom: 6px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-banner__features {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-banner__feature {
  min-height: 30px;
  padding: 6px 14px;
  border: 1px solid rgba(3, 176, 177, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #638991;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 14px rgba(3, 176, 177, 0.08);
  backdrop-filter: blur(6px);
}

.hero-banner__feature i {
  color: #03B0B1;
  font-size: 10px;
}

.hero-banner__actions {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  height: 40px;
  padding: 0 25px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-btn--primary {
  min-width: 170px;
  color: #ffffff;
  background: #03B0B1;
  box-shadow: 0 8px 18px rgba(3, 176, 177, 0.28);
  gap: 12px;
}

.hero-btn--primary span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.hero-btn--primary:hover {
  background: #009b9c;
  transform: translateY(-2px);
}

.hero-btn--outline {
  min-width: 188px;
  color: #03B0B1;
  border: 1px solid rgba(3, 176, 177, 0.42);
  background: rgba(255, 255, 255, 0.6);
}

.hero-btn--outline:hover {
  background: #ffffff;
  border-color: #03B0B1;
  transform: translateY(-2px);
}

.hero-banner__dots {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-banner__dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: #cfdedf;
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-banner__dots button.active {
  width: 13px;
  height: 13px;
  background: #03B0B1;
}

.hero-banner__image-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: #7f9aa3;
  background: #ffffff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(50, 100, 110, 0.14);
  transition: all 0.25s ease;
}

.hero-arrow:hover {
  color: #03B0B1;
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .hero-banner__content {
    left: 60px;
    max-width: 480px;
  }

  .hero-banner__title {
    font-size: 34px;
  }

  .hero-banner__title span {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .hero-banner__content {
    left: 40px;
    max-width: 430px;
  }

  .hero-banner__subtitle {
    font-size: 14px;
  }

  .hero-banner__title {
    font-size: 28px;
  }

  .hero-banner__title span {
    font-size: 40px;
  }

  .hero-banner__feature {
    font-size: 10px;
    padding: 6px 12px;
  }

  .hero-btn {
    font-size: 12px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-banner__content {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
  }

  .hero-banner__subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hero-banner__title {
    font-size: 23px;
    line-height: 1.3;
  }

  .hero-banner__title span {
    font-size: 34px;
  }

  .hero-banner__features {
    margin-top: 16px;
    gap: 8px;
  }

  .hero-banner__feature {
    font-size: 9px;
    padding: 6px 10px;
    gap: 5px;
  }

  .hero-banner__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-btn {
    height: 38px;
    font-size: 11px;
  }

  .hero-btn--primary,
  .hero-btn--outline {
    min-width: auto;
  }

  .hero-banner__dots {
    margin-top: 18px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-banner__content {
    position: static;
    transform: none;
    padding: 24px 16px 20px;
    background: #f5fdff;
  }

  .hero-banner__title {
    font-size: 20px;
  }

  .hero-banner__title span {
    font-size: 30px;
  }

  .hero-banner__features {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner__feature {
    width: 100%;
    font-size: 10px;
  }

  .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-banner__dots {
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }
}

/* =========================
   BEST SELLER SECTION
========================= */

.best-seller-section {
  width: 100%;
  padding: 100px 32px 100px;
  background: linear-gradient(180deg, #f0fdf4 0%, #f0fdfa 100%);
  margin-top: -60px;
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.best-seller-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23009688' fill-opacity='0.03' d='M50,10 C60,25 90,30 90,60 C90,85 70,95 50,95 C30,95 10,85 10,60 C10,30 40,25 50,10 Z' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transform: rotate(15deg);
}

.section-heading-row h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color);
}

.best-seller-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Featured product left */
.featured-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 50%, #f1f8e9 100%);
  box-shadow: 0 10px 30px rgba(0, 150, 136, 0.12);
  border: 1.5px solid rgba(0, 150, 136, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 150, 136, 0.2);
  border-color: var(--primary-color);
}

.featured-product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.featured-product-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  transition: all 0.6s ease;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 16px;
  border-radius: 4px;
  background: #ee2d24;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(238, 45, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.featured-badge::before {
  content: none;
}

.featured-product-image::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.featured-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.featured-product-card:hover .featured-product-image img {
  transform: scale(1.15) rotate(-5deg) translateY(-10px);
  filter: drop-shadow(0 30px 60px rgba(153, 27, 27, 0.25));
}


.featured-product-info {
  padding: 18px 20px 22px;
}

.featured-product-info h3,
.product-info h3 {
  color: #315f66;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.featured-product-info .product-meta {
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.featured-product-card:hover .featured-product-info {
  background: rgba(255, 255, 255, 0.9);
}

/* Right content */
.best-seller-content {
  min-width: 0;
}

.section-heading-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 150, 136, 0.2);
  margin-bottom: 30px;
  gap: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-heading-row::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
  border-radius: 99px;
}

.heading-title-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #00796b 100%);
  padding: 10px 32px;
  border-radius: 20px 4px 20px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 121, 107, 0.2);
}

.heading-title-box::before {
  content: "\f4d8";
  /* Leaf icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.heading-title-box h2 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.heading-filters {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-pill {
  background: rgba(224, 242, 241, 0.6);
  backdrop-filter: blur(4px);
  color: #00796b;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 121, 107, 0.1);
  font-family: inherit;
  outline: none;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.25);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.view-all-pill {
  margin-left: auto;
  background: transparent;
  color: var(--primary-color);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all-pill::after {
  content: "\f178";
  /* Arrow right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.view-all-pill:hover::after {
  transform: translateX(4px);
}

.view-all-pill:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
  transform: scale(1.05);
}

/* Product cards */
.product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #edf2f4;
  box-shadow: 0 7px 20px rgba(43, 91, 101, 0.08);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(43, 91, 101, 0.13);
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 48px;
  height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: #ff4545;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(255, 69, 69, 0.22);
}

.product-image {
  width: 100%;
  height: 250px;
  padding: 28px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.product-info h3 {
  min-height: 44px;
  font-size: 15px;
}

/* Meta */
.product-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8a9ca3;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rating i {
  color: #ffae12;
}

.sold i {
  color: #9aabb2;
}

/* Stock Status */
.product-stock {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

.product-stock i {
  font-size: 10px;
}

.product-stock.in-stock {
  color: #15b37e;
}

.product-stock.out-of-stock {
  color: #ee4d2d;
}

.product-card.is-out-of-stock .product-image img {
  filter: grayscale(100%) opacity(0.6);
}

.product-card.is-out-of-stock .add-to-cart {
  background: #cbd5e0;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Price */
.product-price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.new-price {
  color: #ee4d2d;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.old-price {
  color: #b7c2c7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}

/* Button */
.add-to-cart {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  box-shadow: 0 6px 15px rgba(198, 40, 40, 0.2);
  transition: all 0.3s ease;
}

.add-to-cart span {
  height: 100%;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.add-to-cart i {
  font-size: 17px;
}

.add-to-cart:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.3);
}

.featured-cart-btn {
  margin-top: 20px;
}

.featured-cart-btn i {
  font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .best-seller-container {
    grid-template-columns: 330px 1fr;
    gap: 22px;
    padding: 0 24px;
  }

  .product-grid {
    gap: 14px;
  }

  .product-image {
    height: 220px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .product-meta {
    gap: 9px;
    font-size: 11px;
  }

  .new-price {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .best-seller-container {
    grid-template-columns: 1fr;
  }

  .featured-product-card {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
  }

  .featured-product-image {
    height: 280px;
  }

  .featured-product-info {
    padding: 30px 26px;
  }

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

  .section-heading-row h2 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .best-seller-section {
    padding: 36px 0;
  }

  .best-seller-container {
    padding: 0 18px;
  }

  .section-heading-row {
    height: auto;
    align-items: center;
  }

  .section-heading-row h2 {
    font-size: 21px;
  }

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

  .featured-product-image {
    height: 260px;
  }

  .featured-product-info {
    padding: 18px 20px 22px;
  }
}

@media (max-width: 576px) {
  .best-seller-container {
    padding: 0 14px;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-heading-row h2 {
    font-size: 20px;
  }

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

  .product-image {
    height: 250px;
  }

  .product-info {
    padding: 0 18px 18px;
  }

  .featured-badge {
    font-size: 15px;
    padding: 9px 15px;
  }

  .product-meta {
    flex-wrap: wrap;
  }
}

/* =========================
   STORY SECTION
========================= */

.story-section {
  width: 100%;
  padding: 28px 32px;
  background: linear-gradient(180deg, #d6f2f0 0%, #f2fdfc 100%);
}

.story-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.story-bg-image {
  display: block;
  width: 100%;
  height: auto;
}

.story-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(235, 252, 253, 0.58) 58%,
      rgba(235, 252, 253, 0.32) 100%);
  pointer-events: none;
}

.story-content {
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38%;
  max-width: 560px;
  padding: 0;
}

.story-label {
  margin-bottom: 10px;
  color: #79d6da;
  font-family: "Allura", cursive;
  font-size: 68px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.story-title {
  margin: 0 0 14px;
  color: #03B0B1;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.story-desc {
  max-width: 560px;
  color: #517179;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.story-benefits {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 34px;
  align-items: start;
}

.story-benefit {
  text-align: center;
}

.story-benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 9px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.12);
  color: #03B0B1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.story-benefit p {
  color: #5d7d84;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.story-btn {
  width: fit-content;
  height: 38px;
  margin-top: 24px;
  padding: 0 18px 0 22px;
  border-radius: 7px;
  background: #03B0B1;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(3, 176, 177, 0.24);
  transition: all 0.25s ease;
}

.story-btn span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.story-btn:hover {
  background: #009b9c;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE STORY
========================= */

@media (max-width: 1100px) {
  .story-content {
    right: 42px;
    width: 52%;
  }

  .story-label {
    font-size: 30px;
  }

  .story-title {
    font-size: 21px;
  }

  .story-desc {
    font-size: 12px;
  }

  .story-benefits {
    gap: 22px;
  }

  .story-benefit-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .story-section {
    padding: 24px 20px;
  }

  .story-container::before {
    background: rgba(235, 252, 253, 0.72);
  }

  .story-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 28px 24px;
    background: #eefcfc;
  }

  .story-bg-image {
    width: 100%;
    height: auto;
  }

  .story-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .story-section {
    padding: 20px 14px;
  }

  .story-container {
    border-radius: 12px;
  }

  .story-content {
    padding: 26px 18px;
  }

  .story-label {
    font-size: 28px;
  }

  .story-title {
    font-size: 20px;
  }

  .story-desc {
    font-size: 12px;
  }

  .story-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
  }

  .story-benefit-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .story-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   BRAND VALUES SECTION
========================= */

.brand-values-section {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f0fbfb 100%);
  padding: 0;
  margin: 0;
}

.brand-values-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 32px;
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;

  background: linear-gradient(180deg, #ffffff 0%, #f4ffff 100%);
  border-top: 1px solid rgba(3, 176, 177, 0.12);
  border-bottom: 1px solid rgba(3, 176, 177, 0.12);
  box-shadow:
    0 -4px 14px rgba(3, 176, 177, 0.04),
    0 10px 26px rgba(28, 118, 122, 0.08);
}

.brand-value-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 34px;
  min-height: 106px;
}

.brand-value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 1px;
  height: calc(100% - 48px);
  background: rgba(3, 176, 177, 0.14);
}

.brand-value-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ecffff, #ffffff);
  border: 1px solid rgba(3, 176, 177, 0.14);
  box-shadow: 0 8px 18px rgba(3, 176, 177, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03B0B1;
  font-size: 30px;
  line-height: 1;
}

.brand-value-text h3 {
  margin: 0 0 6px;
  color: #5fc8cb;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.brand-value-text p {
  margin: 0;
  color: #4f5b64;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .brand-values-container {
    padding: 0 20px;
  }

  .brand-value-item {
    gap: 14px;
    padding: 20px 22px;
  }

  .brand-value-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .brand-value-text h3 {
    font-size: 14px;
  }

  .brand-value-text p {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .brand-values-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-value-item:nth-child(2)::after {
    display: none;
  }

  .brand-value-item:nth-child(1),
  .brand-value-item:nth-child(2) {
    border-bottom: 1px solid #eef2f3;
  }
}

@media (max-width: 576px) {
  .brand-values-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .brand-value-item {
    min-height: auto;
    padding: 18px 0;
  }

  .brand-value-item::after {
    display: none;
  }

  .brand-value-item:not(:last-child) {
    border-bottom: 1px solid #eef2f3;
  }

  .brand-value-icon {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .brand-value-text h3 {
    font-size: 14px;
  }

  .brand-value-text p {
    font-size: 13px;
  }
}

/* =========================
   STATS / COMMITMENT SECTION
========================= */

.stats-section {
  width: 100%;
  padding: 22px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f9f7 100%);
}

.stats-container {
  width: 100%;
  margin: 0 auto;
  padding: 14px 44px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f1ffff 0%, #eafafa 100%);
  border: 1px solid rgba(3, 176, 177, 0.1);
  box-shadow:
    0 10px 26px rgba(3, 176, 177, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.stats-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
}

.stats-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #58c9cc;
  font-size: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-text h3 {
  margin: 0 0 3px;
  color: #5d6d75;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.stats-text h3 span {
  color: #03B0B1;
  font-size: 18px;
  font-weight: 800;
}

.stats-text p {
  margin: 0;
  color: #69858c;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .stats-section {
    padding: 20px 20px;
  }

  .stats-container {
    padding: 18px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }

  .stats-item {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 16px 14px;
  }

  .stats-container {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 14px;
  }

  .stats-item {
    justify-content: flex-start;
    gap: 12px;
  }

  .stats-icon {
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .stats-text h3 {
    font-size: 13px;
  }

  .stats-text h3 span {
    font-size: 17px;
  }

  .stats-text p {
    font-size: 12px;
  }
}

/* =========================
   PRODUCT CATALOG SECTION
========================= */

.product-catalog-section {
  width: 100%;
  padding: 100px 32px 140px;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
  margin-top: -60px;
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.product-catalog-section::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -50px;
  width: 500px;
  height: 500px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23009688' fill-opacity='0.03' d='M30,10 Q50,0 70,10 T70,50 T30,50 T30,10' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  transform: rotate(-20deg);
}

.product-catalog-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.product-catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 20px;
}

.product-catalog-title {
  margin: 0;
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

/* Filter bar */
.product-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.skin-type-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.skin-type {
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 700;
  border: 1.5px solid #edf2f4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skin-type i {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.skin-type.active {
  background: #03B0B1;
  color: #ffffff;
  border-color: #03B0B1;
  box-shadow: 0 6px 15px rgba(3, 176, 177, 0.28);
}

.skin-type.active i {
  color: #ffffff;
}

.skin-type:hover:not(.active) {
  border-color: #03B0B1;
  color: #03B0B1;
  background: #f0fdfd;
  transform: translateY(-2px);
}

.skin-type:hover:not(.active) i {
  color: #03B0B1;
}

/* Product grid */
.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* Product card */
/* Catalog Card styles removed as they now use .product-card */

/* Catalog Card styles removed as they now use .product-card */
.catalog-view-more-wrap {
  margin-top: 24px;
  text-align: center;
}

.catalog-view-more {
  width: 300px;
  height: 40px;
  border-radius: 7px;
  background: #03B0B1;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(3, 176, 177, 0.24);
  transition: all 0.25s ease;
}

.catalog-view-more:hover {
  background: #009b9c;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .product-catalog-container {
    max-width: 100%;
  }

  .catalog-card-image {
    height: 165px;
  }

  .catalog-card-body {
    padding: 0 10px 13px;
  }

  .catalog-card-body h3 {
    font-size: 12px;
  }

  .catalog-card-price {
    font-size: 15px;
  }

  .catalog-card-rating {
    gap: 5px;
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .product-catalog-section {
    padding: 34px 22px 30px;
  }

  .product-filter-bar {
    align-items: flex-start;
  }

  .skin-type-list {
    gap: 12px 18px;
  }

  .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-card-image {
    height: 210px;
  }

  .catalog-card-body {
    padding: 0 14px 15px;
  }

  .catalog-card-body h3 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .product-catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-catalog-title {
    font-size: 21px;
  }

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

  .catalog-card-image {
    height: 190px;
  }
}

@media (max-width: 520px) {
  .product-catalog-section {
    padding: 32px 14px 38px;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-card {
    min-height: auto;
  }

  .catalog-card-image {
    height: 230px;
  }

  .catalog-view-more {
    width: 100%;
  }
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  width: 100%;
  background: linear-gradient(180deg, #f2fdfc 0%, #ffffff 100%);
  overflow: hidden;
}

.process-bg-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.process-bg-image {
  display: block;
  width: 100%;
  height: auto;
}

.process-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 14px 70px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-title {
  margin: 0;
  color: #03B0B1;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.process-steps {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: start;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 70px;
  right: 70px;
  height: 2px;
  background: rgba(3, 176, 177, 0.25);
  z-index: 1;
}

.process-line::before,
.process-line::after {
  content: "";
  position: absolute;
  top: -31px;
  width: 170px;
  height: 60px;
  border-top: 1px solid rgba(3, 176, 177, 0.12);
  border-radius: 50%;
}

.process-line::before {
  left: 130px;
}

.process-line::after {
  right: 130px;
}

.process-step {
  position: relative;
  z-index: 3;
  text-align: center;
}

.process-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(3, 176, 177, 0.22);
  color: #03B0B1;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 20px rgba(3, 176, 177, 0.12),
    inset 0 0 0 6px rgba(3, 176, 177, 0.06);
}

.process-text h3 {
  margin: 0 0 5px;
  color: #46656b;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.process-text p {
  margin: 0;
  color: #5c747a;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.process-arrow {
  position: relative;
  z-index: 4;
  height: 58px;
  color: #03B0B1;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-arrow i {
  margin-top: -2px;
}

/* =========================
   RESPONSIVE PROCESS
========================= */

@media (max-width: 1200px) {
  .process-content {
    padding: 12px 42px 14px;
  }

  .process-title {
    font-size: 15px;
  }

  .process-steps {
    max-width: 1000px;
    margin-top: 14px;
  }

  .process-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    font-size: 21px;
  }

  .process-text h3 {
    font-size: 11px;
  }

  .process-text p {
    font-size: 10px;
  }

  .process-line {
    top: 25px;
  }
}

@media (max-width: 992px) {
  .process-bg-image {
    min-height: 360px;
    object-fit: cover;
  }

  .process-content {
    position: relative;
    padding: 32px 24px;
    background: #f2ffff;
  }

  .process-title {
    font-size: 20px;
  }

  .process-steps {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-line,
  .process-arrow {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(3, 176, 177, 0.12);
    box-shadow: 0 8px 18px rgba(3, 176, 177, 0.06);
  }

  .process-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .process-text h3 {
    font-size: 14px;
  }

  .process-text p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .process-title {
    font-size: 18px;
  }

  .process-content {
    padding: 28px 14px;
  }

  .process-step {
    padding: 14px;
  }

  .process-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}

/* =========================
   CERTIFICATE SECTION
========================= */

.certificate-section {
  width: 100%;
  padding: 120px 56px 100px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
  position: relative;
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 6;
  overflow: hidden;
}

.certificate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 65%, rgba(255, 255, 255, 0.95) 0 85px, transparent 86px),
    radial-gradient(circle at 88% 65%, rgba(255, 255, 255, 0.95) 0 85px, transparent 86px),
    radial-gradient(circle at 50% 92%, rgba(3, 176, 177, 0.08) 0 180px, transparent 181px);
  pointer-events: none;
}

.certificate-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.certificate-heading {
  text-align: center;
  padding-top: 8px;
  margin-bottom: 12px;
}

.certificate-heading h2 {
  margin: 0 0 6px;
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.certificate-heading p {
  margin: 0;
  color: #62858b;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.certificate-layout {
  display: grid;
  grid-template-columns: 270px minmax(320px, 1fr) 270px;
  gap: 58px;
  align-items: center;
}

.certificate-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.certificate-info-card {
  min-height: 90px;
  padding: 20px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(3, 176, 177, 0.1);
  box-shadow: 0 8px 22px rgba(40, 103, 111, 0.09);
  display: flex;
  align-items: center;
  gap: 16px;
}

.certificate-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #03B0B1;
  font-size: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-info-text h3 {
  margin: 0 0 5px;
  color: #03B0B1;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.certificate-info-text p {
  margin: 0;
  color: #536d74;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.certificate-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-frame {
  width: 100%;
  max-width: 405px;
  padding: 10px;
  background: linear-gradient(145deg, #9be1e2 0%, #ffffff 42%, #28b6b7 100%);
  border: 2px solid rgba(3, 176, 177, 0.32);
  box-shadow:
    0 14px 30px rgba(3, 176, 177, 0.18),
    inset 0 0 0 4px rgba(255, 255, 255, 0.55);
}

.certificate-image {
  display: block;
  width: 100%;
  height: auto;
  border: 5px solid #ffffff;
  object-fit: contain;
}

.certificate-dots {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.certificate-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #c7d9dc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.certificate-dots button.active {
  width: 10px;
  height: 10px;
  background: #03B0B1;
}

.certificate-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #899fa7;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(35, 91, 101, 0.13);
  transition: all 0.25s ease;
}

.certificate-arrow:hover {
  color: #03B0B1;
  transform: translateY(-50%) scale(1.06);
}

.certificate-arrow-left {
  left: 58px;
}

.certificate-arrow-right {
  right: 58px;
}

/* =========================
   RESPONSIVE CERTIFICATE
========================= */

@media (max-width: 1100px) {
  .certificate-section {
    padding: 0 38px 20px;
  }

  .certificate-layout {
    grid-template-columns: 235px minmax(300px, 1fr) 235px;
    gap: 28px;
  }

  .certificate-info-card {
    padding: 18px;
  }

  .certificate-heading h2 {
    font-size: 22px;
  }

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

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

@media (max-width: 900px) {
  .certificate-section {
    padding: 28px 20px;
  }

  .certificate-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .certificate-main {
    order: 1;
  }

  .certificate-side-left {
    order: 2;
  }

  .certificate-side-right {
    order: 3;
  }

  .certificate-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certificate-frame {
    max-width: 520px;
  }

  .certificate-arrow {
    display: none;
  }
}

@media (max-width: 576px) {
  .certificate-heading h2 {
    font-size: 20px;
  }

  .certificate-heading p {
    font-size: 12px;
  }

  .certificate-side {
    grid-template-columns: 1fr;
  }

  .certificate-info-card {
    min-height: auto;
    padding: 16px;
  }

  .certificate-info-icon {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .certificate-frame {
    padding: 7px;
  }
}

/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
  width: 100%;
  padding: 120px 32px 100px;
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
  position: relative;
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 7;
}

.partners-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.partners-title {
  margin: 0 0 22px;
  color: var(--text-color);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.partners-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-card {
  height: 86px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e8eef0;
  box-shadow: 0 6px 18px rgba(36, 92, 101, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 176, 177, 0.3);
  box-shadow: 0 12px 26px rgba(36, 92, 101, 0.13);
}

.partner-card img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 54px;
  object-fit: contain;
}

/* xử lý riêng vài logo nền vuông/dọc để nhìn đều hơn */
.partner-card:nth-child(1) img,
.partner-card:nth-child(4) img,
.partner-card:nth-child(6) img {
  max-width: 120px;
}

.partner-card:nth-child(2) img {
  max-width: 165px;
}

.partner-card:nth-child(3) img {
  max-width: 150px;
}

.partner-card:nth-child(5) img {
  max-width: 165px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .partners-list {
    gap: 16px;
  }

  .partner-card {
    height: 80px;
    padding: 12px 16px;
  }

  .partner-card img {
    max-width: 140px;
  }
}

@media (max-width: 900px) {
  .partners-section {
    padding: 32px 22px 38px;
  }

  .partners-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 28px 14px 34px;
  }

  .partners-title {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .partners-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-card {
    height: 76px;
    padding: 12px;
  }

  .partner-card img {
    max-width: 120px;
    height: 48px;
  }
}

/* =========================
   KOL REVIEW SECTION
========================= */

.kol-section {
  --kol-main-color: #03B0B1;
  position: relative;
  width: 100%;
  padding: 120px 42px 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 8;
  overflow: hidden;
}

.kol-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.kol-heading {
  text-align: center;
  margin-bottom: 20px;
}

.kol-heading h2 {
  margin: 0 0 6px;
  color: var(--text-color);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.kol-heading p {
  margin: 0;
  color: #58736c;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.kol-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
}

/* =========================
   SUMMARY CARD
========================= */

.kol-summary-card {
  min-height: 100%;
  padding: 32px 26px 28px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(3, 176, 177, 0.22);
  box-shadow: 0 8px 22px rgba(3, 176, 177, 0.08);
}

.kol-score-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.kol-main-score {
  display: flex;
  align-items: baseline;
  color: var(--kol-main-color);
}

.kol-main-score span {
  font-size: 58px;
  line-height: 1;
  font-weight: 500;
}

.kol-main-score small {
  margin-left: 4px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.kol-summary-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffae12;
  font-size: 17px;
}

.kol-total-review {
  margin: 12px 0 22px;
  color: #6c7f80;
  font-size: 13px;
  font-weight: 700;
}

.kol-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kol-rating-line {
  display: grid;
  grid-template-columns: 45px 1fr 42px;
  align-items: center;
  gap: 9px;
}

.kol-rating-line span,
.kol-rating-line strong {
  color: #607474;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.kol-rating-line strong {
  text-align: right;
}

.rating-track {
  height: 6px;
  border-radius: 999px;
  background: #e5ecec;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--kol-main-color);
}

.kol-summary-btn {
  width: 180px;
  height: 40px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--kol-main-color);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(3, 176, 177, 0.24);
  transition: all 0.25s ease;
}

.kol-summary-btn:hover {
  background: #02999a;
  transform: translateY(-2px);
}

/* =========================
   KOL IMAGE CARDS
========================= */

.kol-review-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.kol-review-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 18px;
  background: #eaf1f2;
  box-shadow: 0 10px 24px rgba(3, 176, 177, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kol-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(3, 176, 177, 0.18);
}

.kol-review-card>img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kol-review-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0) 100%);
}

.kol-review-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

/* =========================
   ARROWS
========================= */

.kol-nav {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #8da0a3;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(3, 176, 177, 0.13);
  transition: all 0.25s ease;
}

.kol-nav:hover {
  color: var(--kol-main-color);
  transform: translateY(-50%) scale(1.06);
}

.kol-nav-left {
  left: 24px;
}

.kol-nav-right {
  right: 24px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .kol-review-card {
    min-height: 300px;
  }
}

@media (max-width: 1200px) {
  .kol-section {
    padding: 32px 54px 42px;
  }

  .kol-layout {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }

  .kol-review-list {
    gap: 14px;
  }

  .kol-review-card {
    min-height: 270px;
  }

  .kol-main-score span {
    font-size: 52px;
  }

  .kol-summary-stars {
    font-size: 15px;
  }

  .kol-review-overlay h3 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .kol-section {
    padding: 30px 22px 38px;
  }

  .kol-layout {
    grid-template-columns: 1fr;
  }

  .kol-summary-card {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .kol-review-card {
    min-height: 360px;
  }

  .kol-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .kol-section {
    padding: 28px 14px 34px;
  }

  .kol-heading h2 {
    font-size: 21px;
    margin-bottom: 6px;
  }

  .kol-review-list {
    grid-template-columns: 1fr;
  }

  .kol-review-card {
    min-height: 420px;
  }

  .kol-summary-card {
    padding: 28px 20px 24px;
  }

  .kol-score-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .kol-total-review {
    text-align: center;
  }

  .kol-summary-btn {
    width: 100%;
  }
}

/* =========================
   BLOG SECTION
========================= */

.blog-section {
  width: 100%;
  padding: 120px 48px 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 9;
}

.blog-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.blog-title {
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

/* =========================
   FEATURED BLOG CARD
========================= */

.blog-featured-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 12px;
  background: #eefafa;
  box-shadow: 0 8px 22px rgba(36, 92, 101, 0.08);
}

.blog-featured-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  padding: 34px 28px 28px;
  background: linear-gradient(90deg,
      rgba(235, 252, 253, 0.94) 0%,
      rgba(235, 252, 253, 0.82) 38%,
      rgba(235, 252, 253, 0.28) 78%,
      rgba(235, 252, 253, 0.04) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-tag,
.blog-small-tag {
  width: fit-content;
  min-height: 24px;
  padding: 5px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
  color: #03B0B1;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-featured-overlay h3 {
  margin: 24px 0 18px;
  color: #24535b;
  font-size: 27px;
  line-height: 1.28;
  font-weight: 800;
}

.blog-featured-overlay p {
  max-width: 390px;
  margin: 0;
  color: #58777e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.blog-read-link {
  margin-top: 26px;
  color: #03B0B1;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}

.blog-read-link:hover {
  color: #009b9c;
  transform: translateX(3px);
}

.blog-date {
  margin-top: auto;
  color: #7b9298;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   SMALL BLOG LIST
========================= */

.blog-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.blog-small-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #edf2f4;
  box-shadow: 0 7px 18px rgba(38, 92, 101, 0.07);
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 102px;
  transition: all 0.25s ease;
}

.blog-small-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(38, 92, 101, 0.12);
}

.blog-small-image {
  width: 100%;
  height: 100%;
  background: #eefafa;
  overflow: hidden;
}

.blog-small-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
}

.blog-small-card:nth-child(1) .blog-small-image img {
  object-fit: cover;
}

.blog-small-card:nth-child(2) .blog-small-image img,
.blog-small-card:nth-child(3) .blog-small-image img {
  object-fit: contain;
  padding: 6px;
  background: #eefafa;
}

.blog-small-content {
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-small-content h3 {
  margin: 9px 0 8px;
  color: #345f66;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.blog-small-content p {
  margin: auto 0 0 auto;
  color: #8a9ca2;
  font-size: 12px;
  font-weight: 700;
}

/* =========================
   NEWSLETTER
========================= */

.blog-newsletter {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 40px 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 13%, rgba(255, 255, 255, 0.22) 0 28px, transparent 29px),
    linear-gradient(135deg, #03B0B1 0%, #079da0 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(3, 176, 177, 0.18);
}

.newsletter-flower {
  position: absolute;
  right: -42px;
  top: 42px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  opacity: 0.13;
  border: 2px solid #ffffff;
}

.newsletter-flower::before,
.newsletter-flower::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.newsletter-flower::after {
  inset: 56px;
}

.blog-newsletter h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-newsletter p {
  position: relative;
  z-index: 2;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
}

.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #ffffff;
  color: #51666d;
  font-size: 14px;
  font-weight: 600;
}

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

.newsletter-form button {
  width: 190px;
  height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.newsletter-form button:hover {
  background: #ffffff;
  color: #03B0B1;
}

.newsletter-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* =========================
   RESPONSIVE BLOG
========================= */

@media (max-width: 1100px) {
  .blog-section {
    padding: 34px 32px 42px;
  }

  .blog-layout {
    grid-template-columns: 1.2fr 0.9fr;
  }

  .blog-newsletter {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .blog-newsletter p {
    font-size: 23px;
  }
}

@media (max-width: 820px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured-card,
  .blog-featured-image,
  .blog-newsletter {
    min-height: 300px;
  }

  .blog-list {
    grid-template-rows: none;
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 30px 14px 36px;
  }

  .blog-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .blog-featured-overlay {
    padding: 24px 20px;
    background: linear-gradient(90deg,
        rgba(235, 252, 253, 0.96) 0%,
        rgba(235, 252, 253, 0.78) 70%,
        rgba(235, 252, 253, 0.32) 100%);
  }

  .blog-featured-overlay h3 {
    margin-top: 18px;
    font-size: 22px;
  }

  .blog-featured-overlay p {
    font-size: 13px;
  }

  .blog-small-card {
    grid-template-columns: 96px 1fr;
  }

  .blog-small-content h3 {
    font-size: 13px;
  }

  .blog-newsletter {
    padding: 30px 22px;
  }

  .blog-newsletter p {
    font-size: 21px;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  width: 100%;
  overflow: hidden;
  background: #007f83;
  color: #ffffff;
}

/* Top club signup */
.footer-club {
  width: 100%;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.12) 0 80px, transparent 82px),
    radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.08) 0 110px, transparent 112px),
    linear-gradient(135deg, #03B0B1 0%, #018c91 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-club-content {
  width: 100%;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: 1fr 620px;
  align-items: center;
  gap: 36px;
}

.footer-club-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-club-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-club-left h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-club-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.footer-club-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 16px;
}

.footer-club-form input {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: #ffffff;
  color: #4d646b;
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.08);
}

.footer-club-form input::placeholder {
  color: #a3b1b6;
}

.footer-club-form button {
  height: 46px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.footer-club-form button:hover {
  background: #ffffff;
  color: #03B0B1;
}

/* Main footer */
.footer-main {
  width: 100%;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.05) 0 140px, transparent 142px),
    radial-gradient(circle at 72% 60%, rgba(255, 255, 255, 0.04) 0 130px, transparent 132px),
    linear-gradient(135deg, #007f83 0%, #006e72 100%);
}

.footer-main-inner {
  width: 100%;
  padding: 28px 32px 30px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr 1fr 1.2fr;
  gap: 34px;
}

.footer-logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 39px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.footer-brand p {
  margin: 18px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.footer-cert {
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 22px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-cert:hover {
  opacity: 1;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #03B0B1;
  transform: translateY(-2px);
}

.footer-column h4,
.footer-contact h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li:not(:last-child) {
  margin-bottom: 11px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.footer-contact li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-contact i {
  flex-shrink: 0;
  width: 18px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-contact strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

/* Bottom */
.footer-bottom {
  width: 100%;
  min-height: 54px;
  padding: 12px 32px;
  background: rgba(0, 96, 100, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-payments span {
  min-width: 44px;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: #ffffff;
  color: #007f83;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* tạo màu gần giống icon thanh toán */
.footer-payments span:nth-child(1) {
  color: #1a4fa3;
}

.footer-payments span:nth-child(2) {
  color: #e84b3c;
}

.footer-payments span:nth-child(3) {
  color: #b538b8;
}

.footer-payments span:nth-child(4) {
  color: #008ed8;
}

.footer-payments span:nth-child(5) {
  color: #0061b8;
}

/* =========================
   RESPONSIVE FOOTER
========================= */

@media (max-width: 1100px) {
  .footer-club-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-club-left {
    justify-content: flex-start;
  }

  .footer-main-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .footer-club-content {
    padding: 20px;
  }

  .footer-club-form {
    grid-template-columns: 1fr;
  }

  .footer-main-inner {
    padding: 28px 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-club-left {
    align-items: flex-start;
  }

  .footer-club-icon {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .footer-club-left h3 {
    font-size: 18px;
  }

  .footer-club-left p {
    font-size: 13px;
  }

  .footer-main-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-logo {
    font-size: 34px;
  }
}

/* =========================
   KEYSHU CATEGORY CIRCLE
   OPTION 1 + OPTION 3
   Floating Premium + Spotlight Minimal
========================= */

.keyshu-category-circle {
  width: 100%;
  padding: 50px 32px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  position: relative;
  z-index: 1;
}

.keyshu-category-circle-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* HEAD */

.keyshu-category-circle-head {
  width: 100%;
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
}

.keyshu-category-circle-title {
  grid-column: 2;
  text-align: center;
}

.category-circle-label {
  display: none;
}

.keyshu-category-circle-title h2 {
  margin: 0;
  color: var(--text-color);
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

/* VIEW ALL */

.category-circle-viewall {
  grid-column: 3;
  justify-self: end;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(3, 176, 177, 0.18);
  background: #ffffff;
  color: #03B0B1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.category-circle-viewall:hover {
  background: #03B0B1;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(3, 176, 177, 0.16);
  transform: translateY(-2px);
}

/* GRID */

.keyshu-category-circle-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

/* ITEM */

.category-circle-item {
  position: relative;
  min-height: 228px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.28s ease;
}

.category-circle-item:hover {
  transform: translateY(-10px);
}

/* IMAGE CIRCLE */

.category-circle-image {
  position: relative;
  z-index: 2;
  width: clamp(150px, 12vw, 190px);
  height: clamp(150px, 12vw, 190px);
  border-radius: 50%;
  overflow: hidden;

  background:
    linear-gradient(180deg, #ffffff 0%, #f9ffff 100%);

  border: 1.5px solid rgba(3, 176, 177, 0.28);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 22px 46px rgba(17, 74, 80, 0.11),
    0 6px 14px rgba(17, 74, 80, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transform: translateY(-6px);
  transition: all 0.28s ease;
}

/* spotlight sau sản phẩm */
.category-circle-image::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(3, 176, 177, 0.14) 0%,
      rgba(3, 176, 177, 0.075) 38%,
      rgba(3, 176, 177, 0.025) 60%,
      rgba(3, 176, 177, 0) 78%);
  filter: blur(0.4px);
}

/* nền sáng tinh tế */
.category-circle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.70) 0%,
      rgba(255, 255, 255, 0.16) 34%,
      rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

/* IMAGE */

.category-circle-image img {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transform: translateY(8px) scale(1.22);
  transform-origin: center bottom;
  filter: drop-shadow(0 14px 16px rgba(16, 72, 78, 0.12));
  transition: transform 0.28s ease;
}

.category-circle-item:hover .category-circle-image {
  border-color: rgba(3, 176, 177, 0.38);
  box-shadow:
    0 26px 52px rgba(17, 74, 80, 0.14),
    0 8px 18px rgba(17, 74, 80, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.category-circle-item:hover .category-circle-image::before {
  background:
    radial-gradient(circle,
      rgba(3, 176, 177, 0.18) 0%,
      rgba(3, 176, 177, 0.09) 40%,
      rgba(3, 176, 177, 0.03) 62%,
      rgba(3, 176, 177, 0) 80%);
}

.category-circle-item:hover .category-circle-image img {
  transform: translateY(4px) scale(1.25);
}

/* NAME PLATE */

.category-circle-name {
  position: relative;
  z-index: 5;
  min-width: clamp(140px, 11.5vw, 180px);
  min-height: 40px;
  margin-top: -40px;
  padding: 0 22px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1.5px solid rgba(3, 176, 177, 0.26);
  box-shadow: 0 14px 26px rgba(17, 74, 80, 0.10);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #264d55;
  font-size: 15px;
  font-weight: 800;
  text-align: center;

  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.category-circle-item:hover .category-circle-name {
  color: #03B0B1;
  border-color: rgba(3, 176, 177, 0.36);
  box-shadow: 0 16px 30px rgba(17, 74, 80, 0.13);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .keyshu-category-circle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
  }

  .category-circle-image {
    width: 180px;
    height: 180px;
  }

  .category-circle-name {
    min-width: 170px;
  }
}

@media (max-width: 768px) {
  .keyshu-category-circle {
    padding: 48px 20px 56px;
  }

  .keyshu-category-circle-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
  }

  .keyshu-category-circle-title h2 {
    font-size: 23px;
  }

  .category-circle-viewall {
    height: 34px;
    padding: 0 15px;
    font-size: 11px;
  }

  .keyshu-category-circle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 14px;
  }

  .category-circle-item {
    min-height: 200px;
  }

  .category-circle-image {
    width: 160px;
    height: 160px;
    transform: translateY(-5px);
  }

  .category-circle-image img {
    width: 98%;
    height: 98%;
    transform: translateY(7px) scale(1.20);
  }

  .category-circle-item:hover .category-circle-image img {
    transform: translateY(3px) scale(1.23);
  }

  .category-circle-name {
    min-width: 150px;
    min-height: 38px;
    margin-top: -34px;
    padding: 0 18px;
    font-size: 14px;
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .keyshu-category-circle {
    padding: 42px 14px 50px;
  }

  .keyshu-category-circle-title h2 {
    font-size: 21px;
  }

  .keyshu-category-circle-grid {
    gap: 30px 12px;
  }

  .category-circle-item {
    min-height: 176px;
  }

  .category-circle-image {
    width: 138px;
    height: 138px;
    transform: translateY(-4px);
  }

  .category-circle-image img {
    width: 100%;
    height: 100%;
    transform: translateY(6px) scale(1.18);
  }

  .category-circle-item:hover .category-circle-image img {
    transform: translateY(2px) scale(1.21);
  }

  .category-circle-name {
    min-width: 124px;
    min-height: 36px;
    margin-top: -30px;
    padding: 0 14px;
    font-size: 13px;
    transform: translateY(-2px);
  }
}

/* =========================
   BOTANICAL LAB STORY SECTION
   CLEAN VERSION
   NO MIDDLE EFFECTS
========================= */

.botanical-lab-section {
  position: relative;
  width: 100%;
  padding: 60px 42px 100px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0f9ff 100%);
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 4;
  overflow: hidden;
}

/* Background image */
.botanical-lab-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.botanical-lab-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main layout */
.botanical-lab-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  min-height: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
}

/* =========================
   LEFT PRODUCT
========================= */

.botanical-lab-left {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.botanical-product-stage {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product image - very large */
.botanical-product-stage img {
  position: relative;
  z-index: 2;
  width: 170%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  transform: rotate(-3deg) translateX(-60px) translateY(20px);
  filter: drop-shadow(0 50px 70px rgba(18, 72, 78, 0.35));
}

/* =========================
   RIGHT CONTENT
========================= */

.botanical-lab-right {
  position: relative;
  max-width: 800px;
  padding-left: 12px;
}

.botanical-lab-heading {
  position: relative;
}

.botanical-lab-heading::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 3px;
  height: 124px;
  border-radius: 999px;
  background: linear-gradient(180deg,
      #03B0B1 0%,
      rgba(3, 176, 177, 0.32) 52%,
      rgba(3, 176, 177, 0) 100%);
}

.botanical-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 17px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(3, 176, 177, 0.18);
  color: #000000;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.botanical-lab-heading h2 {
  margin: 0;
  color: #000000;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.1px;
  text-transform: uppercase;
}

.botanical-lab-heading p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #000000;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 700;
}

/* =========================
   SPECIMEN LIST
========================= */

.botanical-specimen-list.molecule-layout {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: -30px;
}

.specimen-bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}

.specimen-bubble .specimen-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 3px;
  box-shadow: 0 10px 25px rgba(0, 150, 136, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.specimen-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bubble-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.bubble-info h3 {
  margin: 0;
  font-size: 11px;
  color: #000000;
  font-weight: 800;
  white-space: nowrap;
}

.specimen-bubble:hover {
  z-index: 10;
}

.specimen-bubble:hover .specimen-image {
  transform: scale(1.2);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 150, 136, 0.2);
}

.specimen-bubble:hover .bubble-info {
  transform: scale(1) translateY(5px);
  opacity: 1;
  background: white;
}

/* Coordinates for 11 bubbles - Clustered */
.bubble-1 {
  top: 15%;
  left: 15%;
  animation: float 6s infinite ease-in-out;
}

.bubble-2 {
  top: 8%;
  left: 42%;
  animation: float 7s infinite ease-in-out -1s;
}

.bubble-3 {
  top: 18%;
  left: 70%;
  animation: float 5.5s infinite ease-in-out -0.5s;
}

.bubble-4 {
  top: 42%;
  left: 12%;
  animation: float 8s infinite ease-in-out -2s;
}

.bubble-5 {
  top: 38%;
  left: 52%;
  animation: float 6.5s infinite ease-in-out -1.5s;
}

.bubble-6 {
  top: 48%;
  left: 78%;
  animation: float 7.5s infinite ease-in-out -3s;
}

.bubble-7 {
  top: 68%;
  left: 22%;
  animation: float 6s infinite ease-in-out -1s;
}

.bubble-8 {
  top: 62%;
  left: 45%;
  animation: float 8.5s infinite ease-in-out -4s;
}

.bubble-9 {
  top: 72%;
  left: 65%;
  animation: float 7s infinite ease-in-out -2.5s;
}

.bubble-10 {
  top: 32%;
  left: 32%;
  animation: float 5s infinite ease-in-out;
}

.bubble-11 {
  top: 58%;
  left: 85%;
  animation: float 9s infinite ease-in-out -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(2deg);
  }

  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

@media (max-width: 1100px) {
  .botanical-specimen-list.molecule-layout {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .specimen-bubble {
    position: relative;
    top: auto !important;
    left: auto !important;
    animation: none !important;
  }
}

/* =========================
   DISCOVER BUTTON
========================= */

.botanical-discover-btn {
  position: relative;
  width: fit-content;
  min-width: 280px;
  height: 62px;
  margin-top: 30px;
  padding: 0 22px 0 34px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #03B0B1 0%, #08c8c9 48%, #02979a 100%);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow:
    0 16px 34px rgba(3, 176, 177, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: all 0.28s ease;
}

.botanical-discover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: all 0.55s ease;
}

.botanical-discover-btn span {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.28s ease;
}

.botanical-discover-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #029fa1 0%, #08c8c9 48%, #007f83 100%);
  box-shadow:
    0 22px 42px rgba(3, 176, 177, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.botanical-discover-btn:hover::before {
  left: 120%;
}

.botanical-discover-btn:hover span {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.26);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .botanical-lab-section {
    padding: 62px 28px;
  }

  .botanical-lab-container {
    grid-template-columns: 45% 55%;
    gap: 22px;
  }

  .botanical-lab-left {
    min-height: 480px;
  }

  .botanical-product-stage {
    min-height: 480px;
  }

  .botanical-product-stage img {
    width: 126%;
    max-width: 590px;
    transform: rotate(-4deg) translateX(-14px) translateY(6px);
  }

  .botanical-lab-heading h2 {
    font-size: 40px;
  }

  .specimen-content p {
    max-width: 460px;
  }
}

@media (max-width: 900px) {
  .botanical-lab-section {
    padding: 52px 22px;
  }

  .botanical-lab-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .botanical-lab-left {
    min-height: auto;
  }

  .botanical-product-stage {
    min-height: 410px;
    max-width: 560px;
    margin: 0 auto;
  }

  .botanical-product-stage img {
    width: 118%;
    max-width: 540px;
    transform: rotate(-4deg) translateY(4px);
  }

  .botanical-lab-right {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .botanical-lab-heading::before {
    display: none;
  }

  .botanical-lab-heading h2 {
    font-size: 34px;
  }

  .botanical-lab-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .botanical-specimen-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .botanical-discover-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .botanical-lab-section {
    padding: 42px 14px;
  }

  .botanical-product-stage {
    min-height: 330px;
    max-width: 340px;
  }

  .botanical-product-stage img {
    width: 126%;
    max-width: 390px;
    transform: rotate(-4deg) translateY(2px);
  }

  .botanical-lab-heading h2 {
    font-size: 25px;
  }

  .botanical-lab-heading p {
    font-size: 13px;
  }

  .botanical-specimen-list::before {
    display: none;
  }

  .botanical-specimen-item {
    grid-template-columns: 46px 72px 1fr;
    gap: 12px;
    min-height: 88px;
    padding: 10px 0;
  }

  .specimen-index {
    width: 46px;
    height: 46px;
    font-size: 11px;
  }

  .specimen-image {
    width: 72px;
    height: 72px;
    border-radius: 18px 18px 18px 7px;
  }

  .specimen-content h3 {
    font-size: 15px;
  }

  .specimen-content p {
    font-size: 11px;
  }

  .botanical-discover-btn {
    width: 100%;
    min-width: 0;
    height: 56px;
    margin-top: 26px;
    padding: 0 18px 0 24px;
    font-size: 13px;
  }

  .botanical-discover-btn span {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}


/* =========================
   PRODUCTION STORY SECTION
========================= */

.production-story-section {
  position: relative;
  width: 100%;
  padding: 76px 42px;
  background: #ffffff;
  overflow: hidden;
}

.production-story-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.055);
  pointer-events: none;
}

.production-story-section::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.045);
  pointer-events: none;
}

.production-story-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 54px;
}

/* =========================
   LEFT GALLERY
========================= */

.production-story-gallery {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.production-image {
  position: absolute;
  overflow: hidden;
  background: #eefafa;
  border: 8px solid #ffffff;
  box-shadow:
    0 18px 42px rgba(25, 82, 90, 0.13),
    0 4px 10px rgba(25, 82, 90, 0.05);
}

.production-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ảnh lớn */
.production-image-main {
  left: 38px;
  top: 30px;
  width: 300px;
  height: 300px;
  border-radius: 44px 44px 44px 12px;
}

/* ảnh nhỏ phía trên */
.production-image-small-1 {
  left: 294px;
  top: 84px;
  width: 152px;
  height: 152px;
  border-radius: 30px 30px 30px 8px;
}

/* ảnh nhỏ dưới trái */
.production-image-small-2 {
  left: 58px;
  top: 310px;
  width: 155px;
  height: 155px;
  border-radius: 30px 8px 30px 30px;
}

/* ảnh ngang dưới */
.production-image-wide {
  left: 210px;
  top: 268px;
  width: 260px;
  height: 188px;
  border-radius: 12px 42px 42px 42px;
}

.production-decor {
  position: absolute;
  z-index: 3;
  color: rgba(3, 176, 177, 0.34);
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.production-decor i {
  font-size: 22px;
  transform: rotate(-24deg);
}

.production-decor-1 {
  left: 4px;
  top: 4px;
  transform: rotate(-18deg);
}

.production-decor-2 {
  right: 40px;
  bottom: 12px;
  transform: rotate(158deg);
}

/* =========================
   RIGHT CONTENT
========================= */

.production-story-content {
  position: relative;
  max-width: 620px;
}

.production-story-script {
  display: block;
  margin-bottom: 6px;
  color: #64c8c9;
  font-family: "Allura", cursive;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
}

.production-story-content h2 {
  margin: 0;
  color: #16484f;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.production-story-content h2::first-line {
  color: #03B0B1;
}

.production-story-content>p {
  max-width: 580px;
  margin: 18px 0 0;
  color: #5a747b;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 600;
}

/* =========================
   STEPS
========================= */

.production-step-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.production-step-item {
  position: relative;
  min-height: 116px;
  padding: 18px 18px 18px 62px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(3, 176, 177, 0.13);
  box-shadow: 0 10px 26px rgba(35, 92, 101, 0.07);
  transition: all 0.28s ease;
}

.production-step-item:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 176, 177, 0.28);
  box-shadow: 0 16px 34px rgba(35, 92, 101, 0.12);
}

.production-step-item>span {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.1);
  color: #03B0B1;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-step-item h3 {
  margin: 0 0 7px;
  color: #234f57;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.production-step-item p {
  margin: 0;
  color: #60777e;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================
   BUTTONS
========================= */

.production-story-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.production-btn {
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.production-btn-primary {
  min-width: 190px;
  background: #03B0B1;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(3, 176, 177, 0.24);
}

.production-btn-primary:hover {
  background: #009b9c;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(3, 176, 177, 0.30);
}

.production-btn-outline {
  min-width: 150px;
  color: #03B0B1;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(3, 176, 177, 0.26);
}

.production-btn-outline:hover {
  background: #ffffff;
  border-color: #03B0B1;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .production-story-section {
    padding: 64px 28px;
  }

  .production-story-container {
    grid-template-columns: 47% 53%;
    gap: 36px;
  }

  .production-story-gallery {
    min-height: 450px;
  }

  .production-image-main {
    width: 260px;
    height: 260px;
  }

  .production-image-small-1 {
    left: 260px;
    width: 132px;
    height: 132px;
  }

  .production-image-small-2 {
    top: 278px;
    width: 136px;
    height: 136px;
  }

  .production-image-wide {
    left: 184px;
    top: 240px;
    width: 228px;
    height: 166px;
  }

  .production-story-content h2 {
    font-size: 38px;
  }

  .production-step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .production-story-section {
    padding: 54px 22px;
  }

  .production-story-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .production-story-gallery {
    max-width: 520px;
    min-height: 460px;
    margin: 0 auto;
  }

  .production-story-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .production-story-content>p {
    margin-left: auto;
    margin-right: auto;
  }

  .production-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .production-story-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .production-story-section {
    padding: 44px 14px;
  }

  .production-story-gallery {
    min-height: 390px;
  }

  .production-image {
    border-width: 6px;
  }

  .production-image-main {
    left: 14px;
    top: 20px;
    width: 220px;
    height: 220px;
    border-radius: 34px 34px 34px 10px;
  }

  .production-image-small-1 {
    left: 202px;
    top: 70px;
    width: 112px;
    height: 112px;
    border-radius: 24px 24px 24px 8px;
  }

  .production-image-small-2 {
    left: 26px;
    top: 238px;
    width: 112px;
    height: 112px;
  }

  .production-image-wide {
    left: 132px;
    top: 216px;
    width: 176px;
    height: 130px;
  }

  .production-story-script {
    font-size: 34px;
  }

  .production-story-content h2 {
    font-size: 27px;
  }

  .production-story-content>p {
    font-size: 13px;
  }

  .production-step-list {
    grid-template-columns: 1fr;
  }

  .production-btn {
    width: 100%;
  }
}

/* =========================
   MANUFACTURING PROCESS
========================= */
.manufacturing-process-section {
  position: relative;
  padding: 120px 32px 100px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfdf5 100%);
  margin-top: -80px;
  border-radius: 100px 100px 0 0;
  z-index: 5;
  overflow: hidden;
}

.manufacturing-process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.045);
  pointer-events: none;
}

.manufacturing-process-section::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(3, 176, 177, 0.04);
  pointer-events: none;
}

.manufacturing-process-container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

/* header */
.manufacturing-process-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.manufacturing-process-heading {
  min-width: 0;
}

.manufacturing-process-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(3, 176, 177, 0.08);
  border: 1px solid rgba(3, 176, 177, 0.16);
  color: #03B0B1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.manufacturing-process-heading h2 {
  margin: 0;
  color: #1b4d55;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.manufacturing-process-viewall {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px 0 22px;
  border-radius: 999px;
  background: #03B0B1;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(3, 176, 177, 0.22);
  transition: all 0.25s ease;
}

.manufacturing-process-viewall span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.manufacturing-process-viewall:hover {
  transform: translateY(-2px);
  background: #029b9d;
  box-shadow: 0 16px 28px rgba(3, 176, 177, 0.28);
}

/* grid */
.manufacturing-process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

/* column 1 */
.manufacturing-process-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 4px 10px 0;
}

.manufacturing-process-lead {
  margin: 0 0 16px;
  color: #1d4f56;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.manufacturing-process-intro p:not(.manufacturing-process-lead) {
  margin: 0;
  color: #6a8086;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 600;
}

.manufacturing-process-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e4f1f1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.manufacturing-process-meta span {
  color: #8aa2a7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.manufacturing-process-meta strong {
  color: #1f4c53;
  font-size: 14px;
  font-weight: 800;
}

/* column 2 */
.manufacturing-process-image {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef7f7;
  box-shadow:
    0 16px 34px rgba(24, 85, 91, 0.10),
    0 6px 14px rgba(24, 85, 91, 0.04);
}

.manufacturing-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* column 3 */
.manufacturing-process-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-item {
  border-radius: 14px;
  background: #f7fbfb;
  border: 1px solid #e2efef;
  overflow: hidden;
  transition: all 0.25s ease;
}

.process-item[open] {
  background: #03B0B1;
  border-color: #03B0B1;
  box-shadow: 0 12px 28px rgba(47, 111, 22, 0.18);
}

.process-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.process-item summary::-webkit-details-marker {
  display: none;
}

.process-item-title {
  color: #1e4b53;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.process-item-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #1f4d54;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-item[open] .process-item-title {
  color: #ffffff;
}

.process-item[open] .process-item-icon {
  color: #2f6f16;
  background: #ffffff;
}

.process-item-content {
  padding: 0 18px 18px;
  color: #6f8286;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 600;
}

.process-item[open] .process-item-content {
  color: rgba(255, 255, 255, 0.88);
}

/* hover */
.process-item:hover {
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 1199px) {
  .manufacturing-process-grid {
    grid-template-columns: 0.9fr 1.1fr 1.2fr;
    gap: 18px;
  }

  .manufacturing-process-heading h2 {
    font-size: 36px;
  }

  .manufacturing-process-image {
    min-height: 380px;
  }
}

@media (max-width: 991px) {
  .manufacturing-process-section {
    padding: 58px 0;
  }

  .manufacturing-process-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .manufacturing-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manufacturing-process-intro {
    padding: 0;
  }

  .manufacturing-process-meta {
    margin-top: 20px;
  }

  .manufacturing-process-image {
    min-height: 360px;
    order: 2;
  }

  .manufacturing-process-accordion {
    order: 3;
  }
}

@media (max-width: 767px) {
  .manufacturing-process-container {
    width: min(100% - 20px, 1280px);
  }

  .manufacturing-process-heading h2 {
    font-size: 28px;
  }

  .manufacturing-process-viewall {
    height: 40px;
    font-size: 12px;
    padding: 0 16px 0 18px;
  }

  .manufacturing-process-lead {
    font-size: 15px;
  }

  .manufacturing-process-intro p:not(.manufacturing-process-lead),
  .process-item-content {
    font-size: 12px;
  }

  .manufacturing-process-image {
    min-height: 280px;
    border-radius: 14px;
  }

  .process-item summary {
    min-height: 52px;
    padding: 0 14px;
  }

  .process-item-content {
    padding: 0 14px 14px;
  }

  .process-item-title {
    font-size: 13px;
  }
}