@charset "UTF-8";
/* ─── Design Tokens (từ theme.scss) ─── */
:root {
  --bg-brown: #7B3F00;
  --radius: 12px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  --max-w: 1200px; }

/* ─── Reusable Heading Classes ─── */
.main-title {
  font-size: 30px;
  font-weight: 850;
  color: var(--shop-color-title);
  margin-bottom: 12px;
  text-align: center; }

.sub-title {
  color: var(--shop-color-button);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.5px; }

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

/* ─── Buttons ─── */
.button {
  display: inline-block;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s; }

.btn-primary {
  background: var(--shop-color-main);
  color: #fff;
  padding: 12px 25px; }

.btn-primary:hover {
  opacity: 0.9; }

.btn-orange {
  background: var(--shop-color-button);
  color: #fff;
  padding: 16px 30px;
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  display: block;
  text-align: center; }

.btn-orange:hover {
  opacity: 0.9; }

.btn-light {
  background: transparent;
  border: 2px solid var(--shop-color-main);
  color: var(--shop-color-main);
  padding: 12px;
  border-radius: 6px;
  font-weight: bold; }

.btn-light:hover {
  background: var(--shop-color-main);
  color: #fff; }

/* ─── Hero Slider ─── */
.section_ldp2_hero {
  width: 100%;
  overflow: hidden; }

.ldp2_hero_slider {
  width: 100%;
  position: relative; }
  .ldp2_hero_slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .ldp2_hero_slider .swiper-button {
    color: var(--shop-color-main);
    opacity: 0;
    transition: all 0.5s ease;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 2px; }
    .ldp2_hero_slider .swiper-button:after {
      font-size: 22px; }
    .ldp2_hero_slider .swiper-button:hover {
      background: var(--shop-color-main);
      color: #fff; }
  .ldp2_hero_slider .swiper-button-prev {
    transform: translateX(-20px); }
  .ldp2_hero_slider .swiper-button-next {
    transform: translateX(20px); }
  .ldp2_hero_slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 2px; }
    .ldp2_hero_slider .swiper-pagination-bullet-active {
      background: var(--shop-color-main); }
  .ldp2_hero_slider:hover .swiper-button {
    opacity: 1; }
  .ldp2_hero_slider:hover .swiper-button-prev {
    transform: translateX(20px); }
  .ldp2_hero_slider:hover .swiper-button-next {
    transform: translateX(-20px); }
  .ldp2_hero_slider .boxlazy-img__insert {
    padding-bottom: 38%; }
  @media (max-width: 991px) {
    .ldp2_hero_slider .swiper-button {
      display: none; }
    .ldp2_hero_slider .swiper-pagination-bullet {
      width: 10px;
      height: 10px; } }
  @media (max-width: 767px) {
    .ldp2_hero_slider .boxlazy-img__insert {
      padding-bottom: 38%; } }

.ldp2_hero_slide-img a {
  display: block; }

.ldp2_hero_slide-img picture,
.ldp2_hero_slide-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; }

/* ─── Trust Section ─── */
.section_ldp2_trust {
  background: var(--bg-brown);
  color: #fff; }

.ldp2_trust_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto; }

.ldp2_trust_item {
  text-align: center;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1); }

.ldp2_trust_item small {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden; }

.ldp2_trust_item:last-child {
  border-right: none; }

.ldp2_trust_icon {
  font-size: 36px;
  margin-bottom: 12px; }

/* ─── Comparison Section ─── */
.ldp2_comparison_tab-row {
  display: flex;
  max-width: 400px;
  margin: 0 auto 30px;
  border: 2px solid var(--shop-color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff; }

.ldp2_comparison_tab-btn {
  flex: 1;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--shop-color-subtitle);
  transition: 0.2s; }

.ldp2_comparison_tab-btn.active {
  background: var(--shop-color-main);
  color: #fff; }

.ldp2_comparison_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow); }

.ldp2_comparison_table th {
  background: var(--bg-brown);
  color: #fff;
  padding: 15px;
  text-align: left; }

.ldp2_comparison_table td {
  padding: 15px;
  border-bottom: 1px solid var(--shop-color-border); }

.ldp2_comparison_table .price {
  color: var(--shop-color-main);
  font-weight: bold; }

.ldp2_comparison_cta-btn {
  background: var(--shop-color-button);
  padding: 15px 40px;
  font-size: 16px; }

/* ─── Testimonials Section ─── */
.section_ldp2_testimonials {
  background: #fff;
  overflow: hidden; }

.ldp2_testimonials_slider {
  position: relative;
  margin-top: 40px; }

.ldp2_testimonials_slider .swiper-wrapper {
  align-items: stretch; }

.ldp2_testimonials_slider .swiper-slide {
  height: auto; }

