/* =========================================================================
   JIGME BHUTAN REAL ESTATE & MARKETPLACE - LUXURY THEME STYLESHEET
   Royal Crimson (#9e1b27) & Imperial Gold (#d97706) & Midnight Navy (#0f172a)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --bhutan-crimson: #9e1b27;
  --bhutan-crimson-dark: #80131d;
  --bhutan-crimson-light: #b91c1c;
  --bhutan-gold: #d97706;
  --bhutan-gold-light: #fbbf24;
  --bhutan-gold-amber: #f59e0b;
  --bhutan-navy: #0f172a;
  --bhutan-navy-dark: #090d16;
  --bhutan-slate: #334155;
  --bhutan-cream: #fcfbf7;
  --bhutan-warm: #f8f6f0;
  --bhutan-bg: #FAFAF7;
  --color-primary: #9e1b27 !important;
  --color-primary-rgb: 158, 27, 39 !important;
  --color-secondary: #0f172a !important;
  --color-secondary-rgb: 15, 23, 42 !important;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  background-color: var(--bhutan-bg) !important;
  color: #1e293b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-display, .section-title, .hero-title, .property-price {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif !important;
  letter-spacing: -0.01em;
}

/* =========================================================================
   1. TOP CULTURAL MICRO-BAR
   ========================================================================= */
.top-cultural-bar {
  background: var(--bhutan-navy-dark);
  color: #cbd5e1;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
  position: relative;
  z-index: 999;
}
.top-cultural-bar a {
  color: #e2e8f0;
  transition: color 0.2s ease;
}
.top-cultural-bar a:hover {
  color: var(--bhutan-gold-light);
}
.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* =========================================================================
   2. INITIAL STANDARD TOP HEADER & ANIMATED FLOATING CAPSULE NAVBAR
   ========================================================================= */
.standard-top-header {
  width: 100%;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 1000;
}

.top-cultural-bar {
  background: #0f172a !important;
  color: #cbd5e1 !important;
  font-size: 11px !important;
  padding: 4px 0 !important;
  line-height: 1.2 !important;
  border-bottom: 1px solid rgba(217, 119, 6, 0.35) !important;
}

.bhutan-main-nav {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.bhutan-main-nav .nav-item-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  padding: 6px 14px !important;
  margin: 0 2px !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bhutan-main-nav .nav-item-pill .nav-icon {
  font-size: 13px !important;
}

.bhutan-main-nav .nav-item-pill:hover,
.bhutan-main-nav .nav-item-pill.active {
  color: var(--bhutan-crimson) !important;
  background: #fff1f2 !important;
  box-shadow: 0 2px 6px rgba(158, 27, 39, 0.08) !important;
  text-decoration: none !important;
}

/* Floating Liquid-Glass Capsule Navbar (Smooth Slide-Down on Scroll > 80px) */
.floating-capsule-container {
  position: fixed !important;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1050 !important;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-capsule-container.capsule-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.liquid-glass-capsule {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 9999px !important;
  padding: 6px 16px !important;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(217, 119, 6, 0.1) !important;
}

.capsule-nav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 6px 13px !important;
  border-radius: 9999px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.capsule-nav-link:hover,
.capsule-nav-link.active {
  color: var(--bhutan-crimson) !important;
  background: #fff1f2 !important;
}

/* =========================================================================
   ANIMATED CAPSULE SCROLL PROGRESS INDICATOR (ONLY ON SCROLL IN CAPSULE)
   ========================================================================= */
.capsule-progress-track {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2.5px;
  background: rgba(226, 232, 240, 0.4);
  border-radius: 9999px;
  overflow: hidden;
  z-index: 10;
}

.capsule-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #9e1b27 0%, #d97706 60%, #fbbf24 100%);
  box-shadow: 0 0 8px rgba(217, 119, 6, 0.8);
  transition: width 0.12s ease-out;
  border-radius: 9999px;
}

.hero-capsule-search {
  background: #ffffff !important;
  border-radius: 9999px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
}

.hero-search-slot {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.hero-search-slot:focus-within {
  background: #ffffff;
  border-color: #9e1b27;
  box-shadow: 0 0 0 3px rgba(158, 27, 39, 0.08);
}

@media (max-width: 767.98px) {
  .hero-capsule-search {
    border-radius: 22px !important;
    padding: 16px 14px !important;
  }
}

@media (min-width: 768px) {
  .hero-search-slot {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 18px !important;
    margin-bottom: 0;
  }
  .hero-search-slot:focus-within {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}




.liquid-glass-capsule .navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bhutan-crimson) !important;
  text-decoration: none;
}

.liquid-glass-capsule .navbar-brand img {
  max-height: 42px;
  border-radius: 8px;
}
.liquid-glass-capsule .nav-link {
  color: #1e293b !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: 9999px;
  transition: all 0.25s ease;
}
.liquid-glass-capsule .nav-link:hover,
.liquid-glass-capsule .nav-link.active {
  color: var(--bhutan-crimson) !important;
  background: rgba(158, 27, 39, 0.08);
}

.btn-royal-crimson {
  background: linear-gradient(135deg, var(--bhutan-crimson) 0%, var(--bhutan-crimson-dark) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(217, 119, 6, 0.4) !important;
  font-weight: 600;
  border-radius: 9999px !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 14px rgba(158, 27, 39, 0.35);
  transition: all 0.25s ease !important;
}
.btn-royal-crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 27, 39, 0.45);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--bhutan-crimson-light) 0%, var(--bhutan-crimson) 100%) !important;
}

