/* ==========================================================================
   PONAZ CIGAR - MAIN STYLESHEET (FULL LUXURY & HIGH CONTRAST)
   ========================================================================== */

/* ===================== TOKENS & CẤU HÌNH MÀU SẮC ===================== */
:root {
  --black: #080706;
  --panel: #110e0b;
  --panel-2: #18130e;
  --panel-line: rgba(223, 183, 108, 0.28); /* Viền vàng mảnh 1px sắc nét */
  --gold: #dfb76c;
  --gold-light: #f3e0aa;
  --gold-deep: #b88e39;
  --wine: #7a2727;
  --cream: #f4eee0;
  --muted: #b8a88a;
  --muted-2: #76695a;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(223, 183, 108, 0.04);
  --radius: 2px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  /* Khử mờ chữ trên nền tối - Giúp chữ nét căng */
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button, input, textarea {
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}
button {
  cursor: pointer;
}
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.section-title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.section-head {
  margin-bottom: 0;
}
section {
  position: relative;
}
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--panel-line), transparent);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===================== BUTTONS METALLIC GOLD ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #f3e0aa 0%, #dfb76c 50%, #b88e39 100%);
  color: #0d0b09;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffffff 0%, #dfb76c 100%);
  box-shadow: 0 6px 20px rgba(223, 183, 108, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(13, 11, 9, 0.6);
  color: var(--gold-light);
  border: 1px solid rgba(223, 183, 108, 0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0d0b09;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.3);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 11px 18px;
  font-size: 11px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 7, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-line);
  transition: background 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  box-shadow: 0 0 10px rgba(223, 183, 108, 0.2);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .l1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold-light);
}
.brand-text .l2 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}
.main-nav ul {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--gold-light);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.icon-btn {
  font-size: 15px;
  color: var(--cream);
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.3s, color 0.3s;
}
.icon-btn:hover {
  border-color: var(--panel-line);
  color: var(--gold);
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1208;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-login {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.btn-login:hover {
  background: var(--gold);
  color: #1a1208;
  box-shadow: 0 0 12px rgba(223, 183, 108, 0.4);
}
.burger {
  display: none;
  font-size: 20px;
  color: var(--gold-light);
  background: none;
  border: none;
}

/* ===================== HERO BANNER (SÁNG NẾT CHUẨN MOCKUP) ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Lớp phủ Gradient làm tối vừa đủ mép trái để đọc chữ, nhường độ sáng trong cho ảnh */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 5, 4, 0.75) 0%,
    rgba(6, 5, 4, 0.45) 35%,
    rgba(6, 5, 4, 0.10) 65%,
    rgba(6, 5, 4, 0.30) 100%
  ) !important;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow {
  justify-content: flex-start;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin: 0 0 4px;
  background: linear-gradient(135deg, #f3e0aa 0%, #dfb76c 40%, #b88e39 80%, #7a2727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8)) !important;
}
.hero-sub-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 54px);
  letter-spacing: 14px;
  margin: 0 0 22px;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-light);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8)) !important;
}
.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cream);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tagline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--panel-line), transparent);
  max-width: 140px;
}
.hero-text {
  color: #e2d3b7 !important;
  font-size: 15px;
  font-weight: 300;
  max-width: 430px;
  margin: 0 0 34px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
}
.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-social {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 60;
}
.hero-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(17, 14, 11, 0.7);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-social a:hover {
  color: #0d0b09;
  background: var(--gold);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 20px rgba(223, 183, 108, 0.6);
}

.scroll-label {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted-2);
  margin-top: 6px;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--panel-line), transparent);
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}
.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(223, 183, 108, 0.3);
  transition: 0.3s;
}
.hero-dots span.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(223, 183, 108, 0.6);
}

