/* ====================================================
   NABY COQUETTE - BOUTIQUE MINIMAL & VINTAGE BANNER
   Bố cục chuẩn theo ảnh 2 (Mandy Crimson style)
   Hero banner ảnh 3 & Nền trắng tinh khôi bên dưới
==================================================== */

:root {
  /* Nền chính theo yêu cầu */
  --bg-page: #FFF8F7;
  --bg-pastel-pink: #FFF8F7;
  --bg-pastel-light: #ffffff;
  --bg-soft: #FFF1F2;
  --bg-white: #ffffff;

  /* Khung/card theo yêu cầu */
  --bg-card: #FFF1F2;
  --bg-card-solid: #FFF1F2;
  --bg-banner-frame: #FFF1F2;
  --border-card: #F0CFD5;
  --border-banner: #F0CFD5;
  --border-pink: #E5B4BE;
  --border-pink-light: #F0CFD5;
  --border-light: rgba(168, 79, 104, 0.14);
  --border-dark: #3a2b2e;

  --fawn-dark: #3a2b2e;
  --fawn-brown: #6b4d54;

  /* Hồng đậm nhấn theo yêu cầu */
  --dusty-rose: #A84F68;
  --dusty-rose-light: #FCE8EC;
  --ribbon-pink: #F8D5DE;
  --price-color: #A84F68;

  /* Hồng chữ phụ theo yêu cầu */
  --text-muted: #9E6575;

  --font-script: 'Pinyon Script', cursive;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: var(--font-sans);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #FFF8F7;
  background-image: 
    radial-gradient(ellipse at 50% 0%, #ffffff 0%, #FFF8F7 50%, #FEECEB 100%),
    radial-gradient(circle at 15% 40%, rgba(255, 241, 242, 0.8) 0%, transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(254, 235, 238, 0.8) 0%, transparent 60%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  background-attachment: fixed;
  color: var(--fawn-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Hoạ tiết hoa nhí vintage trên trang About */
body.page-about {
  background-image: 
    url('../assets/elements/coquette_floral_pattern_tile.png'),
    radial-gradient(ellipse at 50% 0%, #ffffff 0%, #FFF8F7 50%, #FEECEB 100%),
    radial-gradient(circle at 15% 40%, rgba(255, 241, 242, 0.8) 0%, transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(254, 235, 238, 0.8) 0%, transparent 60%);
  background-repeat: 
    repeat,
    no-repeat,
    no-repeat,
    no-repeat;
  background-position: 
    center top,
    center top,
    center top,
    center top;
  background-size: 
    360px 360px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-attachment: 
    fixed,
    fixed,
    fixed,
    fixed;
}

@media (max-width: 768px) {
  body.page-about {
    background-size: 
      260px 260px,
      100% 100%,
      100% 100%,
      100% 100%;
    background-attachment: 
      scroll,
      fixed,
      fixed,
      fixed;
  }
}

/* Khoảng cách tinh tế cho header trang Góc Naby & Đơn của bạn đồng bộ với Tủ đồ */
.page-favorites .catalog-header,
.page-orders .catalog-header {
  margin-top: 36px;
  margin-bottom: 22px;
}

/* Hoa trang trí tiêu đề Góc Naby - rõ nét & nổi bật */
.favorites-header-rose {
  width: 82px;
  max-width: 24vw;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(168, 79, 104, 0.22));
  transition: transform 0.35s ease;
  user-select: none;
}
.favorites-header-rose:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Dòng tiêu đề phụ dịu dàng dưới Góc Naby Yêu Thích - chuẩn font thanh lịch */
.favorites-header-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  color: #7a4e59;
  font-style: normal;
  font-weight: 500;
  max-width: 620px;
  margin: 10px auto 0;
  line-height: 1.6;
  padding: 0 16px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Bộ lọc danh mục Góc Naby (Tất cả / Quần áo / Mỹ phẩm) */
.fav-filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 26px auto;
  padding: 0 15px;
}

.fav-filter-pills {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 246, 248, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #f2c7d1;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.08);
}

.fav-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #7d4d5a;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.fav-filter-pill:hover {
  background: rgba(255, 235, 240, 0.95);
  color: var(--dusty-rose);
  transform: translateY(-1px);
}

.fav-filter-pill.active {
  background: linear-gradient(135deg, #A84F68 0%, #C85C74 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(168, 79, 104, 0.3);
  transform: translateY(-1px);
}

.fav-filter-pill .pill-icon {
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 540px) {
  .fav-filter-container {
    padding: 0 12px;
    margin: 6px auto 20px auto;
    width: 100%;
  }
  .fav-filter-pills {
    display: flex;
    width: 100%;
    max-width: 420px;
    gap: 4px;
    padding: 4px 6px;
    justify-content: space-between;
    overflow: hidden;
  }
  .fav-filter-pill {
    flex: 1 1 0;
    padding: 6px 2px;
    font-size: 0.76rem;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
    letter-spacing: -0.2px;
  }
  .fav-filter-pill .pill-icon {
    font-size: 0.88rem;
  }
}


/* ====================================================
   SKELETON LOADING — Hiệu ứng shimmer khi đang tải dữ liệu
==================================================== */
@keyframes skeleton-shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.skeleton-card {
  pointer-events: none;
  cursor: default;
}

.skeleton-card .skeleton-img {
  background: linear-gradient(90deg, #f0e5e9 25%, #fce8ec 50%, #f0e5e9 75%);
  background-size: 200px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  aspect-ratio: 4/5;
  border-radius: 14px 14px 0 0;
}

.skeleton-card .skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0e5e9 25%, #fce8ec 50%, #f0e5e9 75%);
  background-size: 200px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  margin: 8px 0;
  width: 80%;
}

.skeleton-card .skeleton-line.short {
  width: 50%;
}

/* ====================================================
   1. THANH ĐIỀU HƯỚNG TRÊN CÙNG (STICKY NAVBAR MỜ TRONG SUỐT)
==================================================== */
.top-navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo bên trái */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fawn-dark);
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-card);
  box-shadow: 0 3px 10px rgba(168, 79, 104, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.brand-logo:hover .brand-logo-img {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 5px 14px rgba(168, 79, 104, 0.2);
}
.brand-name {
  font-family: var(--font-script);
  font-size: 2.35rem;
  font-weight: 500;
  color: var(--dusty-rose);
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.brand-logo:hover .brand-name {
  color: #8e3e54;
}

/* Các nút điều hướng chính: About us, Tủ đồ Naby, Đơn của bạn */
.nav-links-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: var(--fawn-dark);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 4px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dusty-rose);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--dusty-rose);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nút giỏ hàng "Đơn của bạn" */
.cart-trigger-link {
  font-weight: 600;
}
.cart-badge-pill {
  background: var(--dusty-rose);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

/* Nút phụ bên phải: Ngôn ngữ & Instagram */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Nút chuyển đổi ngôn ngữ cờ nước */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1.2px solid var(--border-card);
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(168, 79, 104, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
}
.lang-toggle-btn:hover {
  transform: scale(1.1) translateY(-1px);
  border-color: var(--dusty-rose);
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.16);
}
.lang-toggle-btn.switching {
  animation: flagPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes flagPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.22) rotate(12deg); }
  100% { transform: scale(1); }
}
.lang-flag-svg {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.ig-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  color: var(--fawn-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
  background: var(--bg-card);
}
.ig-pill-btn:hover {
  border-color: var(--dusty-rose);
  color: var(--dusty-rose);
  background: var(--dusty-rose-light);
}

/* Nút 3 sọc ngang menu (Hamburger) - Mặc định ẩn trên Desktop */
.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.2px solid var(--border-card);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(168, 79, 104, 0.08);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mobile-menu-btn .hamburger-line {
  display: block;
  width: 17px;
  height: 2px;
  background-color: var(--fawn-dark);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.25s ease;
}
.mobile-menu-btn.is-active {
  border-color: var(--dusty-rose);
  background: #FFF1F2;
}
.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--dusty-rose);
}
.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0.2);
}
.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--dusty-rose);
}
.mobile-menu-footer {
  display: none;
}

/* ====================================================
   2. HERO BANNER (ẢNH 3 - BỨC TRANH TOÀN CẢNH NABY)
   Tự động fit và zoom ra vào mượt mà theo kích thước Desktop
==================================================== */
.hero-banner-section {
  width: 100%;
  background: var(--bg-pastel-pink);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  display: block;
}

