/* Layout Components & Section Styles */

/* ---------------- HEADER & NAV ---------------- */
.top-bar {
  background-color: #0b0c10;
  color: var(--color-white);
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.top-bar a:hover {
  color: var(--color-white);
}

.main-header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 16px 0;
  color: var(--color-white);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-white);
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.brand-identity:hover {
  opacity: 0.92;
}

.brand-avatar-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #c9a96e 0%, #f5e6c8 50%, #c9a96e 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-identity:hover .brand-avatar-ring {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.4);
}

.brand-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-top: 2px;
  white-space: nowrap;
}

.menu-toggle-btn {
  color: var(--color-white);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 6px;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 0;
}

.nav-menu-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-menu-links a.active,
.nav-menu-links a:hover {
  color: var(--color-white);
}

.nav-menu-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9a96e;
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  position: relative;
  height: calc(100vh - 38px);
  min-height: 640px;
  background-color: #0b0c10;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 50px;
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 12px;
  max-width: 650px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-stats-line {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.hero-bottom-controls {
  position: absolute;
  right: 24px;
  bottom: 50px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.hero-location-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-nav-btns {
  display: flex;
  gap: 12px;
}

.hero-btn {
  color: var(--color-white);
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.hero-btn:hover {
  opacity: 1;
}

/* ---------------- FEATURED CATEGORIES ---------------- */
.categories-section {
  padding: var(--section-padding);
}

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

.category-card {
  position: relative;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  display: block;
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .category-card-bg {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.category-card-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-white);
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.article-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.magazine-dropcap::first-letter {
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.magazine-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  margin: 40px auto;
  padding: 30px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-color);
  max-width: 80%;
}

.magazine-figure {
  margin: 40px 0;
  width: 100%;
}

.magazine-figure img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.magazine-figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
  font-style: italic;
}

.category-card-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.category-card-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-arrow {
  transform: translateX(4px);
}

/* ---------------- TRENDING SECTION ---------------- */
.trending-section {
  padding-bottom: 80px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  background-color: var(--color-white);
}

.slider-arrow-btn:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.trending-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.trending-slider-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.trending-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.trending-card {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.trending-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 12px;
  background-color: #f0f0f0;
}

.trending-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trending-card:hover .trending-img-wrapper img {
  transform: scale(1.05);
}

.trending-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.trending-title {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------------- NEWS SECTION ---------------- */
.news-section {
  padding-bottom: 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Left Featured Article */
.featured-news-card {
  position: relative;
  height: 460px;
  border-radius: 2px;
  overflow: hidden;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.featured-news-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.featured-news-card:hover .featured-news-bg {
  transform: scale(1.04);
}

.featured-news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.news-date-badge {
  position: relative;
  z-index: 5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.featured-news-title {
  position: relative;
  z-index: 5;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 12px;
}

.featured-news-excerpt {
  position: relative;
  z-index: 5;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Right Side Stacked News */
.side-news-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.side-news-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.side-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.side-news-thumb {
  width: 140px;
  height: 95px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.side-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.side-news-item:hover .side-news-thumb img {
  transform: scale(1.08);
}

.side-news-content {
  display: flex;
  flex-direction: column;
}

.side-news-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.side-news-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.side-news-excerpt {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

/* ---------------- PODCAST BANNER ---------------- */
.podcast-section {
  padding: 60px 0 90px;
  background-color: #fafafa;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.podcast-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.podcast-section .section-title {
  margin-bottom: 0;
}

.podcast-section-subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.podcast-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.podcast-card-box {
  background-color: var(--color-white);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.podcast-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  border-color: #d0d0d0;
}

.podcast-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.podcast-host-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.host-avatar-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  flex-shrink: 0;
}

.host-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.host-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.host-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-dark);
}

.podcast-ep-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: #f2f2f2;
  color: #555;
  padding: 4px 8px;
  border-radius: 4px;
}

.podcast-mid-body {
  flex: 1;
  margin-bottom: 20px;
}

.podcast-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.podcast-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}

.podcast-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.podcast-cta-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.podcast-duration {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.host-role {
  font-size: 0.65rem;
  color: #777777;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background-color: #0d0d0d;
  color: #a0a0a0;
  padding: 60px 0 30px 0;
  font-size: 0.85rem;
  border-top: 1px solid #1f1f1f;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-col-heading {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a:hover {
  color: var(--color-white);
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #666666;
}

/* ---------------- AUDIO MODAL ---------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.audio-modal-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 36px;
  width: 90%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--color-muted);
}

.audio-player-wrapper {
  margin-top: 24px;
}

audio {
  width: 100%;
  margin-top: 12px;
}

/* ---------------- TABS SECTION ---------------- */
.tabs-section {
  padding: 60px 0;
}

.tabs-header {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
  overflow-x: auto;
  white-space: nowrap;
}

.tab-btn {
  padding: 15px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-speed);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.top-listing-card {
  position: relative;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.top-listing-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.top-listing-card:hover .top-listing-img {
  transform: scale(1.05);
}

.top-listing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.top-listing-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
  color: var(--color-white);
}

.top-listing-info h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.top-listing-info p {
  font-size: 0.85rem;
  opacity: 0.85;
}

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

.grid-card {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.grid-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.82) 100%);
}

.grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}

.grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-card:hover .grid-img img {
  transform: scale(1.06);
}

.grid-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 10;
  color: var(--color-white);
}

.grid-card h5 {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.grid-card-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.grid-card p.grid-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.grid-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

/* Tab Editorial Specific */
/* Override overlay style for JS-rendered editorial grid cards */
#editorial-grid .grid-card {
  height: auto;
  overflow: visible;
  border-radius: 4px;
}

#editorial-grid .grid-card::after {
  display: none;
}

#editorial-grid .grid-img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 200px;
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
}

#editorial-grid .grid-card h5 {
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

#editorial-grid .grid-card p {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

.editorial-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  border: 1px solid var(--color-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.editorial-btn:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}


/* ---------------- ZALO FLOATING BUTTON ---------------- */
.zalo-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0068FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.4);
  text-decoration: none;
}

.zalo-icon {
  color: white;
  font-size: 1.8rem;
  z-index: 10;
}

.zalo-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0068FF;
  opacity: 0.5;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---------------- CAR DETAILS & SUB-TABS ---------------- */
.car-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.car-brand {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.car-price {
  font-family: var(--font-serif);
  font-size: 0.88rem !important;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: 0.04em;
}

.sub-tabs-header {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.sub-tab-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sub-tab-btn:hover,
.sub-tab-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.sub-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.sub-tab-content.active {
  display: block;
}