/* HERO SLIDER (CẤU HÌNH LỌC ẢNH SÁNG NẾT) */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease;
  
  /* TĂNG TƯƠNG PHẢN, ĐỘ NẾT VÀ TƯƠI MÀU */
  filter: brightness(1.08) contrast(1.12) saturate(1.15) !important;
  image-rendering: -webkit-optimize-contrast !important;
  transform: scale(1.01);
}
.hero-slide.active {
  opacity: 1;
}

/* ===================== FEATURES STRIP ===================== */
.features {
  background: var(--panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  padding: 54px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 14px;
  cursor: pointer;
  transition: transform 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.feature-item:not(:last-child) {
  border-right: 1px solid var(--panel-line);
}
.feature-item:hover,
.feature-item:focus-visible,
.feature-item.is-active {
  transform: translateY(-4px);
  outline: none;
}
.feature-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  background: rgba(223, 183, 108, 0.05);
}
.feature-item:hover .feature-icon,
.feature-item:focus-visible .feature-icon,
.feature-item.is-active .feature-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(223, 183, 108, 0.15), 0 6px 18px -4px rgba(223, 183, 108, 0.55);
  transform: scale(1.1) rotate(-6deg);
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  margin: 2px 0 6px;
  color: var(--gold-light);
  position: relative;
  display: inline-block;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}
.feature-item h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.feature-item:hover h4::after,
.feature-item:focus-visible h4::after,
.feature-item.is-active h4::after {
  width: 100%;
}
.feature-item:hover h4,
.feature-item:focus-visible h4,
.feature-item.is-active h4 {
  color: var(--gold);
  letter-spacing: 3px;
}
.feature-item p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  font-weight: 300;
  transition: color 0.35s ease;
}
.feature-item:hover p,
.feature-item:focus-visible p,
.feature-item.is-active p {
  color: var(--gold-light);
}

/* ===================== MEDIA PLACEHOLDER ===================== */
.media-panel {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(223, 183, 108, 0.14), transparent 55%),
    linear-gradient(150deg, #1c1712 0%, #100d09 100%);
  border: 1px solid var(--panel-line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(223, 183, 108, 0.04) 0 2px, transparent 2px 26px);
}

/* ===================== COLLECTION / SẢN PHẨM ===================== */
.collection {
  padding: 110px 0;
  background: var(--black);
}
.collection-slider {
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: rgba(17, 14, 11, 0.95);
  border: 1px solid var(--panel-line);
  border-radius: 2px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 183, 108, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(223, 183, 108, 0.15);
}
.product-media {
  aspect-ratio: 1/1;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--wine);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 5px 10px;
}
.badge.gold {
  background: linear-gradient(135deg, #f3e0aa 0%, #dfb76c 100%);
  color: #0d0b09;
}
.badge.outline {
  background: rgba(8, 7, 6, 0.7);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.product-info {
  padding: 22px 20px 24px;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: #ffffff;
}
.product-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 16px;
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--panel-line);
  padding: 11px 16px;
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: var(--cream);
  transition: 0.3s;
}
.product-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(223, 183, 108, 0.08);
}
.slider-arrow {
  position: absolute;
  top: 38%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--panel-line);
  background: rgba(20, 17, 13, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}
.slider-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #1a1208;
  box-shadow: 0 0 15px rgba(223, 183, 108, 0.4);
}
.slider-arrow.left {
  left: -58px;
}
.slider-arrow.right {
  right: -58px;
}
.collection-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================== LIFESTYLE ===================== */
.lifestyle {
  padding: 0;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  min-height: 520px;
}
.lifestyle-grid .media-panel {
  border: none;
  border-radius: 0;
  height: 100%;
}
.lifestyle-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
  background: #0e0b09;
}
.lifestyle-center::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--panel-line);
}
.lifestyle-center-inner {
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.lifestyle-center h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 600;
}
.lifestyle-center h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: #ffffff;
  margin: 0 0 18px;
  letter-spacing: 1px;
}
.lifestyle-center p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 26px;
}