.hero-banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hiển thị tràn viền 100%, tự động co giãn/zoom theo kích thước màn hình */
.hero-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  filter: contrast(1.02);
}

/* ====================================================
   3. PHẦN TỦ ĐỒ NABY (NỀN HOA NHÍ VINTAGE TỪ DẢI RUY BĂNG TRỞ XUỐNG)
==================================================== */
main,
.main-content-white {
  flex: 1 0 auto;
  background-color: transparent;
  padding: 0 0 80px;
}

.wardrobe-page-main {
  background-image: url('../assets/elements/coquette_floral_pattern_tile.png');
  background-repeat: repeat;
  background-position: center top;
  background-size: 360px 360px;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .wardrobe-page-main {
    background-size: 260px 260px;
    background-attachment: scroll;
  }
}

.content-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Tiêu đề mục Tủ đồ "Naby Coquette Collection" */
.catalog-header {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 22px;
}
.wardrobe-script-tag {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5.5vw, 3.4rem);
  color: var(--dusty-rose);
  display: block;
  line-height: 1.18;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(168, 79, 104, 0.06);
}
.catalog-title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fawn-dark);
  letter-spacing: -0.02em;
}
.catalog-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: var(--font-sans);
  font-weight: 400;
}

/* ==========================================================================
   BỘ LỌC & TÌM KIẾM SẢN PHẨM COQUETTE (WARDROBE SEARCH & FILTER)
   ========================================================================== */
.catalog-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 10px auto 26px auto;
  max-width: 600px;
  width: 100%;
  padding: 0 16px;
}

.catalog-search-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
}

.catalog-search-wrap .search-icon-pink {
  position: absolute;
  left: 15px;
  color: var(--dusty-rose, #a84f68);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}

.catalog-search-input {
  width: 100%;
  padding: 10px 38px 10px 38px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--fawn-dark, #4a2c2c);
  background: #ffffff;
  border: 1.5px solid #f2cdd6;
  border-radius: 999px;
  outline: none;
  box-shadow: 0 2px 10px rgba(168, 79, 104, 0.05);
  transition: all 0.25s ease;
}

.catalog-search-input::placeholder {
  color: #ba8c98;
  font-style: italic;
  font-size: 0.88rem;
}

.catalog-search-input:focus {
  border-color: var(--dusty-rose, #a84f68);
  box-shadow: 0 0 0 3px rgba(216, 138, 158, 0.18), 0 3px 12px rgba(168, 79, 104, 0.08);
  background: #fffdfd;
}

.catalog-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #b58290;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-search-clear:hover {
  color: var(--dusty-rose, #a84f68);
  background: rgba(216, 138, 158, 0.15);
}

.catalog-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.catalog-tag {
  background: #ffffff;
  color: var(--fawn-brown, #6e5450);
  border: 1px solid #ebd0d7;
  padding: 6px 15px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(168, 79, 104, 0.04);
}

.catalog-tag:hover {
  border-color: var(--dusty-rose, #a84f68);
  color: var(--dusty-rose, #a84f68);
  transform: translateY(-1px);
}

.catalog-tag.active {
  background: var(--dusty-rose, #a84f68);
  border-color: var(--dusty-rose, #a84f68);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(168, 79, 104, 0.22);
}

.catalog-results-info {
  min-height: 16px;
  text-align: center;
}

.catalog-count-text {
  font-size: 0.82rem;
  color: #9d707c;
  font-style: italic;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

/* ====================================================
   4. LƯỚI SẢN PHẨM & CARD (HIỆU ỨNG CHUẨN ẢNH MẪU)
==================================================== */
.products-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
  margin-bottom: 70px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-card, #F7DDE2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.06);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(168, 79, 104, 0.15);
  border-color: #EBB6C2;
}

/* Khung ảnh sản phẩm */
.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: #fdfaf8;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image {
  transform: scale(1.04);
}

/* Hiệu ứng chấm nhỏ pastel dịu dàng phủ lên ảnh trong card (tự động áp dụng mọi ảnh) */
.card-dots-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../assets/elements/pastel_dots_overlay.svg');
  background-size: 320px 320px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.product-card:hover .card-dots-overlay {
  opacity: 0.85;
  transform: scale(1.02);
}

/* Nhãn trạng thái góc trái trên */
.card-status-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--fawn-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  z-index: 2;
  font-family: var(--font-sans);
}
.card-status-badge.sold-out {
  background: rgba(45, 35, 30, 0.85);
  color: #ffffff;
}

/* Sticker/Badge nhỏ góc phải trên chuẩn ảnh mẫu */
.card-top-deco-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px dashed #D6A4B0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-rose);
  box-shadow: 0 2px 6px rgba(168, 79, 104, 0.12);
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: transform 0.3s ease;
}
.product-card:hover .card-top-deco-badge {
  transform: rotate(25deg) scale(1.1);
}

/* Phần thông tin chữ của card: CHỈ ĐỂ TÊN + GIÁ theo đúng yêu cầu */
.product-info-wrap {
  position: relative;
  padding: 12px 14px 14px 14px;
  background: #FFF1F2;
  /* Họa tiết sọc dọc pastel mờ ảo thanh lịch chuẩn style web */
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65) 0px,
    rgba(255, 255, 255, 0.65) 12px,
    rgba(255, 241, 242, 0.95) 12px,
    rgba(255, 241, 242, 0.95) 24px
  );
  border-top: 1px solid rgba(247, 221, 226, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68px;
  overflow: hidden;
}
.product-card-name {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--fawn-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-price {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dusty-rose);
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

/* Nút CTA Mua ngay dưới cùng của Card */
.btn-card-buy-now {
  width: 100%;
  background: #ffffff;
  color: var(--dusty-rose);
  border: 1px solid #F3CAD2;
  border-radius: 18px;
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.22s ease;
  box-shadow: 0 2px 6px rgba(168, 79, 104, 0.06);
  position: relative;
  z-index: 2;
  text-decoration: none;
}
.btn-card-buy-now:hover {
  background: var(--dusty-rose);
  color: #ffffff;
  border-color: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.25);
}
.btn-buy-icon {
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 0.22s ease;
}
.btn-card-buy-now:hover .btn-buy-icon {
  transform: scale(1.25);
}

/* Chèn ảnh nai và thỏ size nhỏ và giảm opacity xuống theo đúng yêu cầu */
.card-mascot-watermark {
  position: absolute;
  bottom: 38px;
  right: 8px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  opacity: 0.22; /* Giảm opacity theo yêu cầu */
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-card:hover .card-mascot-watermark {
  opacity: 0.45;
  transform: translateY(-2px);
}
.mascot-mini-fawn {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(168, 79, 104, 0.08));
}
.mascot-mini-bunny {
  width: 22px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(168, 79, 104, 0.08));
}

/* ====================================================
   NÚT XEM THÊM ĐỒ XINH (CHỈ HIỆN 8 CARD BAN ĐẦU)
==================================================== */
.load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 55px;
}
.btn-load-more {
  background: #FFF1F2;
  color: var(--dusty-rose);
  border: 1.5px solid var(--dusty-rose);
  border-radius: 30px;
  padding: 12px 34px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-load-more:hover {
  background: var(--dusty-rose);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(168, 79, 104, 0.25);
}
.btn-load-more:active {
  transform: translateY(-1px);
}
.load-more-count {
  font-size: 0.86rem;
  opacity: 0.85;
}

/* ====================================================
   HƯỚNG DẪN ĐẶT HÀNG (ĐỒNG BỘ LAYOUT & MÀU SẮC TRANG ABOUT US)
==================================================== */
.order-guide-section {
  margin: 30px 0 75px;
  position: relative;
}

.order-guide-box {
  /* consign-box styles apply here */
}

.order-guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 35px;
}


/* Chi tiết thông số món đồ trong Modal */
.modal-specs-box {
  background: #FFF1F2;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.modal-spec-row {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--fawn-brown);
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.modal-spec-row:not(:last-child) {
  margin-bottom: 4px;
}
.modal-spec-row .spec-bullet {
  color: var(--dusty-rose);
  font-size: 0.8rem;
}

/* ====================================================
   POPUP MODAL CHI TIẾT SẢN PHẨM (CHUẨN ẢNH 2)
==================================================== */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(50, 25, 32, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.product-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  padding: 16px;
  box-shadow: 0 25px 60px rgba(168, 79, 104, 0.25);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-modal-backdrop.show .product-modal-card {
  transform: scale(1) translateY(0);
}

/* Nút X đóng popup */
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4eaec;
  color: #554446;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.modal-close-btn:hover {
  background: #e8d7db;
  color: var(--dusty-rose);
  transform: rotate(90deg);
}

/* Khung ảnh chính trong popup */
.modal-gallery-stage {
  position: relative;
  width: 100%;
  height: 440px;
  background: #fdfaf8;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.modal-main-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

/* Mũi tên qua lại */
.modal-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a2e29;
  z-index: 10;
  transition: all 0.2s ease;
}
.modal-arrow-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.modal-arrow-prev {
  left: 12px;
}
.modal-arrow-next {
  right: 12px;
}

/* Thanh Zoom Pill giữa ảnh */
.modal-zoom-controls {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 20, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  z-index: 10;
}
.modal-zoom-action {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.modal-zoom-action:hover {
  opacity: 1;
  transform: scale(1.15);
}
.modal-zoom-val {
  font-size: 11px;
  font-weight: 600;
  min-width: 34px;
  text-align: center;
}

/* Đếm số ảnh 3 / 3 */
.modal-image-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(30, 20, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  z-index: 10;
}

/* Chi tiết sản phẩm trong modal */
.modal-body-content {
  padding: 14px 6px 4px 6px;
}
.modal-brand-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dusty-rose);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.modal-title-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.modal-prod-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #2d2424;
  margin: 0;
}
.modal-prod-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dusty-rose);
  white-space: nowrap;
}