.ldp2_testimonials_card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--shop-color-border);
  height: 100%; }

.ldp2_testimonials_card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px; }

.ldp2_testimonials_card-quote {
  font-style: italic;
  color: var(--shop-color-subtitle);
  margin-bottom: 15px;
  border-left: 4px solid var(--shop-color-button);
  padding-left: 15px; }

/* ─── Navigation ─── */
.ldp2_testimonials_slider .swiper-button {
  color: var(--shop-color-main);
  opacity: 0;
  transition: all 0.5s ease;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 2px; }

.ldp2_testimonials_slider .swiper-button::after {
  font-size: 22px; }

.ldp2_testimonials_slider .swiper-button:hover {
  background: var(--shop-color-main);
  color: #fff; }

.ldp2_testimonials_slider .swiper-button-prev {
  transform: translateX(-20px); }

.ldp2_testimonials_slider .swiper-button-next {
  transform: translateX(20px); }

.ldp2_testimonials_slider:hover .swiper-button {
  opacity: 1; }

.ldp2_testimonials_slider:hover .swiper-button-prev {
  transform: translateX(20px); }

.ldp2_testimonials_slider:hover .swiper-button-next {
  transform: translateX(-20px); }

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .ldp2_testimonials_card-img {
    height: 200px; }
  .ldp2_testimonials_slider .swiper-button {
    display: none; } }

/* ─── Strength Section ─── */
.section_ldp2_strength {
  background: var(--shop-color-bg); }

.ldp2_strength_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px; }

.ldp2_strength_card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--shop-color-border); }

.ldp2_strength_card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px; }

/* ─── Product Section ─── */
.section_ldp2_product {
  background: #fff; }

.ldp2_product_filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap; }

.ldp2_product_chip {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--shop-color-border);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--shop-color-subtitle);
  transition: all 0.2s; }

.ldp2_product_chip.active {
  background: var(--shop-color-main);
  color: #fff;
  border-color: var(--shop-color-main); }

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

.ldp2_product_card {
  border: 1px solid var(--shop-color-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s; }

.ldp2_product_card:hover {
  transform: translateY(-5px); }

.ldp2_product_card-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative; }

.ldp2_product_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--shop-color-main);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase; }

.ldp2_product_badge--machine {
  background: var(--shop-color-button); }

.ldp2_product_badge--single {
  background: var(--home-flashsale-bg); }

.ldp2_product_content {
  padding: 24px; }

.ldp2_product_title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold; }

.ldp2_product_price {
  color: var(--shop-color-main);
  font-size: 22px;
  font-weight: 900;
  margin-top: 8px;
  margin-bottom: 10px; }

.ldp2_product_desc {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--shop-color-text);
  font-size: 13px;
  margin-bottom: 10px; }
  .ldp2_product_desc li::marker {
    color: var(--shop-color-main); }

/* Product card ẩn khi filter */
.ldp2_product_card {
  display: block; }

/* mặc định block, grid xử lý layout */
.ldp2_product_card.hidden {
  display: none; }

/* Grid tự co theo số card hiển thị */
.ldp2_product_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }

@media (max-width: 900px) {
  .ldp2_product_grid {
    grid-template-columns: repeat(2, 1fr); } }

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

/* Badge màu theo type — dùng data thay vì class cứng */
.ldp2_product_badge {
  background: var(--shop-color-main); }

.ldp2_product_card.collapsed {
  display: none; }

.ldp2_product_loadmore-wrap {
  text-align: center;
  margin-top: 30px; }

.ldp2_product_loadmore-btn {
  padding: 12px 32px;
  border: 2px solid var(--shop-color-main);
  border-radius: 8px;
  background: #fff;
  color: var(--shop-color-main);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s; }

.ldp2_product_loadmore-btn:hover {
  background: var(--shop-color-main);
  color: #fff; }

.ldp2_product_loadmore-btn.hidden {
  display: none; }

.ldp2_product_loadmore-count {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.7; }

/* Lớp phủ màn hình mờ */
.ldp2_product_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 99999;
  /* Đảm bảo luôn nằm trên cùng */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Ẩn mặc định với hiệu ứng mượt */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; }

/* Thêm class 'active' bằng JS để hiển thị */
.ldp2_product_modal_overlay.active {
  opacity: 1;
  visibility: visible; }

.ldp2_product_modal_overlay .modal-content {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh; }

.ldp2_product_modal_overlay img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px; }

.ldp2_product_modal_overlay .modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 35px;
  cursor: pointer; }

/* Thêm con trỏ zoom vào ảnh card */
.ldp2_product_card-img-box {
  cursor: zoom-in; }