.btn-imperial-gold {
  background: linear-gradient(135deg, var(--bhutan-gold) 0%, #b45309 100%) !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 9999px !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  transition: all 0.25s ease !important;
}
.btn-imperial-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  color: #ffffff !important;
}

/* Compare Badge Pill */
.badge-compare {
  background: linear-gradient(135deg, var(--bhutan-gold) 0%, var(--bhutan-gold-amber) 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 9999px;
  margin-left: 4px;
}

/* =========================================================================
   3. LUXURY HERO SEARCH & TABS
   ========================================================================= */
.hero-luxury-wrapper {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.82)), 
              url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-luxury-wrapper .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.4);
  backdrop-filter: blur(12px);
  color: var(--bhutan-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.hero-luxury-wrapper h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.hero-luxury-wrapper p.subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 680px;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-search-glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(217, 119, 6, 0.3);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
}

.hero-search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 12px;
  overflow-x: auto;
}
.hero-search-tabs .nav-link {
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  background: #f1f5f9;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero-search-tabs .nav-link.active {
  background: var(--bhutan-crimson);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(158, 27, 39, 0.25);
}

.search-field-wrapper {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
}
.search-field-wrapper:focus-within {
  border-color: var(--bhutan-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.search-field-wrapper label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
  display: block;
}
.search-field-wrapper input,
.search-field-wrapper select {
  border: none !important;
  padding: 0 !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  background: transparent !important;
  width: 100%;
  outline: none !important;
}

/* =========================================================================
   4. LUXURY PROPERTY CARDS
   ========================================================================= */
.luxury-property-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.luxury-property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px -12px rgba(158, 27, 39, 0.15);
  border-color: rgba(217, 119, 6, 0.4);
}

.luxury-property-card .card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}
.luxury-property-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.luxury-property-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

/* Badges */
.badge-lagthram {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.badge-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--bhutan-gold) 0%, var(--bhutan-gold-amber) 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
  z-index: 2;
}

.card-purpose-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(158, 27, 39, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.card-body-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-price-tag {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--bhutan-crimson);
  margin-bottom: 6px;
}
.property-price-tag span.unit {
  font-size: 0.85rem;
  color: #64748b;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.property-title-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.property-title-link:hover {
  color: var(--bhutan-crimson);
}

.property-location-tag {
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.property-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}
.spec-item i {
  color: var(--bhutan-gold);
}

.card-footer-agent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.agent-snippet {
  display: flex;
  align-items: center;
  gap: 8px;
}
.agent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--bhutan-gold);
}
.agent-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
}

/* =========================================================================
   5. DZONGKHAG / CITY SHOWCASE CARDS
   ========================================================================= */