/* Khung 1 ô duy nhất: Liên hệ Naby (theo yêu cầu) */
.modal-contact-box {
  background: #ffffff;
  border: 1px solid #f2e3e6;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.04);
}
.modal-contact-hint {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #766a67;
  margin-bottom: 10px;
  text-align: center;
}
.btn-contact-naby {
  width: 100%;
  background: var(--dusty-rose, #A84F68);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(168, 79, 104, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-contact-naby:hover {
  background: #903c53;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(168, 79, 104, 0.35);
}

/* Dải Thumbnail phía dưới */
.modal-thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.modal-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}
.modal-thumb:hover {
  opacity: 1;
}
.modal-thumb.active {
  border-color: var(--dusty-rose);
  opacity: 1;
  transform: scale(1.05);
}

/* ====================================================
   5. PHẦN GIỚI THIỆU ABOUT US (TRÊN NỀN TRẮNG)
==================================================== */
.about-us-section {
  border-top: 1px solid var(--border-card);
  padding: 70px 0 20px;
  margin-top: 40px;
}
.about-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.about-card-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}
.about-image-frame {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(168, 79, 104, 0.12);
  border: 1.5px solid var(--border-card);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(168, 79, 104, 0.18);
}
.about-content {
  flex: 1;
}
.about-content h2,
.about-content h3 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.about-script {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--dusty-rose);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-content p {
  color: var(--fawn-brown);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-content p:last-child {
  margin-bottom: 0;
}
.about-sign-off {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--dusty-rose);
  margin-top: 10px;
  line-height: 1.2;
}
.about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.highlight-item {
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fawn-dark);
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.05);
}

/* ====================================================
   6. NGĂN KÉO GIỎ HÀNG (CART DRAWER)
==================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2000;
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #FFF1F2;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2100;
  border-left: 1px solid var(--border-card);
}
.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fawn-dark);
}
.btn-close-cart {
  background: none;
  border: 1px solid var(--border-card);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
}
.btn-close-cart:hover {
  background: var(--bg-soft);
  color: var(--fawn-dark);
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 25px;
}
.cart-item-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-thumbnail {
  width: 65px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.cart-item-info {
  flex-grow: 1;
}
.cart-item-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fawn-dark);
  margin-bottom: 4px;
}
.cart-item-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cart-item-cost {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dusty-rose);
}
.btn-remove-item {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}
.btn-remove-item:hover {
  color: var(--dusty-rose);
}

.cart-footer {
  padding: 22px 25px;
  border-top: 1px solid var(--border-card);
  background: #FFF8F7;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}
.cart-subtotal-amount {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dusty-rose);
}
.cart-note-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
  font-family: var(--font-sans);
}
.btn-checkout-ig {
  width: 100%;
  background: var(--dusty-rose);
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: var(--font-sans);
}
.btn-checkout-ig:hover {
  background: #8e3e54;
}

/* ====================================================
   7. FOOTER CHÂN TRANG (VINTAGE COQUETTE AESTHETIC - THEO STYLE BANNER NABY)
   Nền pastel ấm áp, viền ren tinh tế, linh vật chìm nhẹ nhàng
==================================================== */
.site-footer {
  margin-top: auto;
  width: 100%;
  position: relative;
  background-color: #F7E9DE;
  background-image: url('../assets/elements/footer_vintage_parchment.webp');
  background-image: -webkit-image-set(
    url('../assets/elements/footer_vintage_parchment.webp') 1x,
    url('../assets/elements/footer_vintage_parchment.png') 1x
  );
  background-image: image-set(
    url('../assets/elements/footer_vintage_parchment.webp') type('image/webp'),
    url('../assets/elements/footer_vintage_parchment.png') type('image/png')
  );
  background-repeat: repeat;
  background-size: 856px auto;
  background-position: center top;
  border-top: 1px solid #E2CEC4;
  padding: 32px 20px 22px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(168, 79, 104, 0.04);
}

/* Dải viền ren vintage chạy ngang mép trên của footer chuẩn phong cách banner */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: url('../assets/elements/lace_trim.png');
  background-repeat: repeat-x;
  background-size: auto 10px;
  opacity: 0.55;
  pointer-events: none;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* 1. Brand Logo & Tên Shop */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.footer-brand-logo-link:hover {
  transform: translateY(-2px);
}
.footer-brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-card);
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.12);
}
.footer-brand-name {
  font-family: var(--font-script);
  font-size: 2.7rem;
  color: var(--dusty-rose);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(168, 79, 104, 0.08);
  transition: color 0.2s ease;
}
.footer-brand-logo-link:hover .footer-brand-name {
  color: #8e3e54;
}

/* 2. Menu Links dàn ngang */
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.footer-nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fawn-dark);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}
.footer-nav-link:hover {
  color: var(--dusty-rose);
  transform: translateY(-1px);
}

/* 3. Dãy icon mạng xã hội: CHỈ GIỮ INSTAGRAM THEO ĐÚNG YÊU CẦU */
.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--dusty-rose);
  border: 1px solid #F3CAD2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 2px 8px rgba(168, 79, 104, 0.08);
}
.footer-social-circle svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.footer-social-circle:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--dusty-rose);
  color: #FFFFFF;
  border-color: var(--dusty-rose);
  box-shadow: 0 6px 16px rgba(196, 109, 130, 0.25);
}

/* Nút Pill Instagram dạng viên thuốc */
.footer-social-pill {
  height: 42px;
  padding: 0 24px;
  border-radius: 21px;
  border: 1px solid #F3CAD2;
  background: #FFFFFF;
  color: var(--dusty-rose);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(168, 79, 104, 0.08);
  transition: all 0.22s ease;
}
.footer-social-pill:hover {
  background: var(--dusty-rose);
  color: #FFFFFF;
  border-color: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 109, 130, 0.25);
}

/* 4. Dòng Copyright */
.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 26px 16px 20px;
    background-size: 520px auto;
  }
  .footer-container {
    gap: 14px;
  }
  .footer-brand-name {
    font-size: 2.2rem;
  }
  .footer-nav-row {
    gap: 14px 20px;
  }
  .footer-nav-link {
    font-size: 0.88rem;
  }
  .footer-social-circle {
    width: 38px;
    height: 38px;
  }
  .footer-social-circle svg {
    width: 17px;
    height: 17px;
  }
  .footer-social-pill {
    height: 38px;
    padding: 0 18px;
    font-size: 0.84rem;
  }
  .footer-copyright {
    font-size: 0.78rem;
  }
}

/* ====================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATION
   Tối ưu hoá toàn diện cho trải nghiệm trên Điện Thoại
==================================================== */

