/* ==========================================================================
   etsy.css — Lớp giao diện kiểu Etsy cho Vạn Kim Đại Cát
   Nạp SAU style.css + enhance.css để ghi đè: bảng màu, typography, header,
   thanh tìm kiếm, thanh danh mục, thẻ sản phẩm, nút bấm.
   Giữ nguyên toàn bộ markup — chỉ đổi phong cách hiển thị.
   ========================================================================== */

:root {
  --etsy-orange: #315285;   /* Xanh Navy chủ đạo */
  --etsy-orange-dk: #192f47;
  --etsy-black: #315285;    /* các nút bấm chính */
  --etsy-text: #1a2f4c;     /* chữ xanh navy tối */
  --etsy-muted: #5c7087;    /* chữ mờ nhạt */
  --etsy-line: #eae0de;     /* đường kẻ be mảnh */
  --etsy-line-soft: #eae0de;
  --etsy-bg: #ffffff;       /* Nền trắng sạch sẽ */
  --etsy-bg-soft: #ffffff;  /* Nền phụ trắng */
  --etsy-sale: #a61a2e;     /* giá khuyến mãi / badge giảm */
  --etsy-star: #fede77;     /* đánh giá sao vàng kim */

  /* ---- REMAP toàn bộ bảng màu gốc sang tông Navy/Gold/White ---- */
  --navy:        #315285;
  --navy-dark:   #192f47;
  --gold:        #fede77;
  --gold-light:  #fef0b3;
  --gold-pale:   #fff9d6;
  --cream:       #ffffff;
  --gray-light:  #ffffff;

  --vkdc-navy:       #315285;
  --vkdc-navy-dark:  #192f47;
  --vkdc-gold:       #fede77;
  --vkdc-gold-light: #fef0b3;
  --vkdc-gold-pale:  #fff9d6;
  --vkdc-cream:      #ffffff;
  --vkdc-grad-gold:  linear-gradient(135deg, #fede77 0%, #d8ac38 100%);
  --vkdc-grad-navy:  linear-gradient(135deg, #315285 0%, #192f47 100%);
  --vkdc-sh-gold:    0 10px 30px rgba(254,222,119,.15);
  --vkdc-glow-gold:  0 0 0 1px rgba(254,222,119,.35), 0 8px 22px rgba(254,222,119,.2);
}

/* ---------- Nền + chữ chung ---------- */
body, .site-main {
  background: var(--etsy-bg) !important;
  color: var(--etsy-text);
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* Tiêu đề & phụ đề chuẩn thương hiệu toàn trang (Cormorant Garamond serif) */
h1, h2, h3, h4, h5,
.section-title, .qv-name, .carousel-title,
.vkdc-modal-hero h3, .collection-banner-card__title, .flash-sale-title {
  font-family: 'Cormorant Garamond', 'Be Vietnam Pro', serif !important;
  color: var(--navy) !important;
  letter-spacing: 0.02em !important;
  font-weight: 700 !important;
}

a { color: var(--etsy-text); }
a:hover { color: var(--etsy-orange); }

/* Bỏ gạch chân vàng trang trí */
.gold-underline, .section-title .gold-underline { display: none !important; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: #fff !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--etsy-line-soft);
}
.header-top { background: #fff !important; }
.header-inner {
  gap: 22px;
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
}

/* Logo: giữ nguyên khối tròn navy/vàng như thiết kế gốc (không đổi theo tông Etsy) */
.logo-link .logo-circle {
  width: 56px !important; height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg,#3f68a3,#315384 55%,#21385c) !important;
  border: 2px solid #fddd74 !important;
  box-shadow: 0 1px 2px rgba(33,56,92,.06), 0 2px 8px rgba(33,56,92,.06) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 4px !important;
}
.logo-link .logo-circle .logo-text {
  color: #ffe6a0 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: .62rem !important;
  line-height: 1.05 !important;
  letter-spacing: .04em !important;
  text-align: center !important;
  white-space: normal !important;
}
.logo-img-custom { max-height: 62px; width: auto; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--navy) !important;
  color: var(--gold) !important;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-bottom: 1px solid rgba(254, 222, 119, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.announcement-bar__content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Thanh tìm kiếm: dẹt dài, viền mỏng, bo góc nhẹ kiểu M.O.I Cosmetics */
.search-bar { flex: 1; max-width: 580px; position: relative; }
.search-bar form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--etsy-line);
  border-radius: 8px;
  overflow: hidden;
  height: 42px;
  padding: 0 4px 0 0;
  transition: all 0.2s ease;
  position: relative; /* Giúp định vị nút tìm kiếm tuyệt đối chính xác bên trong form */
}
.search-bar input {
  flex: 1;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  height: 100%;
  padding: 0 42px 0 16px !important; /* Dành khoảng trống 42px bên phải cho nút bấm tuyệt đối */
  font-size: 14px;
  color: var(--etsy-text);
  box-shadow: none !important;
}
.search-bar input::placeholder { color: #8e9cae; }
.search-bar button {
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: var(--navy) !important; /* Đặt nền màu navy nổi bật như hình đính kèm */
  color: #ffffff !important; /* Icon màu trắng */
  border: none !important;
  width: 32px !important; height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}
.search-bar button:hover { background: var(--navy-dark) !important; }
.search-bar form:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(49, 82, 133, 0.08);
}

/* Từ khoá gợi ý tìm kiếm: Định vị tuyệt đối để không kéo lệch tâm của toàn bộ header */
.header-search-keywords {
  display: flex;
  gap: 10px;
  position: absolute !important;
  top: 100% !important;
  left: 6px !important;
  margin-top: 4px !important;
  font-size: 11px;
  color: var(--etsy-muted);
  white-space: nowrap;
  z-index: 4;
}
.header-search-keywords span {
  font-weight: 500;
  color: var(--etsy-muted);
}
.header-search-keywords a {
  text-decoration: none;
  color: var(--etsy-muted);
  transition: color 0.15s ease;
}
.header-search-keywords a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Nav phải: icon tròn, chữ nhỏ */
.header-nav { gap: 6px; }
.header-nav .nav-link {
  flex-direction: column;
  gap: 2px;
  color: var(--etsy-text) !important;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  transition: background .15s;
}
.header-nav .nav-link:hover { background: var(--etsy-bg-soft); color: var(--etsy-orange) !important; }
.header-nav .nav-link svg { stroke: var(--etsy-text); }
.header-nav .nav-link:hover svg { stroke: var(--etsy-orange); }
.vkdc-badge {
  background: var(--etsy-orange) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ---------- Thanh danh mục ---------- */
.category-nav {
  background: #fff !important;
  border-top: 1px solid var(--etsy-line-soft);
  border-bottom: 1px solid var(--etsy-line-soft);
  box-shadow: none !important;
}
.category-inner { gap: 4px; justify-content: center; }
.cat-link {
  color: var(--etsy-text) !important;
  background: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 12px 14px !important;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.cat-link:hover {
  color: var(--etsy-orange) !important;
  border-bottom-color: var(--etsy-orange);
  background: none !important;
}
.cat-dropdown { border-top: 3px solid var(--etsy-orange) !important; }
.cat-dropdown a { color: var(--etsy-text) !important; }
.cat-dropdown a:hover { background: var(--etsy-bg-soft) !important; color: var(--etsy-orange) !important; }

/* ==========================================================================
   THẺ SẢN PHẨM  (kiểu Etsy: ảnh bo góc, tim nổi trên ảnh, giá đen đậm)
   ========================================================================== */
.product-card {
  position: relative;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  padding-bottom: 4px;
  transition: none;
}
.product-card:hover { transform: none !important; box-shadow: none !important; }

.product-card__img-wrap {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--etsy-bg-soft);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--etsy-line-soft);
  transition: box-shadow .18s ease;
}
.product-card:hover .product-card__img-wrap {
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

/* Body: căn trái, gọn */
.product-card__body { padding: 10px 2px 0 2px !important; text-align: left !important; }
.product-card__name {
  color: var(--etsy-text) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px !important;
}
.product-card__name:hover { text-decoration: underline; color: var(--etsy-text) !important; }

/* Sao đánh giá nhỏ, màu đen kiểu Etsy */
.product-card__rating {
  color: var(--etsy-star) !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  margin: 0 0 4px 0 !important;
  order: -1;
}
.product-card__rating-count { color: var(--etsy-muted) !important; font-size: 12px; letter-spacing: normal; }

/* Giá: đen đậm; giá cũ gạch ngang; giá KM đỏ khi có giảm */
.product-card__price-row { align-items: baseline !important; gap: 8px !important; margin: 2px 0 4px !important; }
.product-card__price {
  color: var(--etsy-text) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}
.product-card__old-price {
  color: var(--etsy-muted) !important;
  font-size: 13px !important;
  text-decoration: line-through;
}
.product-card__sold { color: var(--etsy-muted) !important; font-size: 12px !important; margin: 2px 0 0 !important; }

/* Nút tim + giỏ: nổi trên góc phải ảnh (kiểu Etsy) */
.product-card__actions {
  position: absolute !important;
  top: 8px; right: 8px;
  flex-direction: column;
  gap: 8px;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 3;
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateY(0); }
.btn-icon {
  width: 36px !important; height: 36px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--etsy-line) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  color: var(--etsy-text) !important;
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s, background .12s, color .12s;
}
.btn-icon svg { width: 18px; height: 18px; }
.btn-icon:hover { transform: scale(1.08); background: #fff !important; color: var(--etsy-orange) !important; }
.btn-wishlist.active { color: var(--etsy-sale) !important; }
.btn-wishlist.active svg { fill: var(--etsy-sale); stroke: var(--etsy-sale); }

/* Luôn hiện tim trên mobile (không có hover) */
@media (hover: none) {
  .product-card__actions { opacity: 1; transform: none; }
}

/* ---------- Badge trên ảnh ---------- */
.badge--discount {
  background: var(--etsy-sale) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  padding: 3px 7px !important;
}
.badge--new {
  background: var(--etsy-black) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  padding: 3px 7px !important;
}

/* ==========================================================================
   NÚT BẤM  (btn-gold → pill đen; outline → viền đen/cam)
   ========================================================================== */
.btn-gold, .btn.btn-gold {
  background: var(--etsy-black) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.btn-gold:hover, .btn.btn-gold:hover { background: #000 !important; filter: none !important; }

.btn-outline-gold, .btn.btn-outline-gold {
  background: #fff !important;
  color: var(--etsy-text) !important;
  border: 1.5px solid var(--etsy-black) !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
}
.btn-outline-gold:hover, .btn.btn-outline-gold:hover {
  background: var(--etsy-bg-soft) !important;
  color: var(--etsy-orange) !important;
  border-color: var(--etsy-orange) !important;
}

/* Quick-view + modal: nút chính đen, phụ viền */
.qv-price { color: var(--etsy-text) !important; }
.qv-disc { background: var(--etsy-sale) !important; border-radius: 4px; }
.qv-actions button, .qv-actions a { border-color: var(--etsy-black) !important; border-radius: 24px !important; }
.qv-cart { color: var(--etsy-text) !important; }
.qv-cart:hover { background: var(--etsy-black) !important; color: #fff !important; }
.qv-detail { background: var(--etsy-black) !important; color: #fff !important; }
.qv-name { color: var(--etsy-text) !important; }
.qv-meta .qv-stars { color: var(--etsy-star) !important; }

/* Popup lead: hero cam, nút đen */
.vkdc-modal-hero { background: linear-gradient(135deg, var(--etsy-orange), var(--etsy-orange-dk)) !important; }
.vkdc-modal-hero h3 { color: #fff !important; }
.vkdc-offer-badge { background: #fff !important; color: var(--etsy-orange) !important; }
.vkdc-offer-badge__lotus, .vkdc-offer-badge__pct, .vkdc-offer-badge__sub { color: var(--etsy-orange) !important; }
.vkdc-modal-submit { background: var(--etsy-black) !important; color: #fff !important; }
.vkdc-modal-body input:focus { border-color: var(--etsy-orange) !important; box-shadow: 0 0 0 3px rgba(241,100,30,.15) !important; }

/* ==========================================================================
   ĐỒNG BỘ THÊM CHO GIỐNG ETSY.COM
   ========================================================================== */

/* 1) Bỏ hẳn font serif trang trí ở mọi nơi — Etsy dùng sans sạch */
h1, h2, h3, h4, h5, h6,
.carousel-title, .section-title, .section-subtitle, .qv-name,
.pd-info h1, .pd-price, .vkdc-modal-hero h3,
.card-name, .product-card__name,
[style*="Cormorant"], [style*="Dancing"] {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}
.pd-price, .pd-info h1 { letter-spacing: -0.01em !important; }

/* 2) Hero: banner GỌN trong khung, BO GÓC (giống thẻ hero của Etsy) */
.hero-section {
  max-width: 1296px !important;
  margin: 22px auto 8px !important;
  padding: 0 16px !important;
  background: none !important;
}
.carousel-container, .carousel, .carousel-track, .carousel-slide {
  border-radius: 18px !important;
  overflow: hidden !important;
}
.carousel-slide { border-radius: 18px !important; }

/* 3) Tiêu đề mục: căn TRÁI, cỡ vừa, có gạch dưới nhẹ (feed kiểu Etsy) */
.section-header, .section-header--flex, .section-header--light {
  text-align: left !important;
  align-items: flex-start !important;
}
.section-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  text-align: left !important;
  margin-bottom: 2px !important;
}
.section-subtitle { text-align: left !important; margin: 0 0 4px !important; }

/* 4) Thẻ sản phẩm: bo góc 10px, TIM luôn hiển thị (kiểu Etsy) */
.product-card__img-wrap, .card-img-wrap { border-radius: 10px !important; }
.product-card__actions, .card-actions { opacity: 1 !important; transform: none !important; }
.btn-icon, .card-actions .icon-btn { box-shadow: 0 1px 4px rgba(0,0,0,.14) !important; }

/* 5) Lưới sản phẩm rộng rãi hơn */
.product-grid, .products-grid { gap: 24px 18px !important; }

/* ---------- Hero carousel: chữ sáng đọc rõ trên banner ---------- */
.carousel-title { color: #fff !important; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.carousel-subtitle { color: rgba(255,255,255,.92) !important; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.carousel-overlay { background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 100%) !important; }
.carousel-cta { background: #fff !important; color: var(--etsy-text) !important; border-radius: 24px !important; font-weight: 600 !important; }
.carousel-cta:hover { background: var(--etsy-bg-soft) !important; color: var(--etsy-orange) !important; }
.carousel-dots .active, .carousel-dots button.active { background: var(--etsy-orange) !important; }

/* ---------- Tiêu đề mục: căn trái, đậm ---------- */
.section-title { font-size: 26px !important; font-weight: 700 !important; }
.section-subtitle { color: var(--etsy-muted) !important; }

/* ---------- Ô danh mục dạng bong bóng tròn kiểu Etsy ---------- */
.category-circle-card {
  text-decoration: none;
  color: var(--etsy-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  transition: all 0.2s ease;
}

.circle-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  border: 3px solid #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.08) !important;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: all 0.2s ease;
}

.category-circle-card:hover .circle-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(241,100,30,.22) !important;
  border-color: var(--etsy-orange) !important;
}

.category-circle-card:hover .circle-wrapper img {
  transform: scale(1.08) !important;
}

.circle-name {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  line-height: 1.3 !important;
  color: var(--etsy-text) !important;
  transition: all 0.2s ease;
}

.category-circle-card:hover .circle-name {
  color: var(--etsy-orange) !important;
}

/* ---------- Nút nổi bên phải ---------- */
.social-btn.social-phone { background: var(--etsy-orange) !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--etsy-bg-soft) !important; color: var(--etsy-text) !important; border-top: 1px solid var(--etsy-line-soft); }
.site-footer a, .footer-links a, .footer-contact li { color: var(--etsy-text) !important; }
.footer-links a:hover { color: var(--etsy-orange) !important; }
.footer-heading { color: var(--etsy-text) !important; }
.footer-bottom { background: #fff !important; border-top: 1px solid var(--etsy-line-soft); }
.copyright { color: var(--etsy-muted) !important; }

/* ---------- Chi tiết sản phẩm: nút/giá theo tông Etsy ---------- */
.pd-price, .price, .product-price { color: var(--etsy-text) !important; }

/* ==========================================================================
   THẺ SẢN PHẨM — biến thể markup thứ 2 (trang /san-pham dùng .card-*)
   ========================================================================== */
.product-grid { gap: 22px 18px !important; }
.product-grid .product-card {
  position: relative;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}
.product-grid .product-card:hover { transform: none !important; box-shadow: none !important; }
.card-img-wrap {
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid var(--etsy-line-soft) !important;
  background: var(--etsy-bg-soft) !important;
  aspect-ratio: 1 / 1;
  transition: box-shadow .18s ease;
}
.product-card:hover .card-img-wrap { box-shadow: 0 6px 18px rgba(0,0,0,.14) !important; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body { padding: 10px 2px 0 !important; text-align: left !important; }
.card-name {
  color: var(--etsy-text) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-price-row { align-items: baseline !important; gap: 8px !important; }
.card-price { color: var(--etsy-text) !important; font-size: 17px !important; font-weight: 700 !important; }
.card-old-price { color: var(--etsy-muted) !important; text-decoration: line-through; font-size: 13px !important; }
.card-discount { color: var(--etsy-sale) !important; font-weight: 700 !important; }
.card-rating { color: var(--etsy-star) !important; font-size: 12px !important; }
.card-rating .star-val { color: var(--etsy-muted) !important; }
.card-sold { color: var(--etsy-muted) !important; font-size: 12px !important; }

/* Nút thao tác nổi trên góc ảnh */
.card-actions {
  position: absolute !important;
  top: 8px; right: 8px;
  flex-direction: column; gap: 8px;
  background: none !important; border: none !important; padding: 0 !important;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .16s, transform .16s; z-index: 3;
}
.product-card:hover .card-actions { opacity: 1; transform: translateY(0); }
.card-actions .icon-btn {
  width: 36px !important; height: 36px !important; border-radius: 50% !important;
  background: #fff !important; border: 1px solid var(--etsy-line) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important; color: var(--etsy-text) !important;
}
.card-actions .icon-btn:hover { background: #fff !important; border-color: var(--etsy-orange) !important; color: var(--etsy-orange) !important; }
@media (hover: none) { .card-actions { opacity: 1; transform: none; } }

/* Badge trên ảnh */
.badge-sale { background: var(--etsy-sale) !important; color: #fff !important; border-radius: 4px !important; font-weight: 700 !important; }
.badge-new { background: var(--etsy-black) !important; color: #fff !important; border-radius: 4px !important; font-weight: 700 !important; }
.badge-variant { background: #fff !important; color: var(--etsy-text) !important; border: 1px solid var(--etsy-line) !important; border-radius: 4px !important; }

/* Nút xem nhanh */
.quick-view-btn { background: rgba(255,255,255,.95) !important; color: var(--etsy-text) !important; border-radius: 20px !important; font-weight: 600 !important; }
.quick-view-btn:hover { background: var(--etsy-black) !important; color: #fff !important; }

/* Bộ lọc giá + nút lọc theo tông đen/cam */
.price-filter button, .price-filter .btn { border-radius: 24px !important; }

/* ==========================================================================
   HEADER + FOOTER — bám sát etsy.com
   ========================================================================== */

/* --- Nút "Danh Mục" (Categories) cạnh logo --- */
.etsy-cats {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--etsy-text); text-decoration: none;
  font-size: 15px; font-weight: 400; white-space: nowrap;
  padding: 6px 4px;
}
.etsy-cats:hover { color: var(--etsy-orange); }
.etsy-cats svg { stroke: var(--etsy-text); }
.etsy-cats:hover svg { stroke: var(--etsy-orange); }
@media (max-width: 900px) { .etsy-cats span { display: none; } }

/* --- Nút tìm kiếm: hình tròn CAM (đặc trưng Etsy) --- */
.search-bar button {
  background: var(--etsy-orange) !important;
  color: #fff !important;
}
.search-bar button:hover { background: var(--etsy-orange-dk) !important; }
.search-bar form { border-color: #222 !important; }

/* --- Nav phải: CHỈ ICON (kiểu Etsy) --- */
.header-nav { gap: 18px !important; }
.header-nav .nav-link { flex-direction: row !important; padding: 6px !important; font-size: 0 !important; }
.header-nav .nav-link > span:not(.vkdc-badge) { display: none !important; }
.header-nav .nav-link svg { width: 24px !important; height: 24px !important; }
.header-nav .vkdc-badge { font-size: 11px !important; }

/* --- Thanh danh mục (secondary nav) rộng rãi, chữ tối, không viền idle --- */
.category-inner { gap: 8px !important; }
.cat-link { font-size: 14.5px !important; padding: 12px 16px !important; font-weight: 400 !important; }

/* ==========================================================================
   NEWSLETTER BAND (nền be nhạt)
   ========================================================================== */
.etsy-news { background: #fcf6eb; padding: 32px 16px; border-top: 1px solid var(--etsy-line); }
.etsy-news__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.etsy-news__text { margin: 0; font-size: 15px; font-weight: 500; color: var(--navy); max-width: 720px; }
.etsy-news__form {
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--navy); border-radius: 26px;
  width: 100%; max-width: 640px; overflow: hidden; padding: 3px 4px 3px 0;
}
.etsy-news__form input[type=email] {
  flex: 1; border: none !important; outline: none !important; background: transparent !important;
  padding: 12px 20px !important; font-size: 15px; color: var(--navy); box-shadow: none !important;
}
.etsy-news__form button {
  background: none; border: none; color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 10px 22px; cursor: pointer; white-space: nowrap; border-radius: 24px;
}
.etsy-news__form button:hover { text-decoration: underline; color: var(--etsy-orange-dk); }

/* ==========================================================================
   FOOTER — nền xanh navy sẫm thanh lịch cát tường
   ========================================================================== */
.site-footer { background: #192f47 !important; color: #fff !important; border-top: none !important; }
.footer-grid { padding-top: 44px !important; padding-bottom: 28px !important; }
.footer-heading { color: #fff !important; font-size: 15px !important; font-weight: 700 !important; margin-bottom: 12px !important; }
.footer-col a, .footer-links a, .footer-contact li, .footer-tagline { color: rgba(255,255,255,.86) !important; }
.footer-links a:hover, .footer-col a:hover { color: var(--gold) !important; text-decoration: underline !important; }
.footer-contact li svg { stroke: rgba(255,255,255,.7); }

/* Logo footer: ô vuông bo góc CAM (như Etsy) */
.footer-logo-circle {
  background: var(--gold) !important; border: none !important;
  width: 84px !important; height: 84px !important; border-radius: 16px !important;
  display: flex; align-items: center; justify-content: center; box-shadow: none !important;
  padding: 8px !important;
}
.footer-logo-circle .logo-text { color: #192f47 !important; font-size: 15px !important; text-align: center !important; }
.footer-logo-img { filter: brightness(0) invert(1); max-height: 70px; }

/* Mạng xã hội: nền trong suốt, icon trắng */
.footer-socials-row .foot-social { background: rgba(255,255,255,.12) !important; color: #fff !important; }
.footer-socials-row .foot-social:hover { background: rgba(255,255,255,.25) !important; }

/* Phương thức thanh toán: chữ sáng, thẻ nền trắng nhỏ */
.footer-payments { background: #192f47 !important; border-top: 1px solid rgba(255,255,255,.12) !important; }
.footer-payments__label { color: rgba(255,255,255,.75) !important; }
.footer-payments__icons img { background: #fff; border-radius: 4px; padding: 2px; }

/* Bottom bar */
.footer-bottom { background: #192f47 !important; border-top: 1px solid rgba(255,255,255,.12) !important; }
.footer-bottom-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-locale { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.86); font-size: 13px; }
.footer-locale svg { stroke: rgba(255,255,255,.7); }
.footer-locale__sep { color: rgba(255,255,255,.35); }
.footer-bottom .copyright { color: rgba(255,255,255,.7) !important; margin: 0 !important; }
.footer-bottom .bct-badge { margin-left: auto; }
.footer-bottom .bct-badge img { background: #fff; border-radius: 4px; padding: 2px; }

/* ==========================================================================
   TABS SẢN PHẨM PHONG CÁCH M.O.I
   ========================================================================== */
.product-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--etsy-line);
  padding-bottom: 2px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-tabs-wrapper::-webkit-scrollbar {
  display: none;
}
.product-tabs {
  display: inline-flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .product-tabs-wrapper {
    justify-content: flex-start;
  }
  .product-tabs {
    gap: 24px;
    padding: 0 4px;
  }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
.tab-btn {
  background: none !important;
  border: none !important;
  outline: none !important;
  font-size: 16px;
  font-weight: 600;
  color: var(--etsy-muted) !important;
  padding: 12px 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.tab-btn:hover {
  color: var(--navy) !important;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.tab-btn.active {
  color: var(--navy) !important;
}
.tab-btn.active::after {
  transform: scaleX(1);
}
.tab-content-container {
  position: relative;
  min-height: 300px;
}
.tab-pane {
  display: none;
  animation: tabFadeIn 0.35s ease-out;
}
.tab-pane.active {
  display: block;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive: logo + search xuống dòng gọn trên mobile */
@media (max-width: 640px) {
  .logo-text { font-size: 22px !important; }
  .section-title { font-size: 21px !important; }
}

/* ==========================================================================
   MỚI: HÌNH VUÔNG DANH MỤC & CÁC BỘ SƯU TẬP THEO DANH MỤC
   ========================================================================== */

/* 1) Lưới danh mục 8 ô hình vuông phân đều trong 1 hàng */
.category-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  margin-top: 30px;
}

.category-square-card {
  text-decoration: none;
  color: var(--navy) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 136px !important;
  transition: all 0.25s ease;
}

.square-wrapper {
  width: 136px !important;
  height: 136px !important;
  border-radius: 8px !important; /* Dạng hình vuông bo góc cực nhẹ hiện đại */
  overflow: hidden !important;
  background: #FFFFFF !important;
  border: 1px solid var(--etsy-line) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.03) !important;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: all 0.25s ease;
}

.category-square-card:hover .square-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(49,82,133,0.08) !important;
  border-color: var(--navy) !important;
}

.category-square-card:hover .square-wrapper img {
  transform: scale(1.05) !important;
}

.square-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.3 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.category-square-card:hover .square-name {
  color: var(--gold-dark) !important;
}


/* 2) Bộ sưu tập danh mục (Collection Sections) */
.collection-section {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
  border-bottom: 1px solid var(--etsy-line-soft);
}

.collection-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}



/* Cột 1: Thẻ banner riêng biệt */
.collection-banner-card {
  flex: 0 0 340px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  min-height: 380px;
  display: flex;
}

.collection-banner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-banner-card:hover .collection-banner-card__img {
  transform: scale(1.04);
}

.collection-banner-card__overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(46,32,56,0.1) 0%, rgba(46,32,56,0.78) 100%);
  padding: 30px 24px;
  display: flex;
  align-items: flex-end;
}

.collection-banner-card__content {
  color: #fff;
  text-align: left;
}

.collection-banner-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--etsy-orange);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.collection-banner-card__title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.25;
}

.collection-banner-card__subtitle {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin: 0 0 20px 0;
}

.collection-banner-card__cta {
  display: inline-block;
  background: #FFFFFF !important;
  color: var(--etsy-text) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  font-size: 14.5px !important;
  border-radius: 24px !important;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.collection-banner-card__cta:hover {
  background: var(--etsy-bg-soft) !important;
  color: var(--etsy-orange) !important;
  transform: translateY(-2px);
}

/* Cột 2: Lưới 4 sản phẩm bên cạnh */
.collection-products-grid {
  flex: 1;
}

.product-grid--2col-tablet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive cho Bộ sưu tập */
@media (max-width: 992px) {
  .collection-row {
    flex-direction: column !important;
  }
  .collection-banner-card {
    flex: none;
    min-height: 240px;
  }
  .collection-banner-card__overlay {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
  }
  .collection-banner-card__content {
    text-align: center;
    max-width: 500px;
  }
  .product-grid--2col-tablet {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .product-grid--2col-tablet {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   HOMEPAGE COUNTDOWN BANNER (Flash Sale / Campaign)
   ========================================================================== */
.home-collection-countdown {
  padding: 50px 0;
  background: #ffffff;
}
.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
}
.countdown-banner {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--etsy-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}
.countdown-info {
  flex: 1.1;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.countdown-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.countdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.25;
  margin: 0 0 14px 0 !important;
}
.countdown-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--etsy-muted);
  margin-bottom: 24px;
}
.vkdc-countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.vkdc-countdown .countdown-item {
  width: 70px; height: 70px;
  border: 1px solid var(--etsy-line);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.2s ease;
}
.vkdc-countdown .countdown-item:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 10px rgba(49, 82, 133, 0.08);
}
.vkdc-countdown .number {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}
.vkdc-countdown .label {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--etsy-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.btn-countdown-cta {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border: 1px solid var(--navy) !important;
  border-radius: 4px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 12px 30px !important;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}
.btn-countdown-cta:hover {
  background: var(--navy-dark) !important;
  transform: translateY(-2px);
}
.countdown-image {
  flex: 0.9;
  position: relative;
  min-height: 380px;
}
.countdown-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .countdown-banner {
    flex-direction: column-reverse;
  }
  .countdown-image {
    min-height: 260px;
  }
  .countdown-info {
    padding: 30px 24px;
    align-items: center;
    text-align: center;
  }
  .vkdc-countdown {
    justify-content: center;
  }
}

/* ==========================================================================
   THREE-BANNER GRID SECTION
   ========================================================================== */
.homepage-three-banner {
  padding: 30px 0;
  background: #ffffff;
}
.three-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.three-banner-item {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--etsy-line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.three-banner-link {
  text-decoration: none;
  display: block;
}
.three-banner-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.three-banner-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.three-banner-item:hover .three-banner-img-wrap img {
  transform: scale(1.05);
}
.three-banner-content {
  padding: 18px 20px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--etsy-line);
}
.three-banner-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 6px 0 !important;
}
.btn-underline {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--etsy-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--navy);
  transform: scaleX(0.4);
  transition: transform 0.25s ease;
}
.three-banner-item:hover .btn-underline {
  color: var(--navy);
}
.three-banner-item:hover .btn-underline::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .three-banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   TÁI CẤU TRÚC CHI TIẾT THEO STYLE M.O.I COSMETICS (FINE-TUNING)
   ========================================================================== */

/* 1) Main Category Navigation */
.category-nav {
  background: #ffffff !important;
  border-bottom: 1px solid var(--etsy-line) !important;
}
.category-inner {
  justify-content: center !important;
  gap: 28px !important;
}
.cat-link {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: var(--etsy-text) !important;
  letter-spacing: 0.05em !important;
  position: relative;
  padding: 16px 8px !important;
}
.cat-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8px; right: 8px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.cat-link:hover::after,
.cat-link.active::after {
  transform: scaleX(1);
}

/* 2) Sidebar bộ lọc trang danh mục (products.html) */
.sidebar-section {
  background: #ffffff !important;
  border: 1px solid var(--etsy-line) !important;
  box-shadow: none !important;
  padding: 20px !important;
  border-radius: 8px !important;
}
.sidebar-section h3 {
  border-bottom: 1.5px solid var(--navy) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 16px !important;
}
.cat-list li a:hover,
.cat-list li a.active {
  background: #f7f9fb !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
}
.filter-btn {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-btn:hover {
  background: var(--navy-dark) !important;
}

/* 3) Thẻ sản phẩm & Đánh giá sao (trên mọi trang) */
.product-card {
  border: 1px solid var(--etsy-line) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}
.product-card:hover {
  box-shadow: 0 6px 20px rgba(49,82,133,0.06) !important;
  transform: translateY(-4px) !important;
}
.product-card__img, .card-img-wrap img {
  border-radius: 8px 8px 0 0 !important;
}
.product-card__price, .card-price {
  color: var(--navy) !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
}
.product-card__rating, .card-rating {
  color: var(--gold) !important;
}

/* 4) Trang Chi tiết sản phẩm (product_detail.html) */
.pd-info h1 {
  font-size: 26px !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}
.pd-price {
  color: var(--navy) !important;
  font-size: 28px !important;
}
.pd-voucher {
  background: #ffffff !important;
  border: 1px solid var(--navy) !important;
  color: var(--navy) !important;
  border-radius: 4px !important;
}
.pd-variant-btn {
  border: 1px solid var(--etsy-line) !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  transition: all 0.2s;
}
.pd-variant-btn.active {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  background: #f7f9fb !important;
}
.pd-btn-cart {
  border: 1.5px solid var(--navy) !important;
  background: #ffffff !important;
  color: var(--navy) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
.pd-btn-cart:hover {
  background: var(--navy) !important;
  color: var(--gold) !important;
}
.pd-btn-buy {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
.pd-btn-buy:hover {
  background: var(--navy-dark) !important;
}
.pd-tab-btn {
  font-weight: 600 !important;
  font-size: 14.5px !important;
  padding: 10px 24px !important;
}
.pd-tab-btn.active {
  color: var(--navy) !important;
  border-bottom-color: var(--navy) !important;
}

/* 5) Trang Giỏ hàng (cart.html) */
.cart-card {
  border: 1px solid var(--etsy-line) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
}
.cart-item-name {
  color: var(--navy) !important;
}
.cart-item-name a:hover {
  color: var(--gold) !important;
}
.cart-item-info {
  font-size: 14.5px !important;
}
.btn-checkout, .checkout-btn {
  background: var(--navy) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  border-radius: 4px !important;
}
.btn-checkout:hover, .checkout-btn:hover {
  background: var(--navy-dark) !important;
}

@media (max-width: 480px) {
  .product-grid--2col-tablet {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   HOMEPAGE COUNTDOWN BANNER (Flash Sale / Campaign)
   ========================================================================== */
.home-collection-countdown {
  padding: 50px 0;
  background: #ffffff;
}
.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
}
.countdown-banner {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--etsy-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}
.countdown-info {
  flex: 1.1;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.countdown-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.countdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.25;
  margin: 0 0 14px 0 !important;
}
.countdown-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--etsy-muted);
  margin-bottom: 24px;
}
.vkdc-countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.vkdc-countdown .countdown-item {
  width: 70px; height: 70px;
  border: 1px solid var(--etsy-line);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.2s ease;
}
.vkdc-countdown .countdown-item:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 10px rgba(49, 82, 133, 0.08);
}
.vkdc-countdown .number {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}
.vkdc-countdown .label {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--etsy-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.btn-countdown-cta {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border: 1px solid var(--navy) !important;
  border-radius: 4px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 12px 30px !important;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}
.btn-countdown-cta:hover {
  background: var(--navy-dark) !important;
  transform: translateY(-2px);
}
.countdown-image {
  flex: 0.9;
  position: relative;
  min-height: 380px;
}
.countdown-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .countdown-banner {
    flex-direction: column-reverse;
  }
  .countdown-image {
    min-height: 260px;
  }
  .countdown-info {
    padding: 30px 24px;
    align-items: center;
    text-align: center;
  }
  .vkdc-countdown {
    justify-content: center;
  }
}

/* ==========================================================================
   THREE-BANNER GRID SECTION
   ========================================================================== */
.homepage-three-banner {
  padding: 30px 0;
  background: #ffffff;
}
.three-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.three-banner-item {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--etsy-line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.three-banner-link {
  text-decoration: none;
  display: block;
}
.three-banner-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.three-banner-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.three-banner-item:hover .three-banner-img-wrap img {
  transform: scale(1.05);
}
.three-banner-content {
  padding: 18px 20px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--etsy-line);
}
.three-banner-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 6px 0 !important;
}
.btn-underline {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--etsy-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--navy);
  transform: scaleX(0.4);
  transition: transform 0.25s ease;
}
.three-banner-item:hover .btn-underline {
  color: var(--navy);
}
.three-banner-item:hover .btn-underline::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .three-banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   NATIVE DETAILS ACCORDION (Style M.O.I Cosmetics)
   ========================================================================== */
.product-accordion {
  border-top: 1.5px solid var(--etsy-line);
  margin-top: 40px;
}
.accordion-item {
  border-bottom: 1.5px solid var(--etsy-line);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 0;
  color: var(--navy) !important;
  cursor: pointer;
  user-select: none;
  outline: none;
  list-style: none;
  transition: color 0.2s;
}
.accordion-header::-webkit-details-marker {
  display: none; /* Hide default chrome marker */
}
.accordion-header:hover {
  color: var(--navy-dark) !important;
}
.accordion-content {
  padding: 8px 0 24px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--etsy-text);
}
.accordion-content p {
  margin: 0 0 10px 0;
}
.accordion-content ul, .accordion-content ol {
  padding-left: 20px;
  margin: 10px 0;
}
.accordion-content li {
  margin-bottom: 6px;
}
.chevron {
  transition: transform 0.25s ease-out;
  stroke: var(--navy);
}
details[open] .chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   FINAL OVERRIDES FOR PAGINATION & PRODUCT ACTION BUTTONS (M.O.I Vibe)
   ========================================================================== */
.page-btn.active {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-color: var(--navy) !important;
  font-weight: 700 !important;
}
.page-btn:hover {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.card-actions .icon-btn:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--gold) !important;
}
.card-rating, .pd-stars {
  color: var(--gold) !important;
}
.card-discount {
  background: #fdf2f2 !important;
  color: #e53e3e !important;
  border-radius: 4px !important;
}
.pd-old-price, .card-old-price {
  color: #a0aec0 !important;
  text-decoration: line-through !important;
}

/* ==========================================================================
   COMPACT SLIM FOOTER OVERRIDES
   ========================================================================== */
.site-footer {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  background: var(--navy-dark) !important;
}
.footer-grid {
  padding-bottom: 1.5rem !important;
  gap: 1.5rem !important;
}
.footer-col h4 {
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.35rem !important;
  font-size: 0.95rem !important;
}
.footer-col p, .footer-col ul li {
  margin-bottom: 0.4rem !important;
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
}
.footer-bottom {
  padding: 0.9rem 0 !important;
  font-size: 0.78rem !important;
  margin-top: 1.5rem !important;
}

/* ==========================================================================
   HEADER SPACING & BALANCING OVERRIDES
   ========================================================================== */
.header-inner {
  gap: 2.2rem !important;
  justify-content: space-between !important;
}
.search-bar {
  max-width: 620px !important;
}
.header-nav {
  gap: 1.25rem !important;
}
.header-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13.5px !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}
.header-nav a:hover {
  color: var(--gold) !important;
}
.header-nav a svg {
  flex-shrink: 0;
  stroke: var(--navy) !important;
}
.header-nav a:hover svg {
  stroke: var(--gold) !important;
}

/* ==========================================================================
   BLOG / NEWS PAGES LAYOUT OVERRIDES (Style M.O.I Cosmetics)
   ========================================================================== */
.news-article-card {
  background: #ffffff !important;
  border: 1px solid var(--etsy-line) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: all 0.3s ease;
}
.news-article-card:hover {
  box-shadow: 0 6px 20px rgba(49, 82, 133, 0.05) !important;
  transform: translateY(-3px) !important;
}
.news-article-card__title a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-decoration: none;
}
.news-article-card__title a:hover {
  color: var(--gold) !important;
}
.news-tab {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--etsy-text) !important;
  padding: 10px 18px !important;
  border-bottom: 2px solid transparent !important;
}
.news-tab--active {
  color: var(--navy) !important;
  border-bottom-color: var(--navy) !important;
}
.sidebar-widget__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}
.sidebar-product-card__name {
  color: var(--navy) !important;
  font-size: 13.5px !important;
  text-decoration: none;
}
.sidebar-product-card__name:hover {
  color: var(--gold) !important;
}
.sidebar-product-card__price {
  color: var(--navy) !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   ANNOUNCEMENT BAR BEIGE-WHITE THEMING
   ========================================================================== */
.announcement-bar {
  background: #f9f6f0 !important;
  color: var(--navy) !important;
  border-bottom: 1px solid var(--etsy-line) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.03em !important;
}

/* ==========================================================================
   CATEGORY SLIDER CAROUSEL OVERRIDES
   ========================================================================== */
.category-slider-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.category-grid-wrapper {
  overflow: hidden;
  width: 100%;
}
.category-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  margin-top: 0 !important;
  padding: 8px 0;
}
.category-square-card {
  flex: 0 0 calc((100% - (5 * 20px)) / 6) !important; /* 6 items per row */
  max-width: none !important;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .category-square-card {
    flex: 0 0 calc((100% - (3 * 16px)) / 4) !important; /* 4 items per row */
  }
  .category-grid { gap: 16px !important; }
}
@media (max-width: 600px) {
  .category-square-card {
    flex: 0 0 calc((100% - (1 * 12px)) / 2) !important; /* 2 items per row */
  }
  .category-grid { gap: 12px !important; }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--etsy-line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--navy);
  transition: all 0.2s ease;
  padding: 0;
}
.slider-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(49,82,133,0.15);
}
.slider-arrow--prev {
  left: -18px;
}
.slider-arrow--next {
  right: -18px;
}
@media (max-width: 768px) {
  .slider-arrow--prev { left: -8px; }
  .slider-arrow--next { right: -8px; }
}

/* ==========================================================================
   FLASH SALE REDESIGN (High-end Navy & Gold countdown section)
   ========================================================================== */
.flash-sale-section {
  background: var(--navy-dark) !important;
  padding: 50px 0 !important;
  color: #ffffff;
}
.flash-sale-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 18px;
}
.flash-sale-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.flash-sale-fire {
  display: inline-block;
  animation: fs-flame 1.5s ease-in-out infinite;
}
@keyframes fs-flame {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(5deg); }
}
.flash-sale-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
}
.fs-countdown-label {
  margin-right: 5px;
  font-size: 11px;
  color: var(--gold-light);
}
.fs-time-box {
  background: #ffffff;
  color: var(--navy-dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  min-width: 28px;
  text-align: center;
}

.flash-sale-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 1200px) {
  .flash-sale-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 992px) {
  .flash-sale-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}
@media (max-width: 600px) {
  .flash-sale-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

.flash-sale-card {
  background: #ffffff !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}
.flash-sale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(254,222,119,0.1);
}
.flash-sale-card__img-wrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #f6f2ec;
}
.flash-sale-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.flash-sale-card:hover .flash-sale-card__img {
  transform: scale(1.05);
}
.flash-sale-card__discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53e3e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 2;
}
.flash-sale-card__body {
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.flash-sale-card__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 6px !important;
  line-height: 1.35 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}
.flash-sale-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.flash-sale-card__price {
  color: #e53e3e !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}
.flash-sale-card__old-price {
  color: #a0aec0 !important;
  text-decoration: line-through !important;
  font-size: 10.5px !important;
}

.flash-sale-progress {
  position: relative;
  height: 11px !important;
  background: #e8e6dc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash-sale-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #F1641E, #e53e3e);
  border-radius: 6px;
  z-index: 1;
}
.flash-sale-progress__text {
  position: relative;
  z-index: 2;
  font-size: 7.5px !important;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.flash-sale-card__cta {
  width: 100%;
  text-align: center;
  padding: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  margin-top: auto;
}

/* ==========================================================================
   TYPOGRAPHIC BRAND LOGO (DNA colors & Serif uppercase styling)
   ========================================================================== */
.typographic-logo {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}
.typographic-logo .logo-brand {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  color: var(--navy) !important; /* Xanh Navy DNA */
  text-transform: uppercase !important;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-shadow: 0.5px 0.5px 0px rgba(254, 222, 119, 0.4);
}
.typographic-logo:hover .logo-brand {
  color: var(--gold-dark) !important; /* Gold hover */
  transform: translateY(-1px);
}
.footer-typographic-logo .logo-brand {
  color: var(--gold-light) !important; /* Gold on Dark Navy footer bg */
  font-size: 21px !important;
  text-shadow: none !important;
}
.footer-typographic-logo:hover .logo-brand {
  color: #ffffff !important;
}

/* ==========================================================================
   ALIGN MAIN MENU WIDTH WITH BANNER & HEADER CONTAINER (Shrink to Left)
   ========================================================================== */
.category-inner {
  max-width: 1264px !important; /* Matches exactly the banner container edges */
  margin: 0 auto !important;
  display: flex !important;
  justify-content: flex-start !important; /* Align left */
  gap: 40px !important; /* Standard luxury spacing between links */
  padding: 0 !important;
}
.category-inner .cat-item:first-child .cat-link {
  padding-left: 0 !important;
}

/* ==========================================================================
   GLOBAL BUTTON BACKGROUND SYNCHRONIZATION
   ========================================================================== */
.btn, .btn-primary, .btn-gold, .btn-buy, .pd-btn-buy, .flash-sale-card__cta, .cb-buy-btn, .btn-success, .btn-danger, .auth-btn {
  background: var(--navy) !important;
  color: #ffffff !important;
  border: 1px solid var(--navy) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  transition: all 0.25s ease !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
.btn:hover, .btn-primary:hover, .btn-gold:hover, .btn-buy:hover, .pd-btn-buy:hover, .flash-sale-card__cta:hover, .cb-buy-btn:hover, .auth-btn:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
  border-color: var(--gold-dark) !important;
}
.btn-secondary, .btn-outline-gold, .pd-btn-cart {
  background: #ffffff !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  transition: all 0.25s ease !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
.btn-secondary:hover, .btn-outline-gold:hover, .pd-btn-cart:hover {
  background: var(--navy) !important;
  color: #ffffff !important;
  border-color: var(--navy) !important;
}

/* ==========================================================================
   MOBILE & RESPONSIVE FRIENDLY OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 992px) {
  .category-inner {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  .category-inner .cat-item:first-child .cat-link {
    padding-left: 8px !important;
  }
  .category-inner .cat-item:last-child .cat-link {
    padding-right: 8px !important;
  }
}
@media (max-width: 480px) {
  .typographic-logo .logo-brand {
    font-size: 16px !important;
    letter-spacing: 0.1em !important;
  }
}

/* ==========================================================================
   MEGA MENU STYLIZATION OVERRIDES (moicosmetics.vn luxury layout)
   ========================================================================== */
.category-nav {
  position: relative !important; /* Boundary wrapper for absolute mega menu placement */
}
.cat-item--has-mega {
  position: static !important; /* Forces mega menu width to span container limits */
}
.mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  background: #ffffff !important;
  border-top: 1px solid var(--etsy-line) !important;
  border-bottom: 2px solid var(--navy) !important;
  box-shadow: 0 10px 30px rgba(26, 47, 76, 0.08) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(12px) !important;
  transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  z-index: 1000 !important;
  padding: 35px 0 !important;
  pointer-events: none !important;
}
.cat-item--has-mega:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.mega-menu-grid {
  max-width: 1264px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px 24px !important;
  padding: 0 20px !important;
}
.mega-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  text-align: left !important;
}
.mega-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--etsy-line) !important;
  padding-bottom: 6px !important;
  letter-spacing: 0.06em !important;
  display: block !important;
  transition: color 0.2s ease !important;
}
.mega-heading:hover {
  color: var(--gold-dark) !important;
}
.mega-subcategories {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.mega-sub-link {
  font-size: 13px !important;
  color: #666666 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}
.mega-sub-link:hover {
  color: var(--gold-dark) !important;
  transform: translateX(4px) !important;
}

/* Ensure mobile overrides don't break mega menu content view */
@media (max-width: 992px) {
  .cat-item--has-mega {
    position: relative !important;
  }
  .mega-menu {
    position: absolute !important;
    width: 280px !important;
    left: auto !important;
    right: 0 !important;
    padding: 15px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    border-radius: 6px !important;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 0 !important;
  }
}