.dzongkhag-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 240px;
  background: #0f172a;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  display: block;
  text-decoration: none;
}
.dzongkhag-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(158, 27, 39, 0.25);
}
.dzongkhag-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s ease;
}
.dzongkhag-card:hover img {
  transform: scale(1.08);
  opacity: 0.95;
}
.dzongkhag-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.88) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dzongkhag-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.dzongkhag-card .badge-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bhutan-gold-light);
}

/* =========================================================================
   6. ROYAL MIDNIGHT NAVY FOOTER
   ========================================================================= */
.luxury-footer {
  background: var(--bhutan-navy) !important;
  color: #cbd5e1 !important;
  padding-top: 80px;
  border-top: 2px solid rgba(217, 119, 6, 0.35);
  position: relative;
}
.luxury-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bhutan-crimson) 0%, var(--bhutan-gold) 50%, var(--bhutan-crimson) 100%);
}
.luxury-footer h4, .luxury-footer .footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.luxury-footer h4::after, .luxury-footer .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--bhutan-gold);
}
.luxury-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}
.luxury-footer a:hover {
  color: var(--bhutan-gold-light);
  padding-left: 4px;
}
.luxury-footer .footer-links li {
  margin-bottom: 10px;
}
.luxury-footer .copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 0.85rem;
  color: #64748b;
}

/* =========================================================================
   7. BACK TO TOP BUTTON
   ========================================================================= */
.go-top {
  background: linear-gradient(135deg, var(--bhutan-crimson) 0%, var(--bhutan-gold) 100%) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 6px 20px rgba(158, 27, 39, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 991px) {
  .hero-luxury-wrapper h1 {
    font-size: 2.25rem;
  }
  .liquid-glass-capsule {
    border-radius: 16px !important;
    padding: 10px 16px !important;
  }
}

/* =========================================================================
   8. CATEGORY LUXURY CARDS & BUTTONS
   ========================================================================= */
.category-luxury-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}
.category-luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12) !important;
  border-color: rgba(217, 119, 6, 0.4) !important;
}
.btn-royal-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  transition: all 0.25s ease !important;
}
.btn-royal-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  color: #ffffff !important;
}

/* =========================================================================
   9. PRICING & CONTACT CARDS
   ========================================================================= */
.pricing-item {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 36px 28px !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}
.pricing-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(158, 27, 39, 0.12) !important;
  border-color: rgba(217, 119, 6, 0.45) !important;
}
.pricing-item .price {
  font-family: 'Cinzel', serif !important;
  color: var(--bhutan-crimson) !important;
  font-weight: 800 !important;
  font-size: 2rem !important;
}
.pricing-item .btn {
  background: var(--bhutan-crimson) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(217, 119, 6, 0.3) !important;
  transition: all 0.25s ease !important;
}
.pricing-item .btn:hover {
  background: var(--bhutan-crimson-dark) !important;
  box-shadow: 0 6px 20px rgba(158, 27, 39, 0.4) !important;
}
.contact-area .card {
  background: #ffffff !important;
  border-radius: 18px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
  transition: all 0.3s ease !important;
}
.contact-area .card:hover {
  transform: translateY(-4px);
  border-color: var(--bhutan-gold) !important;
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.12) !important;
}
.contact-area .card .icon {
  background: rgba(217, 119, 6, 0.1) !important;
  color: var(--bhutan-gold) !important;
  border: 1px solid rgba(217, 119, 6, 0.2) !important;
}

/* =========================================================================
   10. BREADCRUMBS (PAGE TITLE HERO)
   ========================================================================= */
.page-title-area {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 100%) !important;
  padding: 80px 0 70px !important;
  border-bottom: 2px solid rgba(217, 119, 6, 0.35);
  overflow: hidden;
}
.page-title-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(#d97706 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.12;
  pointer-events: none;
}
.page-title-area h1 {
  font-family: 'Cinzel', serif !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 2.5rem !important;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-title-area .list-unstyled li {
  font-size: 13.5px;
  color: #94a3b8;
  font-weight: 500;
}
.page-title-area .list-unstyled li a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s;
}
.page-title-area .list-unstyled li a:hover {
  color: var(--bhutan-gold-light);
}
.page-title-area .list-unstyled li.active {
  color: var(--bhutan-gold-light);
  font-weight: 700;
}