@media (max-width: 1024px) {
  .products-grid-4col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

@media (max-width: 992px) {
  .about-card-box {
    flex-direction: column;
    padding: 35px 25px;
    gap: 25px;
    text-align: center;
  }
  .about-image-frame {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .about-img {
    width: 180px;
    height: 180px;
  }
}

/* ====================================================
   TRANG ABOUT US & TRANG ORDERS CHUYÊN BIỆT
==================================================== */

/* Header cho About */
.about-hero-header {
  background: rgba(255, 241, 242, 0.45);
  padding: 60px 20px 50px;
  text-align: center;
  border-bottom: 1px solid var(--border-card);
  position: relative;
}

/* Header cho Orders & Favorites (phía dưới có dải ruy băng ren thay thế viền line) */
.orders-hero-header {
  background: rgba(255, 241, 242, 0.45);
  padding: 48px 20px 24px;
  text-align: center;
  border-bottom: none;
  position: relative;
}

.about-hero-deco-bow {
  margin-bottom: 14px;
}
.about-hero-deco-bow img {
  width: 32px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(166, 88, 104, 0.2));
}

.about-subtitle-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--dusty-rose);
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}

.about-main-title {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fawn-dark);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-intro-p {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section Linh vật (Mascot Story) */
.mascot-story-section {
  margin: 50px 0;
}

.mascot-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.mascot-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}

.mascot-visual {
  flex: 0 0 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.mascot-img-fawn {
  width: 175px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(58, 46, 41, 0.1));
  transition: transform 0.3s ease;
}
.mascot-img-fawn:hover {
  transform: translateY(-4px) scale(1.02);
}

.mascot-img-bunny {
  width: 125px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(58, 46, 41, 0.08));
  transition: transform 0.3s ease;
}
.mascot-img-bunny:hover {
  transform: translateY(-4px) scale(1.03);
}

.mascot-text {
  flex: 1;
}
.mascot-text h3 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.mascot-text p {
  font-family: var(--font-sans);
  color: var(--fawn-brown);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.mascot-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   STANDARD ROUNDABOUT 3D CAROUSEL (TIÊU CHUẨN ĐỒ TẠI NABY - CHUẨN ẢNH 2)
   3 Cards: Center (Active, nổi bật) - Left (thu nhỏ) - Right (thu nhỏ)
   ========================================================================== */
.standards-section {
  margin: 50px 0;
}

.standards-carousel-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 15px auto 25px auto;
  padding: 10px 0 20px 0;
  overflow: hidden;
}

.standards-roundabout-stage {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.standards-roundabout-stage .standard-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  max-width: 74vw;
  height: 220px;
  background: #FFF1F2;
  border: 1.5px solid var(--border-card);
  border-radius: 20px;
  padding: 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(168, 79, 104, 0.08);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s ease,
              box-shadow 0.5s ease,
              border-color 0.5s ease;
  user-select: none;
  box-sizing: border-box;
}

/* Card ở Giữa (Active): To, nổi bật, sắc nét, bóng đổ sang trọng */
.standards-roundabout-stage .standard-card.roundabout-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 16px 36px rgba(168, 79, 104, 0.18);
  border-color: #E5B4BE;
  pointer-events: auto;
}

/* Card Bên Trái: Thu nhỏ, lệch sang trái, mờ nhẹ */
.standards-roundabout-stage .standard-card.roundabout-left {
  transform: translate(calc(-50% - 130px), -50%) scale(0.82);
  opacity: 0.45;
  z-index: 5;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.06);
}

/* Card Bên Phải: Thu nhỏ, lệch sang phải, mờ nhẹ */
.standards-roundabout-stage .standard-card.roundabout-right {
  transform: translate(calc(-50% + 130px), -50%) scale(0.82);
  opacity: 0.45;
  z-index: 5;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(168, 79, 104, 0.06);
}

.standards-roundabout-stage .standard-card.roundabout-left:hover,
.standards-roundabout-stage .standard-card.roundabout-right:hover {
  opacity: 0.72;
}

/* Nút bấm & Dots chỉ số */
.standards-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.std-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.2px solid var(--border-card);
  background: #ffffff;
  color: var(--dusty-rose);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(168, 79, 104, 0.1);
  transition: all 0.2s ease;
}

.std-nav-btn:active {
  transform: scale(0.92);
  background: #FFF1F2;
}

.standards-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.std-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0c9d2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.std-dot.active {
  width: 24px;
  border-radius: 12px;
  background: var(--dusty-rose);
}
.standard-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.standard-card h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 8px;
}
.standard-card p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section Ký gửi & Pass đồ */
.consign-guide-section {
  margin: 60px 0 30px;
}
.consign-box {
  background: #FFF1F2;
  border: 2px dashed #A84F68;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.consign-box:hover {
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}

/* Họa tiết nai & thỏ phân bổ ngẫu nhiên duyên dáng trong khung (không dồn 4 góc) */
.random-mascots-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.random-mascot {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  filter: drop-shadow(0 3px 6px rgba(168, 79, 104, 0.08));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.consign-box:hover .random-mascot {
  opacity: 0.38;
}

/* Các vị trí ngẫu nhiên không đối xứng, rải đều khắp mặt phẳng khung */
.random-mascot.m-1 {
  top: 12%;
  left: 6%;
  width: 48px;
  transform: rotate(-14deg);
}

.random-mascot.m-2 {
  top: 6%;
  left: 33%;
  width: 38px;
  transform: rotate(18deg);
}

.random-mascot.m-3 {
  top: 16%;
  right: 18%;
  width: 44px;
  transform: rotate(-10deg);
}

.random-mascot.m-4 {
  top: 48%;
  left: 3%;
  width: 36px;
  transform: rotate(20deg);
}

.random-mascot.m-5 {
  top: 44%;
  right: 4%;
  width: 46px;
  transform: rotate(-16deg);
}

.random-mascot.m-6 {
  bottom: 12%;
  left: 17%;
  width: 40px;
  transform: rotate(14deg);
}

.random-mascot.m-7 {
  bottom: 8%;
  left: 53%;
  width: 48px;
  transform: rotate(-8deg);
}

.random-mascot.m-8 {
  bottom: 14%;
  right: 20%;
  width: 38px;
  transform: rotate(12deg);
}

.consign-box .about-script,
.consign-box h3,
.consign-box .consign-desc,
.consign-box .order-guide-steps,
.consign-box .consign-steps,
.consign-box .consign-cta {
  position: relative;
  z-index: 1;
}
.consign-box h3 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 12px;
}
.consign-desc {
  font-family: var(--font-sans);
  color: var(--fawn-brown);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.consign-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.consign-step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  backdrop-filter: blur(4px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.consign-step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(168, 79, 104, 0.13);
  border-color: #E5B4BE;
}
.step-num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dusty-rose);
  margin-bottom: 8px;
}
.consign-step-item h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fawn-dark);
  margin-bottom: 6px;
}
.consign-step-item p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.consign-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary-coquette {
  background: var(--dusty-rose);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary-coquette:hover {
  background: #8e4554;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166, 88, 104, 0.3);
}
.btn-secondary-coquette {
  background: var(--bg-card);
  color: var(--fawn-dark);
  border: 1px solid var(--border-dark);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-secondary-coquette:hover {
  background: var(--fawn-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ====================================================
   TRANG ĐƠN CỦA BẠN (ORDERS.HTML)
==================================================== */
.orders-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 35px;
  align-items: start;
  margin: 20px 0 40px;
}

.orders-card-box {
  background: #FFF1F2;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.orders-card-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}
.orders-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 20px;
}
.orders-card-header h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fawn-dark);
}
.btn-clear-all-orders {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-sans);
}
.btn-clear-all-orders:hover {
  color: var(--dusty-rose);
}

.orders-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.order-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.order-item-thumb {
  width: 85px;
  height: 105px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}
.order-item-detail {
  flex: 1;
}
.order-item-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fawn-dark);
  margin-bottom: 4px;
}
.order-item-specs {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.order-item-price-val {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--dusty-rose);
  font-size: 1.05rem;
}
.btn-remove-item {
  background: transparent;
  border: none;
  color: #c9939f;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}
.btn-remove-item:hover {
  color: var(--dusty-rose);
  background: #fdf2f4;
}

/* Khung Summary bên phải */
.orders-summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 24px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.orders-summary-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}
.orders-summary-box h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 20px;
}
.customer-form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fawn-dark);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--fawn-dark);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--dusty-rose);
}
.summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 18px 0;
}
.summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--fawn-dark);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.summary-total-price {
  font-size: 1.4rem;
  font-family: var(--font-sans);
  color: var(--dusty-rose);
  font-weight: 700;
}
.order-direct-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--dusty-rose);
}
.btn-checkout-page {
  width: 100%;
  background: var(--dusty-rose);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(166, 88, 104, 0.3);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.btn-checkout-page:hover {
  background: #8e4554;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(166, 88, 104, 0.4);
}
.btn-continue-shopping {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-sans);
}
.btn-continue-shopping:hover {
  color: var(--fawn-dark);
}