/* ─── Process Section ─── */
.section_ldp2_process {
  background: var(--bg-brown);
  text-align: center;
  color: #fff; }

.ldp2_process_subtitle {
  color: #fff;
  opacity: 0.7; }

.ldp2_process_title {
  color: #fff; }

.ldp2_process_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1); }

.ldp2_process_step {
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.ldp2_process_step-num {
  width: 40px;
  height: 40px;
  background: var(--shop-color-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 900; }

/* ─── Event Section ─── */
.ldp2_event_banner {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(" //theme.hstatic.net/200000870851/1001230499/14/ldpage02_sectionProgram_image.webp?v=1466 ") center/cover;
  color: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow); }

.ldp2_event_title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff; }

.ldp2_event_desc {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9; }

.ldp2_event_btn {
  background: var(--shop-color-main);
  padding: 14px 30px;
  font-size: 15px; }

/* ─── Album Section ─── */
.section_ldp2_album {
  background: #fff; }

.ldp2_album_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 30px; }

.ldp2_album_item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden; }

.ldp2_album_item:hover .ldp2_album_overlay {
  opacity: 1; }

.ldp2_album_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  font-size: 12px;
  text-align: center;
  padding: 10px; }

/* ─── Form Section ─── */
.section_ldp2_form {
  background: #FDF6EE; }

.ldp2_form_box {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow); }

.ldp2_form_title {
  color: var(--shop-color-main); }

.ldp2_form_group {
  margin-bottom: 20px;
  text-align: left; }

.ldp2_form_label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px; }

.ldp2_form_control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--shop-color-border);
  border-radius: 8px;
  font-size: 15px; }

.ldp2_form_success {
  display: none;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #e7f7ec;
  color: #1f7a3f; }

.ldp2_form_success.active {
  display: block; }

.ldp2_hidden_iframe {
  display: none; }

.ldp2_form_subtitle {
  text-align: center;
  color: var(--shop-color-subtitle);
  font-size: 16px;
  margin-bottom: 24px; }

.ldp2_form_select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer; }

/* ─── FAQ Section ─── */
.ldp2_faq_wrapper {
  max-width: 800px;
  margin: 0 auto; }

.ldp2_faq_item {
  background: #fff;
  border: 1px solid var(--shop-color-border);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden; }

.ldp2_faq-hidden {
  display: none; }