/* =========================================================================
   11. AUTH FORMS (LOGIN / REGISTER / FORGOT PASSWORD)
   ========================================================================= */
.authentication-area {
  background: #FAFAF7;
}
.auth-form {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06) !important;
}
.auth-form h4 {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  font-size: 1.6rem !important;
  text-align: center;
  margin-bottom: 24px;
}
.auth-form .form-control {
  border-radius: 12px !important;
  border: 1.5px solid #cbd5e1 !important;
  padding: 12px 16px !important;
  font-size: 13.5px !important;
  background: #fafaf9 !important;
  transition: all 0.2s ease;
}
.auth-form .form-control:focus {
  background: #ffffff !important;
  border-color: var(--bhutan-crimson) !important;
  box-shadow: 0 0 0 3px rgba(158, 27, 39, 0.12) !important;
}
.auth-form .btn-primary, .auth-form button[type="submit"] {
  background: var(--bhutan-crimson) !important;
  border-color: var(--bhutan-crimson) !important;
  border-radius: 9999px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  width: 100%;
  box-shadow: 0 6px 20px rgba(158, 27, 39, 0.3) !important;
  transition: all 0.25s ease;
}
.auth-form .btn-primary:hover, .auth-form button[type="submit"]:hover {
  background: var(--bhutan-crimson-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(158, 27, 39, 0.45) !important;
}

/* =========================================================================
   12. AGENT & VENDOR BOXES
   ========================================================================= */
.agent-box {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1.5px solid #e2e8f0 !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.agent-box:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.45) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1) !important;
}
.agent-box .agent-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f172a;
}
.agent-box .label {
  background: rgba(158, 27, 39, 0.1) !important;
  color: var(--bhutan-crimson) !important;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
}

/* =========================================================================
   13. SIDEBAR FILTER WIDGETS
   ========================================================================= */
.sidebar-widget-area .widget {
  background: #ffffff !important;
  border-radius: 18px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 22px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
}
.sidebar-widget-area .widget .title {
  font-family: 'Cinzel', serif !important;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  border-bottom: 2px solid rgba(217, 119, 6, 0.2);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

/* =========================================================================
   14. ABOUT US PAGE & PILLARS
   ========================================================================= */
.about-area .content-title .subtitle,
.choose-area .content-title .subtitle {
  color: var(--bhutan-gold) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 12px !important;
}
.about-area .content-title h2,
.choose-area .content-title h2 {
  font-family: 'Cinzel', serif !important;
  font-weight: 900 !important;
  color: var(--bhutan-navy) !important;
  font-size: 2.2rem !important;
}
.about-area .absolute-text {
  background: var(--bhutan-navy-dark) !important;
  border: 2px solid var(--bhutan-gold) !important;
  border-radius: 50% !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}
.about-area .absolute-text .color-primary {
  color: var(--bhutan-gold-light) !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
}

/* =========================================================================
   15. CONTACT US & DESK PAGE
   ========================================================================= */
.contact-area .contact-info {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 36px 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
}
.contact-area .contact-info .icon {
  width: 52px !important;
  height: 52px !important;
  background: rgba(158, 27, 39, 0.08) !important;
  color: var(--bhutan-crimson) !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  border: 1px solid rgba(158, 27, 39, 0.2) !important;
}
.contact-form {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}
.contact-form .form-control {
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 12px 18px !important;
  font-size: 13.5px !important;
  background: #f8fafc !important;
}
.contact-form .form-control:focus {
  background: #ffffff !important;
  border-color: var(--bhutan-crimson) !important;
  box-shadow: 0 0 0 3px rgba(158, 27, 39, 0.1) !important;
}

/* =========================================================================
   16. PRICING & MEMBERSHIP PLANS
   ========================================================================= */
.pricing-item {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 36px 28px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.pricing-item:hover, .pricing-item.active {
  transform: translateY(-8px) !important;
  border-color: var(--bhutan-gold) !important;
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.15) !important;
}
.pricing-item .pricing-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  color: var(--bhutan-navy) !important;
}
.pricing-item .price {
  font-family: 'Cinzel', serif !important;
  font-weight: 900 !important;
  color: var(--bhutan-crimson) !important;
  font-size: 2.2rem !important;
}
.pricing-item .btn-primary {
  background: var(--bhutan-crimson) !important;
  border-color: var(--bhutan-crimson) !important;
  border-radius: 9999px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
}