/* Empty State */
.orders-empty-state {
  text-align: center;
  padding: 60px 20px 80px;
}
.empty-state-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(168, 79, 104, 0.07), 0 1px 3px rgba(58, 46, 41, 0.03);
  max-width: 520px;
  margin: 0 auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.empty-state-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(168, 79, 104, 0.12);
}
.empty-mascot-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 20px;
}
.empty-fawn-img {
  width: 135px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(58, 46, 41, 0.1));
}
.empty-bunny-img {
  width: 95px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(58, 46, 41, 0.1));
}
.empty-state-box h2 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin: 8px 0 12px;
}
.empty-state-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgba(58, 46, 41, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-link {
  color: var(--ribbon-pink);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-left: 6px;
}
.toast-link:hover {
  text-decoration: underline;
}

/* Responsive cho trang About & Orders */
@media (max-width: 900px) {
  .orders-layout {
    grid-template-columns: 1fr;
  }
  .mascot-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .mascot-visual {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    justify-content: center;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .about-main-title {
    font-size: 1.85rem;
  }
}

/* Tinh chỉnh tiêu đề trang About & Tủ đồ */
.about-page-title-wrap {
  text-align: center;
  padding: 40px 20px 35px;
}

/* Trang trí nơ hồng coquette trên đầu Tủ đồ (thay hoa theo yêu cầu) */
.catalog-header-bow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.catalog-bow-motif {
  width: 110px;
  max-width: 32vw;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(168, 79, 104, 0.15));
  transition: transform 0.35s ease;
  user-select: none;
}
.catalog-bow-motif:hover {
  transform: translateY(-3px) scale(1.04);
}

/* Dải ruy băng ren kéo dài full màn hình (100vw) bên dưới header và trên các card */
.lace-ribbon-divider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 58px;
  background-image: url('../assets/elements/lace_ribbon_divider_transparent.png');
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 58px;
  pointer-events: none;
  z-index: 3;
  margin-top: 10px;
  margin-bottom: 32px;
}

/* ====================================================
   DẢI LINH VẬT NAI & THỎ CHẠY NGANG KHÔNG NỀN (MARQUEE)
   Full thỏ và nai liên tục phủ kín màn hình, không khoảng trống
   Chuyển động từ trái sang phải, lặp vô tận
==================================================== */
.mascot-marquee-divider {
  width: 100%;
  max-width: 100vw;
  background: transparent;
  overflow: hidden;
  position: relative;
  padding: 6px 0 4px;
  user-select: none;
  pointer-events: none;
  border: none;
}

.mascot-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mascot-marquee-scroll 65s linear infinite;
}

.mascot-marquee-group {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.mascot-parade-item {
  display: inline-flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.parade-fawn {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(58, 46, 41, 0.08));
}

.parade-bunny {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(58, 46, 41, 0.08));
}

/* Hiệu ứng bước đi & nhún nhảy nhẹ nhàng của bé nai và thỏ */
.deer-bob {
  animation: mascot-walk-bob 1.4s ease-in-out infinite alternate;
}
.bunny-hop {
  animation: mascot-bunny-hop 0.95s cubic-bezier(0.28, 0.84, 0.42, 1) infinite alternate;
}
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.55s;
}

/* Chuyển động liên tục từ trái sang phải, lặp vô tận không vết nối */
@keyframes mascot-marquee-scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes mascot-walk-bob {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0) rotate(-1deg);
  }
}

@keyframes mascot-bunny-hop {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(0.98, 1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .mascot-marquee-divider {
    padding: 5px 0 3px;
  }
  .mascot-marquee-track {
    animation-duration: 48s;
  }
  .mascot-marquee-group {
    gap: 16px;
    padding-right: 16px;
  }
  .parade-fawn {
    height: 32px;
  }
  .parade-bunny {
    height: 24px;
  }
}

/* ====================================================
   TRANG ĐƠN CỦA BẠN (ORDERS.HTML) — COQUETTE AESTHETIC REDESIGN
   Thiết kế cao cấp, hài hoà chuẩn tone About Us & Tủ đồ Naby
==================================================== */

.order-lookup-section {
  max-width: 860px;
  margin: 10px auto 60px;
}

/* 1. KHUNG TÌM KIẾM CHÍNH (LOOKUP BOX V2) */
.order-lookup-box-v2 {
  background: var(--bg-card);
  border: 1.5px dashed var(--border-card);
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 8px 30px rgba(168, 79, 104, 0.08), 0 2px 6px rgba(58, 46, 41, 0.03);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-lookup-box-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(168, 79, 104, 0.13);
}

/* Mascot trang trí 2 góc mờ nhẹ */
.lookup-mascots-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}

.lookup-fawn-deco {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 68px;
  height: auto;
  transform: rotate(-10deg);
}

.lookup-bunny-deco {
  position: absolute;
  bottom: 16px;
  right: 22px;
  width: 58px;
  height: auto;
  transform: rotate(8deg);
}

.lookup-inner-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.lookup-title {
  font-family: var(--font-sans);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin: 4px 0 10px;
  letter-spacing: -0.3px;
}

.lookup-subtitle {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Thanh tìm kiếm Coquette */
.lookup-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: 50px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 4px 18px rgba(168, 79, 104, 0.08);
  transition: all 0.25s ease;
  max-width: 520px;
  margin: 0 auto 16px;
}

.lookup-search-bar:focus-within {
  border-color: var(--dusty-rose);
  box-shadow: 0 6px 24px rgba(168, 79, 104, 0.18);
  transform: translateY(-1px);
}

.lookup-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.input-ig-prefix {
  color: var(--dusty-rose);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  user-select: none;
}

.lookup-input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--fawn-dark);
  padding: 8px 6px;
}

.lookup-input::placeholder {
  color: #cbb4ba;
  font-weight: 400;
}

.btn-lookup-submit {
  background: var(--dusty-rose);
  color: #ffffff;
  border: none;
  border-radius: 40px;
  padding: 11px 24px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(168, 79, 104, 0.3);
  white-space: nowrap;
}

.btn-lookup-submit:hover {
  background: #8e4554;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 79, 104, 0.42);
}

.btn-lookup-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-bow-icon {
  font-size: 0.85rem;
}

/* Gợi ý tìm nhanh */
.lookup-quick-hints {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.quick-hint-tag {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 3px 12px;
  font-size: 0.8rem;
  color: var(--dusty-rose);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.quick-hint-tag:hover {
  background: var(--dusty-rose);
  color: #ffffff;
  border-color: var(--dusty-rose);
  transform: translateY(-1px);
}

/* Feedback box */
.order-lookup-feedback {
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.order-lookup-feedback.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fawn-dark);
}

.lookup-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(168, 79, 104, 0.25);
  border-top-color: var(--dusty-rose);
  border-radius: 50%;
  animation: lookup-spin 0.75s linear infinite;
}

@keyframes lookup-spin {
  to { transform: rotate(360deg); }
}

.order-lookup-feedback.error {
  color: #c0475e;
  background: #fdf2f4;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 14px;
}

.feedback-empty-card {
  background: #ffffff;
  border: 1px dashed var(--border-card);
  border-radius: 18px;
  padding: 24px 20px;
  margin-top: 14px;
}

.empty-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