.ldp2_faq_question {
  padding: 15px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background: #f9f9f9; }

.ldp2_faq_answer {
  padding: 15px 20px;
  display: none;
  border-top: 1px solid var(--shop-color-border);
  font-size: 14px; }

.ldp2_faq_answer.active {
  display: block; }

/* ─── Container & Utilities ─── */
.text-center {
  text-align: center; }

.py-60 {
  padding: 60px 0; }

.py-40 {
  padding: 40px 0; }

.mb-20 {
  margin-bottom: 20px; }

.mt-20 {
  margin-top: 20px; }

/*
   ═══════════════════════════════════════
   RESPONSIVE — Landing Page 02
   Breakpoints: 768px (tablet) , 480px (mobile) ═══════════════════════════════════════
*/
@media (max-width: 768px) {
  /* ─── Utilities ─── */
  .py-60 {
    padding: 20px 0; }
  .main-title {
    font-size: 22px; }
  .sub-title {
    margin-top: 12px;
    margin-bottom: 12px; }
  /* ─── Hero ─── */
  .section_ldp2_hero {
    height: auto; }
  .ldp2_hero_title {
    font-size: 26px; }
  .ldp2_hero_subtitle {
    font-size: 15px;
    margin: 12px 0; }
  .ldp2_hero_btn {
    width: 100%;
    text-align: center; }
  /* ─── Trust ─── */
  .ldp2_trust_grid {
    grid-template-columns: repeat(2, 1fr); }
  .ldp2_trust_item {
    padding: 20px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .ldp2_trust_item:nth-child(2) {
    border-right: none; }
  .ldp2_trust_item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .ldp2_trust_item:nth-child(4) {
    border-right: none; }
  .ldp2_trust_icon {
    font-size: 28px;
    margin-bottom: 8px; }
  /* ─── Comparison ─── */
  .ldp2_comparison_table,
  .ldp2_comparison_table thead,
  .ldp2_comparison_table tbody,
  .ldp2_comparison_table th,
  .ldp2_comparison_table td,
  .ldp2_comparison_table tr {
    display: block;
    /* Phá vỡ cấu trúc table */ }
  .ldp2_comparison_table {
    border: none;
    box-shadow: none;
    background: transparent; }
  .ldp2_comparison_table thead {
    display: none;
    /* Ẩn tiêu đề bảng */ }
  .ldp2_comparison_table tr {
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--shop-color-border);
    display: flex;
    flex-wrap: wrap;
    /* Cho phép rớt dòng */ }
  .ldp2_comparison_table td {
    border: none;
    padding: 5px 0;
    width: 100%;
    /* Mặc định chiếm hết dòng */
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  /* Dòng 1: Tên sản phẩm và Giá */
  .ldp2_comparison_table td:nth-child(1) {
    width: 65%;
    /* Tên chiếm 65% */
    order: 1;
    font-size: 16px; }
  .ldp2_comparison_table td:nth-child(3) {
    width: 35%;
    /* Giá chiếm 35% */
    order: 2;
    text-align: right;
    justify-content: flex-end;
    font-size: 16px; }
  /* Dòng 2 & 3: Hương vị và Phù hợp */
  .ldp2_comparison_table td:nth-child(2),
  .ldp2_comparison_table td:nth-child(4) {
    order: 3;
    padding-top: 4px;
    border-top: 1px dashed #eee;
    margin-top: 5px;
    flex-direction: column;
    /* Nhãn trên, nội dung dưới */
    align-items: flex-start; }
  /* Hiển thị nhãn (label) cho Hương vị và Phù hợp */
  .ldp2_comparison_table td:nth-child(2)::before,
  .ldp2_comparison_table td:nth-child(4)::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #999; }
  /* Bỏ label cho Tên và Giá để nhìn thoáng hơn */
  .ldp2_comparison_table td:nth-child(1)::before,
  .ldp2_comparison_table td:nth-child(3)::before {
    display: none; }
  .ldp2_comparison_cta-btn {
    width: 100%;
    display: block; }
  /* ─── Strength ─── */
  .ldp2_strength_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px; }
  .ldp2_strength_card {
    padding: 12px; }
    .ldp2_strength_card strong {
      font-size: 13px; }
    .ldp2_strength_card p {
      margin-bottom: 0.75rem;
      line-height: 120%;
      font-size: 0.75rem; }
  /* ─── Product ─── */
  .ldp2_product_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; }
  .ldp2_product_content {
    padding: 14px; }
  .ldp2_product_title {
    font-size: 14px; }
  .ldp2_product_price {
    font-size: 17px; }
  .ldp2_product_filter-bar {
    gap: 8px; }
  .ldp2_product_chip {
    padding: 6px 12px;
    font-size: 12px; }
  /* ─── Process ─── */
  .ldp2_process_grid {
    grid-template-columns: repeat(2, 1fr); }
  /* ─── Event ─── */
  .ldp2_event_banner {
    padding: 40px 20px;
    border-radius: 8px; }
  .ldp2_event_title {
    font-size: 20px; }
  .ldp2_event_desc {
    font-size: 14px; }
  .ldp2_event_btn {
    width: 100%;
    padding: 14px; }
  /* ─── Album ─── */
  .ldp2_album_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; }
    .ldp2_album_grid .ldp2_album_item:last-child {
      display: none; }
  /* ─── Form ─── */
  .ldp2_form_box {
    padding: 24px 16px; }
  /* ─── FAQ ─── */
  .ldp2_faq_question {
    font-size: 14px;
    padding: 12px 16px; }
  .ldp2_faq_answer {
    font-size: 13px; } }

@media (max-width: 480px) {
  /* ─── Hero ─── */
  .ldp2_hero_title {
    font-size: 22px; }
  .ldp2_hero_tag-title {
    font-size: 11px; }
  /* ─── Trust ─── */
  .ldp2_trust_item {
    padding: 16px 8px; }
  .ldp2_trust_icon {
    font-size: 24px; }
  /* Giữ 2 cột cho product thay vì 1 cột */
  .ldp2_product_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; }
  /* Thu nhỏ nội dung card cho vừa màn hình nhỏ */
  .ldp2_product_content {
    padding: 10px; }
  .ldp2_product_title {
    font-size: 12px;
    margin-bottom: 4px; }
  .ldp2_product_price {
    font-size: 14px;
    margin: 4px 0 6px; }
  .ldp2_product_desc {
    font-size: 11px;
    margin-bottom: 10px; }
  .ldp2_product_badge {
    font-size: 9px;
    padding: 3px 7px; }
  .btn-light {
    padding: 8px;
    font-size: 11px;
    width: 100%;
    text-align: center;
    display: block; }
  /* ─── Process ─── */
  .ldp2_process_grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 12px; }
  .ldp2_process_step {
    padding: 24px 16px; }
  /* ─── Album ─── */
  .ldp2_album_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; }
    .ldp2_album_grid .ldp2_album_item:last-child {
      display: none; }
  /* ─── Event ─── */
  .ldp2_event_title {
    font-size: 18px; }
  /* ─── Form ─── */
  .ldp2_form_box {
    padding: 20px 14px;
    border-radius: 10px; }
  .ldp2_form_control {
    font-size: 14px; }
  .btn-orange {
    font-size: 14px;
    padding: 14px 20px; } }