/* =========================================================================
   17. FAQ & ACCORDION
   ========================================================================= */
.faq-area .accordion-item {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}
.faq-area .accordion-button {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--bhutan-navy) !important;
  padding: 20px 24px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.faq-area .accordion-button:not(.collapsed) {
  color: var(--bhutan-crimson) !important;
  background: rgba(158, 27, 39, 0.04) !important;
  border-bottom: 1px solid rgba(158, 27, 39, 0.1) !important;
}
.faq-area .accordion-body {
  padding: 20px 24px !important;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* =========================================================================
   18. BLOG & JOURNAL CARDS
   ========================================================================= */
.blog-post-item {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1.5px solid #e2e8f0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  transition: all 0.3s ease !important;
}
.blog-post-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(217, 119, 6, 0.45) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
}

/* =========================================================================
   19. PREMIUM FULL-SCREEN ANIMATED MOBILE DRAWER
   ========================================================================= */
.mobile-drawer-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-drawer-overlay.drawer-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000000 !important;
}

.mobile-drawer-overlay.drawer-open .mobile-drawer-content {
  transform: translateX(0);
}

/* =========================================================================
   20. ALL-DEVICE RESPONSIVENESS & MOBILE-FIRST POLISH
   ========================================================================= */
@media (max-width: 991.98px) {
  .standard-top-header .navbar-nav {
    display: none !important;
  }
  .standard-top-header {
    padding: 6px 0 !important;
  }
}

@media (max-width: 767.98px) {
  /* Clean Hero & Search */
  .bhutan-hero-section {
    padding: 50px 0 40px !important;
    min-height: auto !important;
  }
  .hero-capsule-search {
    border-radius: 20px !important;
    padding: 12px 10px !important;
  }
  .top-cultural-bar {
    display: none !important;
  }
  .liquid-glass-capsule {
    padding: 5px 12px !important;
    margin: 0 8px !important;
  }
  .liquid-glass-capsule .navbar-brand span {
    font-size: 1rem !important;
  }

  /* Subpage Breadcrumb */
  .bhutan-page-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .bhutan-page-header h1 {
    font-size: 1.5rem !important;
  }

  /* Filter Cards & Cards Grid */
  .category-luxury-card {
    padding: 16px !important;
  }
  .dzongkhag-card {
    height: 240px !important;
  }
}

.blog-post-item .title a {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: var(--bhutan-navy) !important;
}

/* =========================================================================
   21. COMPLETE RESET FOR LEGACY PAGE TITLE AREA & BREADCRUMBS
   ========================================================================= */