.empty-title {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--fawn-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

.empty-sub {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 2. KHU VỰC HIỂN THỊ KẾT QUẢ ĐƠN HÀNG */
.order-results-container {
  display: none;
  margin-top: 40px;
  animation: fadeSlideUp 0.4s ease forwards;
}

.order-results-container.visible {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

.results-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.results-badge {
  background: #ffe4e9;
  color: var(--dusty-rose);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.results-owner-text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin: 0;
}

.owner-handle {
  color: var(--dusty-rose);
}

.btn-reset-lookup {
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.btn-reset-lookup:hover {
  background: #ffffff;
  color: var(--dusty-rose);
  border-color: var(--dusty-rose);
}

/* 3. THẺ ĐƠN HÀNG NÂNG CẤP (CARD V2) */
.order-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-result-card-v2 {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 30px 32px;
  box-shadow: 0 6px 24px rgba(168, 79, 104, 0.08), 0 1px 4px rgba(58, 46, 41, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.order-result-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(168, 79, 104, 0.14);
  border-color: #E5B4BE;
}

.order-card-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f6e8ec;
  flex-wrap: wrap;
  gap: 12px;
}

.order-label-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #c98e9c;
  display: block;
  margin-bottom: 2px;
}

.order-code-display {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dusty-rose);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.order-date-display {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.order-date-display strong {
  color: var(--fawn-dark);
}

.order-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
}

.order-badge-pill.status-da-chot {
  background: #ffe8ee;
  color: #b03859;
}

.order-badge-pill.status-dang-giao {
  background: #fff4d6;
  color: #946900;
}

.order-badge-pill.status-da-nhan {
  background: #dff4e6;
  color: #1e7e48;
}

/* 4. TIMELINE TIẾN TRÌNH 3 BƯỚC */
.order-timeline-box {
  position: relative;
  margin: 10px 0 28px;
  padding: 6px 14px;
}

.timeline-track-line {
  position: absolute;
  top: 24px;
  left: 18%;
  right: 18%;
  height: 4px;
  background: #f0e1e5;
  border-radius: 4px;
  z-index: 0;
  overflow: hidden;
}

.timeline-track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dusty-rose), #e68ca4);
  transition: width 0.6s ease;
  border-radius: 4px;
}

.timeline-steps-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.progress-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.progress-dot-v2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5c8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #a88;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(168, 79, 104, 0.08);
}

.progress-title-v2 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.progress-sub-v2 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: #ab959a;
}

.progress-step-v2.done .progress-dot-v2 {
  background: #dff4e6;
  border-color: #2da35f;
  color: #1e7e48;
  font-weight: 700;
}

.progress-step-v2.done .progress-title-v2 {
  color: #1e7e48;
  font-weight: 700;
}

.progress-step-v2.active .progress-dot-v2 {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
  color: #ffffff;
  box-shadow: 0 0 0 5px rgba(168, 79, 104, 0.18);
  transform: scale(1.1);
}

.progress-step-v2.active .progress-title-v2 {
  color: var(--dusty-rose);
  font-weight: 700;
}

/* 5. CHI TIẾT SẢN PHẨM & SHIP GRID */
.order-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  background: #fdf8f9;
  border: 1px solid #f3e2e6;
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.col-header-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fawn-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ebd9de;
}

.items-count-pill {
  background: #ffffff;
  color: var(--dusty-rose);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid #ebd9de;
}

.items-chips-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #f0e1e5;
  border-radius: 12px;
  padding: 9px 14px;
  gap: 12px;
}

.item-chip-index {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dusty-rose);
  background: #fdf2f4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-chip-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fawn-dark);
  flex: 1;
}

.item-chip-payment {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.item-chip-payment.paid {
  background: #e4f7eb;
  color: #1a7a44;
}

.item-chip-payment.unpaid {
  background: #fde8ed;
  color: #b03859;
}

.order-meta-column {
  display: flex;
  flex-direction: column;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed #ebd9de;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-label {
  color: var(--text-muted);
}

.meta-value {
  font-weight: 600;
  color: var(--fawn-dark);
}

.meta-value.fee {
  font-weight: 700;
  color: var(--dusty-rose);
  font-size: 1rem;
}

/* 6. THANH HÀNH ĐỘNG DƯỚI (SPX BUTTON) */
.order-card-bottom-bar {
  display: flex;
  justify-content: flex-end;
}

.btn-track-spx-active {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fawn-dark);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 28px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 16px rgba(58, 46, 41, 0.22);
}

.btn-track-spx-active:hover {
  background: #1f1613;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(58, 46, 41, 0.32);
}

.spx-icon {
  font-size: 1.2rem;
}

.spx-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.spx-btn-label {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.spx-code-val {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.spx-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-track-spx-active:hover .spx-arrow {
  transform: translateX(4px);
}

.spx-pending-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf5f7;
  border: 1px dashed var(--border-card);
  padding: 10px 18px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  width: 100%;
  justify-content: center;
}

/* 7. KHUNG TRỢ GIÚP / CSKH NGỌT NGÀO */
.order-help-banner {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 24px 30px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 18px rgba(168, 79, 104, 0.06);
  flex-wrap: wrap;
}

.help-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.help-icon {
  font-size: 2rem;
}

.help-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fawn-dark);
  margin-bottom: 4px;
}

.help-text p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.btn-help-ig {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--dusty-rose);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-help-ig:hover {
  background: var(--dusty-rose);
  color: #ffffff;
  border-color: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(168, 79, 104, 0.25);
}


/* ====================================================
   TRANG GÓC NABY DÙNG — AFFILIATES STYLING
==================================================== */
.page-favorites .products-grid-4col {
  margin-top: 20px;
}

.fav-affiliate-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fav-affiliate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(168, 79, 104, 0.16);
  border-color: #EBB6C2;
}

.fav-affiliate-card .product-info-wrap {
  padding: 14px 16px 18px;
}

.fav-affiliate-card .product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.42;
  color: var(--fawn-dark);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fav-affiliate-card .product-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dusty-rose);
}

.affiliate-disclosure-card {
  background: var(--bg-card);
  border: 1px dashed var(--border-card);
  border-radius: 20px;
  padding: 22px 28px;
  max-width: 780px;
  margin: 10px auto 40px;
  text-align: center;
}

.disclosure-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.disclosure-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.disclosure-content p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

/* ==========================================================================
   NABY COQUETTE — COMPREHENSIVE MOBILE-FIRST DESIGN SYSTEM (<= 768px)
   Tối ưu hoá toàn diện: Typography, Layout, Card sizes, Spacing & Touch
   ========================================================================== */
