/* ========== Tokens / Variables ========== */
:root{
  --green:#2E7D32;
  --yellow:#FCCD04;
  --ink:#172432;
  --bg-soft:#F2FAE3;

  /* thêm biến phụ để tái sử dụng nếu cần */
  --brand-green:#2E7D32;
  --ink-500:#475569;
  --ink-700:#0f172a;
}

/* ========== Shared: Title styles (dùng cho mọi section) ========== */
.title-icon,
.pkg-icon{ /* alias để không vỡ code cũ */
  width:50px; height:50px; border-radius:50%;
  background:var(--green);
  box-shadow:2px 0 0 #D9A018;          /* viền vàng nhẹ bên phải */
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;                      /* nếu ảnh lớn hơn khung */
}
.title-icon img,
.pkg-icon img{
  width:28px; height:28px; object-fit:contain; display:block;
}
/* Nếu icon gốc tối và cần ép thành trắng: thêm class .is-white vào <img> */
.title-icon-img.is-white{ filter:grayscale(1) brightness(0) invert(1) contrast(100%); }

/* Dùng mask để icon luôn trắng (tuỳ chọn: dùng <span class="title-icon-mask" style="--icon:url('...')">) */
.title-icon-mask{
  width:28px; height:28px; display:block; background:#fff;
  -webkit-mask: var(--icon) center/contain no-repeat;
          mask: var(--icon) center/contain no-repeat;
}

/* Kiểu H2 chung cho tiêu đề lớn */
:is(.section-ship, .pkg-section) h2{
  font-family:"Playfair Display",serif;
  font-weight:600;
  color:var(--green);
  font-size:clamp(28px,4vw,50px);
  margin:0;
}

/* Gạch vàng nhấn dưới tiêu đề */
.accent-line{
  border:0; height:3px; background:var(--yellow);
  width:clamp(200px,50%,709px);
  margin-top:20px;
}

/* ========== Shipping Section ========== */
.section-ship{ background:var(--bg-soft); }

.ship-card{
  border:0; border-radius:20px;
  box-shadow:0 4px 56px rgba(78,96,46,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.ship-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 60px rgba(78,96,46,.12);
}
.ship-card .card-body{ padding:40px 30px; }

.ship-icon{ width:52px; height:52px; margin:0 auto 16px; }
.ship-icon img{ width:100%; height:100%; object-fit:contain; display:block; }

.ship-title{
  font-family:"Playfair Display",serif;
  color:var(--ink);
  font-weight:600;
  font-size:24px;
}
.ship-desc{
  font-family:"Roboto",sans-serif;
  font-size:15px; line-height:1.5;
  color:rgba(0,0,0,.87);
}

/* ========== Packaging Section ========== */
.pkg-section{
  background:var(--bg-soft);           /* đồng nền với shipping (nếu muốn khác, đổi ở đây) */
  padding:32px 0 56px;
  border-radius:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

/* Hàng tiêu đề của packaging (dùng chung title-icon + h2 + accent-line) */
.pkg-head{
  display:flex; align-items:center; gap:14px;
  margin-bottom:18px;
}

/* Phụ đề dưới tiêu đề */
.pkg-sub{
  margin:12px 0 0;
  font-family:"Roboto",sans-serif;
  color:rgba(0,0,0,.87);
}

/* Ảnh minh hoạ */
.pkg-figure{ margin:0 auto; display:grid; justify-content:center;}
.pkg-image{
  display:block; width:90%; height:auto;
  border-radius:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.10);
}

/* Nội dung text */
.pkg-heading{
  color:var(--brand-green);
  font-weight:700; font-size:32px;
  font-family:"Playfair Display","Times New Roman",serif;
  margin-bottom:15px;
}
.pkg-desc{
  color:var(--ink-700);
  margin-bottom:14px; line-height:1.6;
}
.pkg-divider{ height:1px; background:rgba(46,125,50,.18); margin:14px 0 12px; }
.pkg-subtitle{ font-weight:700; color:var(--brand-green); font-size:18px; margin-bottom:10px; }

/* Danh sách */
.pkg-list{ margin:10px 0 0; padding-left:18px; color:var(--ink-700); }
.pkg-list li+li{ margin-top:6px; }
.pkg-list strong{ color:#111; }

/* Khối biến thể */
.pkg-variant{ position:relative; padding-left:0; }

/* ========== Responsive tweaks ========== */
@media (max-width: 992px){
  .pkg-section{ border-radius:20px; }
}
@media (max-width: 576px){
  .pkg-head{ align-items:flex-start; }
  .ship-card .card-body{ padding:24px 18px; }
}