.page-title-area {
  position: relative !important;
  overflow: hidden !important;
  padding: 35px 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, #fafaf7 100%) !important;
  border-bottom: 1px solid #e2e8f0 !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}
.page-title-area::before {
  display: none !important;
}
.page-title-area .bg-img {
  display: none !important;
}
.page-title-area h1,
.page-title-area .color-white {
  color: #0f172a !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  margin-bottom: 8px !important;
  text-shadow: none !important;
}
.page-title-area ul {
  margin: 0 !important;
  padding: 0 !important;
}
.page-title-area ul .active {
  color: var(--bhutan-crimson) !important;
  font-weight: 700 !important;
}
.page-title-area ul :is(li, a) {
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.page-title-area p {
  color: #64748b !important;
}

/* =========================================================================
   22. MOBILE-FIRST AUTH & FORM POLISH
   ========================================================================= */
.authentication-area {
  padding: 50px 0 !important;
  background: #fafaf7 !important;
}
.auth-form {
  max-width: 520px !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  padding: 36px 32px !important;
  border-radius: 24px !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 15px 45px -10px rgba(15, 23, 42, 0.08) !important;
}
/* =========================================================================
   23. COMPREHENSIVE ALL-DEVICE RESPONSIVENESS & UI ALIGNMENT
   ========================================================================= */

/* Universal Layout & Container Resets */
.container {
  max-width: 1240px;
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-single {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sidebar-widget-area {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Section Spacings on Mobile */
  .pt-100 { padding-top: 45px !important; }
  .pb-100 { padding-bottom: 45px !important; }
  .ptb-100 { padding-top: 45px !important; padding-bottom: 45px !important; }
  .pt-80 { padding-top: 40px !important; }
  .pb-80 { padding-bottom: 40px !important; }
  .ptb-80 { padding-top: 40px !important; padding-bottom: 40px !important; }
  .mb-40 { margin-bottom: 24px !important; }
  .mb-30 { margin-bottom: 20px !important; }

  /* Hero Section Mobile Polish */
  .bhutan-hero-section {
    padding: 45px 0 50px !important;
    min-height: auto !important;
  }
  .bhutan-hero-section h1 {
    font-size: 2.2rem !important;
    line-height: 1.18 !important;
    margin-bottom: 12px !important;
  }
  .bhutan-hero-section p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  /* Filter Card Mobile Wrap */
  .filter-card-container {
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }

  /* Single Property & Vehicle Mobile Layout */
  .product-single-gallery {
    margin-bottom: 24px !important;
  }
  .product-single-details h3.product-title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }
  .product-single-details .product-price {
    font-size: 1.4rem !important;
  }

  /* Tables & Lists */
  .table-responsive {
    border-radius: 12px;
    overflow-x: auto;
  }

  /* Buttons on Mobile */
  .btn-lg {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 575.98px) {
  .bhutan-hero-section h1 {
    font-size: 1.85rem !important;
  }
  .hero-capsule-search {
    border-radius: 16px !important;
    padding: 10px 8px !important;
  }
  .hero-capsule-search .btn {
    width: 100% !important;
    margin-top: 6px;
    padding: 12px !important;
  }
}

/* =========================================================================
   24. PROPERTY & VEHICLE DETAIL PAGE POLISH
   ========================================================================= */
.product-single-details .product-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  color: var(--bhutan-navy) !important;
}

.product-single-details .product-price {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  color: var(--bhutan-crimson) !important;
}

.author-widget {
  background: #ffffff !important;
  border-radius: 18px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}

.author-widget .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fbbf24;
}

/* =========================================================================
   25. FOOTER RESPONSIVE & PREMIUM STYLING
   ========================================================================= */
.footer-area {
  background: #0f172a !important;
  color: #94a3b8 !important;
}

.footer-area .footer-widget .widget-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.02em;
}

.footer-area .footer-widget ul li a {
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  transition: all 0.2s ease !important;
}

.footer-area .footer-widget ul li a:hover {
  color: #fbbf24 !important;
  padding-left: 4px;
}

.copy-right-area {
  background: #090d16 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 20px 0 !important;
  font-size: 12.5px !important;
  color: #64748b !important;
}






/* =========================================================================
   MASTER RESPONSIVE & TOUCH OPTIMIZATION RULES (PUBLIC PORTAL & USER DASHBOARD)
   ========================================================================= */

/* --- Mobile / Tablet (< 992px) --- */
@media (max-width: 991.98px) {
  .bhutan-main-nav {
    display: none !important;
  }
  
  .hero-banner-search-box {
    padding: 16px !important;
  }
  
  .hero-banner-search-box form .row > div {
    margin-bottom: 12px;
  }
  
  .property-card-luxury,
  .vehicle-card-luxury {
    margin-bottom: 24px !important;
  }

  .user-dashboard .user-sidebar {
    margin-bottom: 30px !important;
  }
}

/* --- Mobile Phone (< 768px) --- */
@media (max-width: 767.98px) {
  .top-cultural-bar {
    font-size: 10px !important;
    text-align: center;
  }
  
  .top-cultural-bar .col-auto {
    width: 100% !important;
    text-align: center !important;
    margin: 2px 0;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }
  
  .hero-subtitle {
    font-size: 13px !important;
  }

  .section-title {
    font-size: 1.65rem !important;
  }
  
  .btn-search-hero {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .property-gallery-slider {
    height: 260px !important;
  }

  .realtor-contact-card {
    margin-top: 24px !important;
  }
}

/* --- Touch Targets (Min 44px) --- */
button, 
.btn, 
.nav-link, 
.pagination a, 
.custom-control-label {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

/* Zero Horizontal Page Overflow */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

.table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* =========================================================================
   CROSS-BROWSER SLIM SCROLLBARS (CHROME, EDGE, SAFARI, FIREFOX, MOBILE)
   ========================================================================= */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(182, 134, 44, 0.35) transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(182, 134, 44, 0.35);
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(182, 134, 44, 0.7);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* =========================================================================
   COMPACT MINI-ICON CATEGORY SLIDER (ONE SINGLE LINE - ALL DEVICES)
   ========================================================================= */
.cat-slider-section-wrapper {
  position: relative !important;
  width: 100% !important;
}

.cat-slider-track-wrap {
  position: relative !important;
  width: 100% !important;
}

.cat-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 6px 4px 12px 4px !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.cat-slider-track::-webkit-scrollbar {
  display: none !important;
}

/* Compact Mini Card */
.cat-mini-circle-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  flex: 0 0 135px !important;
  width: 135px !important;
  padding: 14px 10px 12px 10px !important;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 18px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  user-select: none !important;
}

.cat-mini-circle-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(217, 119, 6, 0.5) !important;
  box-shadow: 0 10px 24px rgba(158, 27, 39, 0.1), 0 0 0 1px rgba(217, 119, 6, 0.25) !important;
  background: #ffffff !important;
  text-decoration: none !important;
}

/* Mini Circle Avatar (compact ~52px) */
.cat-mini-avatar {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
  border: 2px solid rgba(217, 119, 6, 0.25) !important;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.12) !important;
  transition: all 0.25s ease !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.cat-mini-circle-card:hover .cat-mini-avatar {
  transform: scale(1.08) !important;
  border-color: #9e1b27 !important;
  box-shadow: 0 6px 18px rgba(158, 27, 39, 0.2) !important;
}

.cat-mini-avatar img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.cat-mini-avatar i {
  font-size: 1.3rem !important;
  transition: transform 0.2s ease !important;
}

.cat-mini-circle-card:hover .cat-mini-avatar i {
  transform: scale(1.1) !important;
}

/* Category Title */
.cat-mini-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 4px !important;
  text-align: center !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  transition: color 0.2s ease !important;
}