@media (max-width: 768px) {
  /* 0. CÔNG THÁI HỌC CHẠM & KHUNG TRANG AN TOÀN */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  input[type="text"],
  input[type="search"],
  input[type="email"],
  textarea,
  select {
    font-size: 16px !important; /* Ngăn iOS Safari tự động zoom */
  }

  .content-container {
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  /* 1. HỆ THỐNG PHÂN CẤP TYPOGRAPHY CHUẨN MOBILE (CÂN ĐỐI, KHÔNG QUÁ TO) */
  /* Tiêu đề chính trang viết tay (Wardrobe / Favorites) */
  .wardrobe-script-tag {
    font-family: var(--font-script) !important;
    font-size: clamp(1.8rem, 6.2vw, 2.15rem) !important;
    line-height: 1.2 !important;
    color: var(--dusty-rose) !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 4px !important;
    display: block !important;
    text-shadow: 0 1px 6px rgba(168, 79, 104, 0.08) !important;
  }

  /* Nhãn phụ uốn lượn phong cách Coquette (nhẹ nhàng, không lấn át tiêu đề) */
  .about-subtitle-script,
  .about-script,
  .about-hero-script,
  .hero-aesthetic-script {
    font-family: var(--font-script) !important;
    font-size: clamp(1.3rem, 4.6vw, 1.55rem) !important;
    line-height: 1.25 !important;
    color: var(--dusty-rose) !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 2px !important;
    display: block !important;
    text-shadow: 0 1px 4px rgba(168, 79, 104, 0.07) !important;
  }

  /* Tiêu đề chính các phân mục (vừa vặn, không bị to thô trên màn hình hẹp) */
  .catalog-title,
  .about-main-title,
  .lookup-title,
  .consign-box h3,
  .order-guide-box h3,
  .orders-results-title,
  .about-content h2,
  .mascot-text h3,
  .standards-section h2 {
    font-family: var(--font-sans) !important;
    font-size: clamp(1.12rem, 3.8vw, 1.26rem) !important;
    font-weight: 700 !important;
    color: var(--fawn-dark) !important;
    line-height: 1.32 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 6px !important;
    text-wrap: balance !important;
  }

  /* Phụ đề & mô tả ngắn dưới tiêu đề */
  .catalog-subtitle,
  .about-intro-p,
  .lookup-subtitle,
  .consign-desc {
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    line-height: 1.48 !important;
    color: var(--text-muted) !important;
    margin: 0 auto 14px auto !important;
    max-width: 100% !important;
    text-wrap: pretty !important;
  }

  /* Đoạn văn bản nội dung */
  .about-content p,
  .mascot-text p,
  .about-hero-text p {
    font-family: var(--font-sans) !important;
    font-size: 0.82rem !important;
    line-height: 1.58 !important;
    color: var(--fawn-brown) !important;
    margin-bottom: 10px !important;
    text-wrap: pretty !important;
  }

  /* 2. THANH NAVBAR & MENU SỔ XUỐNG TRÊN MOBILE */
  .navbar-container {
    height: 56px !important;
    padding: 8px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }
  .brand-logo {
    gap: 8px !important;
  }
  .brand-logo-img {
    width: 34px !important;
    height: 34px !important;
  }
  .brand-name {
    font-size: 1.75rem !important;
  }
  .nav-right-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .lang-toggle-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
  }
  .ig-pill-btn.desktop-only,
  .nav-right-actions .ig-pill-btn {
    display: none !important;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
  }
  .nav-links-group {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 248, 247, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1.5px solid var(--border-card) !important;
    box-shadow: 0 16px 36px rgba(168, 79, 104, 0.16) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    overflow: hidden !important;
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                transform 0.25s ease,
                padding 0.3s ease !important;
    z-index: 999 !important;
    margin: 0 !important;
    border-top: none !important;
  }
  .nav-links-group.is-open {
    max-height: 420px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    padding: 14px 16px 18px !important;
  }
  .nav-link {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: var(--fawn-dark) !important;
    border-radius: 12px !important;
    min-height: 42px !important;
    background: transparent !important;
  }
  .nav-link.active {
    background: #FFF0F3 !important;
    color: var(--dusty-rose) !important;
    font-weight: 700 !important;
    border-left: 3px solid var(--dusty-rose) !important;
    padding-left: 12px !important;
  }
  .nav-link::after {
    display: none !important;
  }
  .cart-badge-pill {
    font-size: 0.68rem !important;
    padding: 2px 7px !important;
    margin-left: 6px !important;
  }
  .mobile-menu-footer {
    display: block !important;
    margin-top: 8px !important;
    padding-top: 10px !important;
    border-top: 1px dashed rgba(247, 221, 226, 0.8) !important;
  }
  .mobile-menu-ig-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    border-radius: 14px !important;
    background: var(--dusty-rose) !important;
    color: #ffffff !important;
    font-family: var(--font-sans) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(168, 79, 104, 0.22) !important;
  }

  /* 3. HERO BANNER & MARQUEE DIVIDER */
  .hero-banner-img {
    aspect-ratio: 16 / 9 !important;
    min-height: 160px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    object-position: center 30% !important;
  }
  .mascot-marquee-divider {
    padding: 4px 0 2px 0 !important;
  }
  .mascot-marquee-track {
    animation-duration: 48s !important;
  }
  .parade-fawn {
    height: 26px !important;
  }
  .parade-bunny {
    height: 19px !important;
  }

  /* 4. TIÊU ĐỀ TRANG & BỘ LỌC TÌM KIẾM (WARDROBE PAGE) */
  .catalog-header {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
  .catalog-bow-motif {
    width: 42px !important;
    height: auto !important;
  }
  .catalog-filter-bar {
    margin: 6px auto 16px auto !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .catalog-search-wrap {
    max-width: 100% !important;
    width: 100% !important;
  }
  .catalog-search-input {
    padding: 11px 38px 11px 40px !important;
    min-height: 46px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    background: #ffffff !important;
    border: 1.5px solid #F3C5D0 !important;
    box-shadow: 0 3px 12px rgba(168, 79, 104, 0.07) !important;
  }
  .catalog-search-wrap .search-icon-pink {
    left: 14px !important;
  }
  .catalog-search-clear {
    width: 34px !important;
    height: 34px !important;
    right: 6px !important;
  }

  /* 5. LƯỚI SẢN PHẨM 2 CỘT CHUẨN MOBILE (CÂN ĐỐI, SANG TRỌNG) */
  .products-grid-4col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 10px !important;
    margin-bottom: 30px !important;
  }
  .product-card {
    border-radius: 16px !important;
    border: 1px solid var(--border-card) !important;
    background: #ffffff !important;
    box-shadow: 0 3px 12px rgba(168, 79, 104, 0.07) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.15s ease !important;
  }
  .product-card:active {
    transform: scale(0.97) !important;
  }
  .product-image-wrap {
    aspect-ratio: 1 / 1.12 !important;
    position: relative !important;
    width: 100% !important;
    background: #FFF7F8 !important;
  }
  .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .product-wishlist-btn {
    width: 36px !important;
    height: 36px !important;
    top: 8px !important;
    right: 8px !important;
  }
  .product-condition-tag {
    top: 8px !important;
    left: 8px !important;
    padding: 3px 8px !important;
    font-size: 0.66rem !important;
  }
  .product-info-wrap {
    padding: 10px 8px 12px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
  }
  .product-card-name {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: var(--fawn-dark) !important;
    margin-bottom: 4px !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.7em !important;
    word-break: break-word !important;
  }
  .product-card-price {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: var(--dusty-rose) !important;
    margin-bottom: 8px !important;
  }
  .btn-card-buy-now {
    min-height: 38px !important;
    padding: 7px 6px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    background: #FFF1F2 !important;
    border: 1px solid var(--border-card) !important;
    color: var(--dusty-rose) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .btn-card-buy-now:active {
    background: var(--dusty-rose) !important;
    color: #ffffff !important;
  }
  .load-more-container {
    margin: 18px 0 32px !important;
  }
  .btn-load-more {
    padding: 10px 24px !important;
    font-size: 0.88rem !important;
  }

  /* 6. HƯỚNG DẪN ĐẶT HÀNG (4 BƯỚC: LƯỚI 2x2 CÂN ĐỐI, ĐỀU NHAU 100%) */
  .order-guide-section {
    margin: 20px 0 45px 0 !important;
  }
  .order-guide-box {
    padding: 22px 12px 24px 12px !important;
    border-radius: 20px !important;
    margin: 0 auto !important;
    background: #FFF1F2 !important;
    border: 2px dashed #A84F68 !important;
  }
  .order-guide-steps {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin: 16px 0 20px 0 !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  .order-guide-steps .consign-step-item {
    background: #ffffff !important;
    border: 1px solid var(--border-card) !important;
    border-radius: 14px !important;
    padding: 12px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(168, 79, 104, 0.05) !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    height: 100% !important;
  }
  .order-guide-steps .consign-step-item .step-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #FFF1F2 !important;
    border: 1px solid var(--border-card) !important;
    color: var(--dusty-rose) !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
    flex-shrink: 0 !important;
  }
  .order-guide-steps .consign-step-item h5 {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--fawn-dark) !important;
    margin-bottom: 5px !important;
    line-height: 1.25 !important;
    min-height: 2.5em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-wrap: balance !important;
  }
  .order-guide-steps .consign-step-item p {
    font-size: 0.71rem !important;
    line-height: 1.45 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    text-wrap: pretty !important;
    word-break: normal !important;
  }
  .order-guide-box .consign-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 14px !important;
  }
  .order-guide-box .consign-cta .btn-primary-coquette {
    width: 100% !important;
    max-width: 280px !important;
    min-height: 44px !important;
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
    border-radius: 14px !important;
    justify-content: center !important;
  }

  /* 7. TRANG VỀ NABY (ABOUT US): HERO & MASCOTS (FIX TRIỆT ĐỂ KHOẢNG TRỐNG) */
  .about-hero-header {
    padding: 30px 14px 20px !important;
  }
  .about-page-title-wrap {
    padding: 20px 12px 16px !important;
  }
  .about-card-box {
    flex-direction: column !important;
    padding: 20px 14px !important;
    gap: 16px !important;
    text-align: center !important;
    border-radius: 18px !important;
  }
  .about-image-frame {
    margin: 0 auto !important;
  }
  .about-img {
    width: 120px !important;
    height: 120px !important;
  }
  .mascot-box {
    flex-direction: column !important;
    padding: 20px 16px 22px 16px !important;
    gap: 10px !important;
    text-align: center !important;
    border-radius: 20px !important;
  }
  .mascot-visual {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .mascot-img-fawn {
    width: 135px !important;
    max-width: 36vw !important;
    height: auto !important;
  }
  .mascot-img-bunny {
    width: 96px !important;
    max-width: 26vw !important;
    height: auto !important;
  }
  .mascot-text h3 {
    font-size: clamp(1.1rem, 3.8vw, 1.25rem) !important;
    font-weight: 700 !important;
    color: var(--fawn-dark) !important;
    line-height: 1.35 !important;
    margin: 6px 0 8px 0 !important;
  }
  .mascot-text p {
    font-size: 0.82rem !important;
    line-height: 1.58 !important;
    color: var(--fawn-brown) !important;
    margin-bottom: 8px !important;
    text-wrap: pretty !important;
  }

  /* 8. TIÊU CHUẨN ĐỒ: STANDARD ROUNDABOUT 3D CAROUSEL */
  .standards-section {
    margin: 35px 0 !important;
  }
  .standards-carousel-container {
    max-width: 100% !important;
    padding: 6px 0 10px 0 !important;
    overflow: hidden !important;
  }
  .standards-roundabout-stage {
    height: 235px !important;
  }
  .standards-roundabout-stage .standard-card {
    width: 245px !important;
    max-width: 72vw !important;
    height: 210px !important;
    padding: 16px 12px !important;
    border-radius: 18px !important;
  }
  .standards-roundabout-stage .standard-card.roundabout-center {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 12px 30px rgba(168, 79, 104, 0.16) !important;
  }
  .standards-roundabout-stage .standard-card.roundabout-left {
    transform: translate(calc(-50% - 85px), -50%) scale(0.78) !important;
    opacity: 0.38 !important;
    z-index: 5 !important;
  }
  .standards-roundabout-stage .standard-card.roundabout-right {
    transform: translate(calc(-50% + 85px), -50%) scale(0.78) !important;
    opacity: 0.38 !important;
    z-index: 5 !important;
  }
  .standard-card h4 {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    min-height: 1.5em !important;
  }
  .standard-card p {
    font-size: 0.74rem !important;
    line-height: 1.45 !important;
    text-wrap: pretty !important;
  }
  .std-nav-btn {
    width: 34px !important;
    height: 34px !important;
  }

  /* 9. KHUNG KÝ GỬI (CONSIGN GUIDE): 3 CARD NẰM NGANG CÂN ĐỐI */
  .consign-guide-section {
    margin: 25px 0 50px 0 !important;
  }
  .consign-box {
    padding: 24px 12px 26px 12px !important;
    border-radius: 20px !important;
    margin: 15px auto 35px auto !important;
    background: #FFF1F2 !important;
    border: 2px dashed #A84F68 !important;
  }
  .consign-header-wrap {
    margin-bottom: 14px !important;
  }
  .consign-steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin: 16px 0 20px 0 !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  .consign-steps .consign-step-item {
    background: #ffffff !important;
    border: 1px solid var(--border-card) !important;
    border-radius: 14px !important;
    padding: 10px 5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(168, 79, 104, 0.05) !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    height: 100% !important;
  }
  .consign-steps .consign-step-item .step-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: #FFF1F2 !important;
    border: 1px solid var(--border-card) !important;
    color: var(--dusty-rose) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    flex-shrink: 0 !important;
  }
  .consign-steps .consign-step-item h5 {
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    color: var(--fawn-dark) !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
    min-height: 2.6em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-wrap: balance !important;
  }
  .consign-steps .consign-step-item p {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    text-wrap: pretty !important;
  }
  .consign-cta {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 14px !important;
    flex-wrap: nowrap !important;
  }
  .consign-cta .btn-primary-coquette,
  .consign-cta .btn-secondary-coquette {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 50% !important;
    min-height: 42px !important;
    padding: 10px 4px !important;
    font-size: clamp(0.72rem, 2.8vw, 0.8rem) !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  /* 10. TRANG TRA CỨU ĐƠN HÀNG (ORDERS.HTML) */
  .order-lookup-section {
    margin: 10px auto 40px !important;
  }
  .order-lookup-box-v2 {
    padding: 22px 14px !important;
    border-radius: 20px !important;
  }
  .lookup-search-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .lookup-input-wrapper {
    background: #ffffff !important;
    border: 1.5px solid #f1c3cd !important;
    border-radius: 14px !important;
    padding: 4px 14px !important;
    min-height: 48px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 2px 10px rgba(168, 79, 104, 0.06) !important;
  }
  .lookup-input {
    font-size: 16px !important;
    width: 100% !important;
  }
  .btn-lookup-submit {
    width: 100% !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
    justify-content: center !important;
  }
  .lookup-quick-hints {
    margin-top: 12px !important;
    gap: 6px !important;
  }
  .quick-hint-tag {
    padding: 4px 10px !important;
    font-size: 0.78rem !important;
  }
  .order-result-card-v2 {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }
  .timeline-track-line {
    left: 12% !important;
    right: 12% !important;
  }
  .progress-dot-v2 {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.82rem !important;
  }
  .progress-title-v2 {
    font-size: 0.76rem !important;
  }
  .progress-sub-v2 {
    font-size: 0.65rem !important;
  }
  .order-details-grid {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
    gap: 12px !important;
  }
  .btn-track-spx-active {
    width: 100% !important;
    justify-content: center !important;
  }
  .order-help-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px 14px !important;
  }
  .help-banner-content {
    flex-direction: column !important;
  }
  .btn-help-ig {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 11. TRANG GÓC NABY DÙNG (FAVORITES.HTML) */
  .affiliate-disclosure-card {
    padding: 16px 14px !important;
    border-radius: 16px !important;
    margin: 10px auto 30px !important;
  }
  .disclosure-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }
  .disclosure-content p {
    text-align: center !important;
    font-size: 0.82rem !important;
  }

  /* 12. POPUP MODAL BOTTOM SHEET */
  .product-modal-backdrop {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  .product-modal-card {
    border-radius: 22px 22px 0 0 !important;
    max-height: 88vh !important;
    width: 100% !important;
    padding: 14px 14px 28px 14px !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
  }
  .modal-close-btn {
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
  .modal-gallery-stage {
    height: 260px !important;
    border-radius: 14px !important;
  }
  .modal-prod-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }
  .modal-prod-price {
    font-size: 1.1rem !important;
  }
  .btn-contact-naby {
    min-height: 46px !important;
    font-size: 0.92rem !important;
    border-radius: 14px !important;
  }

  /* 13. CHÂN TRANG (FOOTER) */
  .site-footer {
    padding: 24px 16px 20px !important;
  }
  .footer-container {
    gap: 12px !important;
  }
  .footer-brand-name {
    font-size: 1.95rem !important;
  }
  .footer-nav-row {
    gap: 10px 16px !important;
  }
  .footer-nav-link {
    font-size: 0.86rem !important;
  }
  .footer-social-circle {
    width: 36px !important;
    height: 36px !important;
  }
  .footer-social-circle svg {
    width: 16px !important;
    height: 16px !important;
  }
  .footer-social-pill {
    height: 36px !important;
    padding: 0 16px !important;
    font-size: 0.82rem !important;
  }
  .footer-copyright {
    font-size: 0.74rem !important;
  }
}