/* ===================== VIP / CIGAR CLUB ===================== */
.vip {
  padding: 110px 0;
  background: var(--panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}
.vip-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 54px;
  align-items: center;
}
.vip-text .eyebrow {
  justify-content: flex-start;
}
.vip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: #ffffff;
  margin: 0 0 18px;
  line-height: 1.25;
}
.vip-text h2 span {
  color: var(--gold);
}
.vip-text p {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 300;
  margin: 0 0 30px;
  max-width: 340px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  position: relative;
  background: linear-gradient(160deg, #18130e, #0c0a08);
  border: 1px solid var(--panel-line);
  padding: 34px 26px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.tier-card::before,
.tier-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-deep);
  opacity: 0.6;
}
.tier-card::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.tier-card::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.tier-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  background: linear-gradient(160deg, #241c10, #0c0a08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(223, 183, 108, 0.08);
}
.tier-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.tier-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin: 0 0 6px;
}
.tier-price {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}
.tier-price strong {
  color: #ffffff;
  font-size: 16px;
  display: block;
  font-family: var(--font-display);
}
.tier-list {
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: left;
  font-weight: 300;
}
.tier-list i {
  color: var(--gold);
  font-size: 11px;
  margin-top: 2px;
}

/* ===================== EVENTS ===================== */
.events {
  padding: 110px 0;
  background: var(--black);
}
.events-slider {
  position: relative;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.event-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  overflow: hidden;
  transition: 0.35s;
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}
.event-media {
  aspect-ratio: 4/3;
}
.event-info {
  padding: 20px 20px 24px;
}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0 0 10px;
}
.event-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-loc i {
  color: var(--gold);
  font-size: 11px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 110px 0;
  background: var(--panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: linear-gradient(160deg, #18130e, #0c0a08);
  border: 1px solid var(--panel-line);
  padding: 36px 30px;
  border-radius: 2px;
}
.testi-quote {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
  opacity: 0.9;
}
.testi-text {
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 18px;
  min-height: 72px;
  line-height: 1.6;
}
.stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--panel-line);
  padding-top: 18px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2a2218, #15110b);
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 14px;
}
.testi-person h5 {
  margin: 0;
  font-size: 13.5px;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.testi-person span {
  font-size: 11.5px;
  color: var(--muted);
}

/* ===================== NEWS ===================== */
.news {
  padding: 110px 0;
  background: var(--black);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.news-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  transition: 0.35s;
}
.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}
.news-media {
  aspect-ratio: 4/3;
}
.news-info {
  padding: 20px 20px 24px;
}
.news-tag {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}
.news-info h3 {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 14px;
  min-height: 42px;
}
.news-link {
  font-size: 11.5px;
  letter-spacing: 1.4px;
  color: var(--muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.news-card:hover .news-link {
  color: var(--gold);
}

/* ===================== BRANDS STRIP ===================== */
.brands {
  padding: 46px 0;
  background: var(--panel);
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  overflow: hidden;
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: scrollBrands 32s linear infinite;
}
.brands-track span {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brands-track span i {
  font-size: 12px;
  color: var(--gold-deep);
}
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #060504;
  padding: 90px 0 0;
  border-top: 1px solid var(--panel-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1.3fr;
  gap: 34px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--panel-line);
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 300;
  max-width: 230px;
  margin: 0 0 18px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--panel-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  transition: 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(223, 183, 108, 0.3);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 300;
  transition: 0.3s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 300;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 3px;
}
.newsletter-input {
  display: flex;
  border: 1px solid var(--panel-line);
  margin-top: 6px;
  border-radius: 2px;
  overflow: hidden;
}
.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: var(--cream);
  font-size: 12.5px;
  font-family: inherit;
}
.newsletter-input input:focus {
  outline: none;
}
.newsletter-input input::placeholder {
  color: var(--muted-2);
}
.newsletter-input button {
  background: var(--gold);
  border: none;
  color: #1a1208;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.3s;
}
.newsletter-input button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: var(--muted-2);
}
.footer-bottom a {
  color: var(--muted-2);
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ================= PONAZ CIGAR - TRANG LIÊN HỆ CỰC NẾT ================= */

/* 1. XÓA BỎ GET IN TOUCH & DỊCH CHUYỂN TOÀN BỘ KHỐI LÊN TRÊN */
.eyebrow-badge,
.contact-header-section .eyebrow-badge {
  display: none !important;
}

.site-main,
.entry-content,
article,
.type-page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.luxury-contact-wrapper {
  max-width: 1240px !important;
  margin: -1px auto 0 auto !important;
  padding: 0 15px 30px !important;
  color: #f4eee0;
  box-sizing: border-box !important;
}

/* 2. CĂN GIỮA TIÊU ĐỀ & ĐỔI MÀU VÀNG "HỆ VỚI CHÚNG TÔI" */
.contact-header-section {
  text-align: center !important;
  margin-bottom: 26px !important;
}

.contact-main-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 1.5px !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.contact-main-title span {
  background: linear-gradient(135deg, #f3e0aa 0%, #dfb76c 50%, #c9a052 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.contact-subtext {
  color: #c5b596 !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
  font-weight: 300 !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

/* 3. CARD THÔNG TIN & FORM VIỀN 1PX SÁNG NẾT */
.contact-grid-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 30px !important;
  width: 100% !important;
  margin-top: 18px !important;
}

.contact-grid-container > div,
.luxury-card {
  flex: 1 1 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  background: rgba(14, 11, 9, 0.92) !important;
  border: 1px solid rgba(223, 183, 108, 0.4) !important;
  border-radius: 2px !important;
  padding: 24px 26px !important;
  box-sizing: border-box !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(223, 183, 108, 0.05) !important;
  backdrop-filter: blur(8px) !important;
}

.card-heading {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #dfb76c !important;
  letter-spacing: 1.2px !important;
  border-bottom: 1px solid rgba(223, 183, 108, 0.2) !important;
  padding-bottom: 8px !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}

.card-subheading {
  font-size: 15.5px !important;
  line-height: 1.55 !important;
  color: #a8997d !important;
  margin-bottom: 16px !important;
}

.contact-info-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.info-label {
  font-size: 15.5px !important;
  font-weight: 600 !important;
  color: #dfb76c !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 3px !important;
  line-height: 1.4 !important;
}

.info-value {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #f4eee0 !important;
  margin: 0 !important;
}

/* FORM WPFORMS */
.wpforms-field {
  padding: 0 0 10px 0 !important;
}

.wpforms-field-label {
  font-size: 14.5px !important;
  color: #dfb76c !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea {
  font-size: 14.5px !important;
  padding: 10px 12px !important;
  line-height: 1.5 !important;
  background: rgba(5, 4, 3, 0.95) !important;
  border: 1px solid rgba(223, 183, 108, 0.3) !important;
  color: #ffffff !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: #dfb76c !important;
  box-shadow: 0 0 8px rgba(223, 183, 108, 0.35) !important;
  outline: none !important;
}

.wpforms-field textarea {
  height: 60px !important;
  resize: none !important;
}

.wpforms-submit-container button[type="submit"] {
  background: linear-gradient(135deg, #e6ca85 0%, #dfb76c 50%, #b88e39 100%) !important;
  color: #0d0b09 !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2px !important;
  padding: 12px 20px !important;
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.25) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.wpforms-submit-container button[type="submit"]:hover {
  background: linear-gradient(135deg, #ffffff 0%, #dfb76c 100%) !important;
  box-shadow: 0 6px 20px rgba(223, 183, 108, 0.5) !important;
  transform: translateY(-1px) !important;
}

/* ICON VÀ CHỮ NẰM TRÊN HÀNG NGANG */
.contact-info-list .info-row,
.luxury-card .info-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.svg-icon-wrap,
.info-row svg {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  margin-top: 2px !important;
}

.info-text-group {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.info-label {
  display: block !important;
  margin-bottom: 2px !important;
}

.info-value {
  margin: 0 !important;
}

/* ==========================================================================
   CÔNG NGHỆ NHẬN DIỆN MÀN HÌNH & RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1. MÀN HÌNH MÁY TÍNH LỚN (Trên 1200px) */
@media screen and (min-width: 1200px) {
  .luxury-contact-wrapper {
    max-width: 1240px !important;
  }
}

/* 2. LAPTOP NHỎ & TABLET XOAY NGANG (992px - 1199px) */
@media screen and (max-width: 1199px) {
  .luxury-contact-wrapper {
    max-width: 96% !important;
  }
  
  .contact-main-title {
    font-size: 28px !important;
  }

  .contact-grid-container {
    gap: 20px !important;
  }
}

/* 3. TABLET CHUẨN (768px - 1100px) */
@media (max-width: 1100px) {
  .header-inner {
    padding: 14px 24px;
  }
  .main-nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content .eyebrow,
  .hero-tagline {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-social {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
  .feature-item:nth-child(2n) {
    border-right: none;
  }
  .feature-item:not(:nth-last-child(-n + 2)) {
    border-bottom: 1px solid var(--panel-line);
    padding-bottom: 24px;
  }
  .product-grid,
  .event-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid .media-panel {
    height: 260px;
  }
  .vip-grid {
    grid-template-columns: 1fr;
  }
  .vip-text {
    text-align: center;
  }
  .vip-text .eyebrow {
    justify-content: center;
  }
  .vip-text p {
    margin: 0 auto 30px;
  }
  .tier-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slider-arrow {
    display: none;
  }
}

/* 4. MÀN HÌNH ĐIỆN THOẠI (MOBILE) (Dưới 767px) */
@media screen and (max-width: 767px) {
  .container {
    padding: 0 22px;
  }
  .header-inner {
    padding: 14px 18px;
  }
  .btn-login {
    display: none;
  }
  .product-grid,
  .event-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .hero-wordmark {
    font-size: 54px;
  }
  .hero-sub-wordmark {
    font-size: 32px;
    letter-spacing: 8px;
  }

  /* Responsive riêng cho Trang Liên Hệ trên Mobile */
  .luxury-contact-wrapper {
    padding: 0 12px 20px !important;
  }

  .contact-main-title {
    font-size: 24px !important;
  }

  .contact-subtext {
    font-size: 14px !important;
    padding: 0 10px !important;
  }

  /* Tự động xếp chồng 1 cột dọc */
  .contact-grid-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .contact-grid-container > div,
  .luxury-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 18px 16px !important;
  }

  .wpforms-submit-container button[type="submit"] {
    width: 100% !important;
    text-align: center !important;
  }
}

/* 5. MÀN HÌNH ĐIỆN THOẠI SIÊU NHỎ (Dưới 480px) */
@media screen and (max-width: 480px) {
  .contact-main-title {
    font-size: 22px !important;
  }

  .card-heading {
    font-size: 16px !important;
  }
}
/* ===================== GLOBAL MENU MODULE EXTENSION ===================== */

/* Hiệu ứng Header khi cuộn trang */
.site-header.is-scrolled {
  background: rgba(6, 5, 4, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(223, 183, 108, 0.3);
  padding: 2px 0;
}

/* Tối ưu hiệu ứng Hover & Active Menu Item */
.main-nav a.active {
  color: var(--gold-light) !important;
  font-weight: 700 !important;
}
.main-nav a.active::after {
  width: 100% !important;
}

/* Giao diện Mobile Drawer Menu khi bấm Burger Icon */
@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 8, 6, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--panel-line);
    padding: 30px 20px;
    display: flex !important;
    justify-content: center;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .main-nav a {
    font-size: 14px;
    letter-spacing: 2.5px;
  }
}