/* ============================================================
   Index Page Styles (homepage only)
   - Hero Banner
   - Homepage Sections (Updates / Goals / Progress / Focus / Package / Science / Shop / Popular)
   - Legacy hero / cards / events / grid
   - Index responsive
   ============================================================ */

/* ====================== Hero Banner ====================== */
.am-hero-banner {
  position: relative;
  padding: 60px 0 0;
  background: #f3f3f3;
  overflow: hidden;
}

.am-hero-content {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero 轮播滑动容器 - 每个slide包含标题、产品图、描述等全部内容 */
.am-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.am-hero-title {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-bottom: 0;
}

.am-hero-subtitle {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.am-hero-main {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1.2;
}

.am-hero-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.am-hero-product-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.am-hero-product-item img {
  max-width: 500px;
  max-height: 600px;
  object-fit: contain;
}

.am-hero-text-left {
  position: absolute;
  bottom: -70%;
  left: 0;
  z-index: 5;
}

.am-hero-desc {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}

.am-hero-text-right {
  position: absolute;
  bottom: -70%;
  right: 0;
  z-index: 5;
  max-width: 280px;
}

.am-hero-text-right p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  text-align: right;
}

/* First hero arrows — scoped to .am-hero-banner so no property leaks into
   the Hero News split module (which uses .am-hn-section scoped arrows). */
.am-hero-banner .am-hero-arrows {
  position: absolute;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.am-hero-banner .am-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.am-hero-banner .am-hero-arrow:hover {
  background: #333333;
}

.am-hero-banner .am-hero-arrow svg {
  width: 20px;
  height: 20px;
}

.am-hero-stripe {
  background: #e19d22;
  padding: 30px 0;
  margin-top: 40px;
}

.am-stripe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}

.am-stripe-text {
  font-size: 48px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 30px;
  white-space: nowrap;
}

.am-stripe-text span.highlight {
  color: #ffffff;
}

/* ========== Hero Section (Legacy) ========== */
.hero-wrap {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background-color: rgba(60, 60, 60, 0.55);
}

.hero-left-content {
  position: absolute;
  bottom: 50px;
  left: 60px;
  color: #fff;
  z-index: 10;
}

.sub-label-details {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 8px;
}

.main-title {
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: titleFade 1s ease forwards 0.3s;
}

.text-row-two-col {
  display: grid;
  grid-template-columns: 180px 170px;
  gap: 20px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 20px;
}

.slide-buttons {
  display: flex;
  gap: 8px;
}

.slide-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ffffff80;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ========== Header Nav (Legacy) ========== */
.header-nav {
  position: absolute;
  top: 50px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-slide-wrap {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  transform: translateX(10px);
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease;
}

.menu-slide-wrap.open {
  width: 340px;
  transform: translateX(0);
  opacity: 1;
}

.nav-items-group {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-icon {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.25s;
  opacity: 0.9;
}

.nav-icon:hover {
  opacity: 1;
}

.nav-icon.grid-toggle.active {
  transform: rotate(90deg);
}

/* ========== Card Group ========== */
.card-group-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 10;
}

.img-card {
  width: 360px;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-item.active {
  opacity: 1;
  z-index: 2;
}

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

.card-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 99;
}

.arrow-btn {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  cursor: pointer !important;
  transition: background 0.25s ease;
  border-radius: 50%;
  pointer-events: auto !important;
}

.arrow-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.news-card {
  width: 280px;
  background-color: #111222;
  color: #fff;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-label {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.news-title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.news-readmore {
  font-size: 14px;
  opacity: 0.6;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.25s;
}

.news-readmore:hover {
  opacity: 1;
  text-decoration: none;
}

/* ========== Events Bar ========== */
.events-bar {
  width: 100%;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 60px;
  gap: 20px;
}

.event-col h4 {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-big-text {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 8px;
}

.event-small-text {
  font-size: 13px;
  color: #666;
}

.dots-indicator {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  transition: background 0.25s;
}

.dot.active {
  background: #111;
}

.col-name-text {
  font-size: 36px;
  color: #888;
  font-weight: 300;
  margin-bottom: 8px;
}

/* ========== Grid Container ========== */
.grid-container-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.col-left,
.col-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-cell {
  background-color: #f7f8fa;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.span-2-col {
  grid-column: span 2;
}

.grid-cell img {
  max-width: 80%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 16px;
}

.script-text {
  color: #a4945c;
  font-size: 18px;
  margin-bottom: 6px;
}

.heading-text {
  font-size: 20px;
  letter-spacing: 1px;
  color: #111222;
  text-transform: uppercase;
  font-weight: 500;
}

.sale-box {
  border: 1px dashed #999999;
  padding: 30px 10px;
}

.sale-small {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.sale-percent {
  font-size: 52px;
  color: #a4945c;
  font-weight: 600;
  line-height: 1;
}

.sale-word {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #111;
}

/* ============================================================
   Amazon Sustainability Style - Homepage Sections
   ============================================================ */

/* Buttons (homepage specific overrides) */
.am-btn-primary,
.am-btn-outline {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.am-btn-primary {
  padding: 12px 28px;
  background: #232f3e;
  color: #fff;
}

.am-btn-outline {
  padding: 10px 24px;
  border: 1px solid #232f3e;
  color: #232f3e;
}

.am-btn-primary:hover,
.am-btn-outline:hover,
.am-link-arrow:hover,
.am-news-card:hover,
.am-stat-box:hover,
.am-media-card:hover,
.am-goal-card:hover,
.am-focus-card:hover,
.am-package-card:hover,
.am-popular-card:hover,
.am-update-card:hover {
  text-decoration: none;
}

.am-btn-primary:hover {
  background: #37475a;
  color: #fff;
}

.am-btn-outline:hover {
  background: #232f3e;
  color: #fff;
}

.am-btn-outline.light {
  border-color: #fff;
  color: #fff;
}

.am-btn-outline.light:hover {
  background: #fff;
  color: #232f3e;
}

.am-link-arrow {
  color: #232f3e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.25s;
}

.am-link-arrow:hover {
  opacity: 0.7;
}

/* Section 1: Hero Split */
.am-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: #f2f4f6;
}

.am-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0 60px 60px;
}

.am-hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.am-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s;
  cursor: pointer;
}

.am-dot.active {
  background: #232f3e;
}

.am-news-card {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  margin-top: 40px;
}

.am-news-img {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.am-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-news-info {
  flex: 1;
}

.am-news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 8px;
}

.am-news-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.am-hero-right {
  padding: 40px 60px 40px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.am-hero-media {
  width: 100%;
  min-height: 600px;
  position: relative;
}

.am-media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.am-media-card img,
.am-goal-img img,
.am-focus-img img,
.am-shop-card img,
.am-popular-img img,
.am-update-img img,
.am-package-card img,
.am-science-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.am-media-card img,
.am-goal-link .am-goal-img img,
.am-focus-img img,
.am-shop-card img,
.am-popular-img img,
.am-science-media img {
  transition: transform 0.5s ease;
}

.am-media-card:hover img {
  transform: scale(1.05);
}

.am-media-overlay,
.am-goal-info,
.am-focus-info,
.am-progress-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.am-media-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.am-media-overlay h3 {
  font-size: 22px;
  margin: 0 0 6px 0;
}

.am-media-overlay p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

.am-hero-arrows {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.am-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  pointer-events: auto;
}

.am-hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* ========== Hero News Split Section (model4 module) ==========
   Uses shared .am-hero-dots / .am-dot / .am-news-* / .am-hero-media /
   .am-media-* / .am-hero-arrows / .am-hero-arrow styles defined above.
   Only the .am-hero-title needs a scoped override here, because the
   first hero uses the same class with a centered layout. */
.am-hn-section .am-hero-title {
  position: static;
  z-index: auto;
  text-align: left;
  font-size: 64px;
  font-weight: 700;
  color: #232f3e;
  line-height: 1.1;
  margin: 0;
}

/* Section 2: Updates */
.am-updates-section {
  background: #ffffff;
}

.am-filter-tabs {
  display: flex;
  gap: 8px;
}

.am-filter-btn {
  padding: 8px 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.am-filter-btn:hover,
.am-filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.am-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.am-update-card {
  text-decoration: none;
  display: block;
  overflow: hidden;
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.am-update-card:hover,
.am-package-card:hover,
.am-popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.am-update-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.am-update-body {
  padding: 20px;
}

.am-update-desc,
.am-stat-desc,
.am-package-info p,
.am-science-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Section 3: Goals (Dark) */
.am-goals-section {
  background: #0f1a26;
  padding: 100px 0;
}

.am-section-header,
.am-goals-header,
.am-progress-header,
.am-science-header,
.am-shop-header,
.am-popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.am-section-header {
  margin-bottom: 40px;
}

.am-goals-header {
  align-items: flex-start;
}

.am-goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.am-goals-grid .am-goal-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.am-goals-grid .am-goal-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.am-goals-grid .am-goal-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.am-goals-grid .am-goal-card:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.am-goals-grid .am-goal-card:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.am-goals-grid .am-goal-card:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.am-goals-grid .am-goal-card:nth-child(7) {
  grid-column: 1;
  grid-row: 2;
}

.am-goal-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #1a2634;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.am-goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.am-goal-link {
  cursor: pointer;
}

.am-goal-link:hover .am-goal-img img {
  transform: scale(1.05);
}

.am-goal-tall {
  grid-row: span 2;
}

.am-goal-wide {
  grid-column: span 2;
}

.am-goal-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.am-goal-info {
  padding: 24px;
}

.am-goal-info h3,
.am-media-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.am-goal-label,
.am-media-tag,
.am-progress-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 10px;
}

.am-goal-label {
  background: #4caf50;
}

.am-progress-tag {
  padding: 6px 16px;
  font-size: 13px;
}

.am-goal-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #e8f5e9;
}

.am-goal-stat.dark {
  background: #1b5e20;
}

.am-stat-box {
  text-align: center;
  text-decoration: none;
  display: block;
  width: 100%;
}

.am-stat-num,
.am-pstat-num {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.am-stat-num {
  color: #2e7d32;
  margin-bottom: 12px;
}

.am-goal-stat.dark .am-stat-num {
  color: #81c784;
}

.am-pstat-num {
  font-size: 36px;
  color: #232f3e;
}

.am-goal-stat.dark .am-stat-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Section 4: Progress */


.am-progress-stats {
  display: flex;
  gap: 40px;
}

.am-pstat {
  text-align: center;
}

.am-pstat-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.am-progress-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.am-progress-media {
  position: relative;
  overflow: hidden;
}

.am-progress-media a {
  display: block;
  text-decoration: none;
  text-align: center;
}

.am-progress-media img {
  min-height: 400px;
}

.am-progress-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 24px 0;
}

/* Section 5: Focus Areas */
.am-focus-section {
  background: #ffffff;
}

.am-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.am-focus-card {
  text-decoration: none;
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.am-focus-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.am-focus-card:hover .am-focus-img img {
  transform: scale(1.08);
}

.am-focus-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.am-focus-info h4,
.am-package-info h4,
.am-popular-info h4,
.am-shop-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.am-focus-info h4 {
  color: #fff;
}

.am-package-info h4 {
  font-size: 18px;
  color: #232f3e;
  margin: 0 0 8px 0;
}

.am-popular-info h4 {
  color: #232f3e;
  margin: 0 0 8px 0;
}

.am-shop-card h4 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px 0;
  min-height: 48px;
}

.am-focus-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.3s;
}

.am-focus-card:hover .am-focus-arrow {
  background: rgba(255, 255, 255, 0.4);
}

/* Section 6: Packaging */
.am-package-section {
  background: #f2f4f6;
}

.am-package-text {
  max-width: 700px;
  margin-bottom: 50px;
}

.am-package-text .am-section-title {
  font-size: 32px;
}

.am-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.am-package-card {
  text-decoration: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.am-package-card img {
  height: 280px;
}

.am-package-info {
  padding: 24px;
}

/* Section 7: Science */
.am-science-section {
  background: #ffffff;
}

.am-science-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.am-science-media {
  overflow: hidden;
}

.am-science-media a {
  display: block;
  text-decoration: none;
}

.am-science-media img {
  height: 400px;
}

.am-science-media:hover img {
  transform: scale(1.03);
}

.am-science-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.am-science-card {
  background: #bc831c;
  border-radius: 20px;
  padding: 30px;
}

.am-science-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #232f3e;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.am-science-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.am-science-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #e19d22;
  border-radius: 12px;
  font-size: 14px;
  color: #444;
}

.am-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #232f3e;
  flex-shrink: 0;
  margin-left: 12px;
}

.am-item-dot.green {
  background: #4caf50;
}

/* Section 8: Shop (Dark) */
.am-shop-section {
  background: #111;
  padding: 100px 0;
}

.am-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.am-shop-card {
  background: #FFF;
  padding: 30px;
  text-align: center;
}

.am-shop-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px 0;
  min-height: 48px;
}

.am-shop-card a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.am-shop-card img {
  height: 200px;
}

.am-shop-card:hover img {
  transform: scale(1.05);
}

/* Section 9: Popular */
.am-popular-section {
  background: #f2f4f6;
}

.am-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.am-popular-card {
  text-decoration: none;
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.am-popular-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.am-popular-card:hover .am-popular-img img {
  transform: scale(1.08);
}

.am-popular-info {
  padding: 20px;
}

.am-popular-price {
  font-size: 18px;
  font-weight: 700;
  color: #2e7d32;
  margin: 0;
}