/* 14. TINH CHỈNH ĐẶC BIỆT CHO MÀN HÌNH CỰC NHỎ (<= 380px NHƯ IPHONE SE / GẬP) */
@media (max-width: 380px) {
  .content-container {
    padding: 0 10px !important;
  }
  .brand-name {
    font-size: 1.6rem !important;
  }
  .products-grid-4col {
    gap: 10px 8px !important;
  }
  .product-card-name {
    font-size: 0.8rem !important;
  }
  .product-card-price {
    font-size: 0.88rem !important;
  }
  .btn-card-buy-now {
    font-size: 0.76rem !important;
    padding: 6px 3px !important;
  }
  .order-guide-steps {
    gap: 8px !important;
  }
  .order-guide-steps .consign-step-item {
    padding: 10px 5px !important;
  }
  .order-guide-steps .consign-step-item h5 {
    font-size: 0.76rem !important;
    min-height: 2.5em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .order-guide-steps .consign-step-item p {
    font-size: 0.67rem !important;
    line-height: 1.35 !important;
  }
  .consign-steps .consign-step-item h5 {
    font-size: 0.7rem !important;
    min-height: 2.6em !important;
  }
  .consign-steps .consign-step-item p {
    font-size: 0.62rem !important;
    line-height: 1.3 !important;
  }
}