.cat-mini-circle-card:hover .cat-mini-title {
  color: #9e1b27 !important;
}

/* Category Listing Badge */
.cat-mini-badge {
  font-size: 10.5px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  background: rgba(15, 23, 42, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 9999px !important;
  padding: 2px 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.cat-mini-circle-card:hover .cat-mini-badge {
  background: rgba(158, 27, 39, 0.1) !important;
  color: #9e1b27 !important;
  border-color: rgba(158, 27, 39, 0.2) !important;
}

/* Slider Navigation Buttons (Left & Right) */
.cat-slider-nav-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(217, 119, 6, 0.4) !important;
  color: #9e1b27 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  outline: none !important;
}

.cat-slider-nav-btn:hover {
  background: #9e1b27 !important;
  color: #ffffff !important;
  border-color: #9e1b27 !important;
  transform: scale(1.06) !important;
  box-shadow: 0 6px 16px rgba(158, 27, 39, 0.25) !important;
}

.cat-slider-nav-btn:active {
  transform: scale(0.95) !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
  .cat-mini-circle-card {
    flex: 0 0 115px !important;
    width: 115px !important;
    padding: 10px 6px 10px 6px !important;
  }
  .cat-mini-avatar {
    width: 46px !important;
    height: 46px !important;
  }
  .cat-mini-avatar i {
    font-size: 1.15rem !important;
  }
  .cat-mini-title {
    font-size: 12px !important;
  }
  .cat-mini-badge {
    font-size: 9.5px !important;
    padding: 1.5px 6px !important;
  }
}