/* ============================================================
   ENHANCE.CSS  –  Babubhai Jewellers
   Premium visual upgrade: animations, responsiveness & polish
   ============================================================ */

/* ─── 1. GOOGLE FONT: Add Cormorant Garamond for luxury feel ─ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ─── 2. ENHANCED CSS VARIABLES ─────────────────────────────── */
:root {
  --gold-gradient: linear-gradient(135deg, #c9a227 0%, #f0d060 40%, #b8913b 70%, #8a6620 100%);
  --dark-overlay: linear-gradient(180deg, rgba(26,14,0,0.0) 0%, rgba(26,14,0,0.7) 100%);
  --card-shadow: 0 8px 32px rgba(109,85,43,0.18);
  --card-hover-shadow: 0 20px 60px rgba(109,85,43,0.32);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shimmer-duration: 2.4s;
}

/* ─── 3. SMOOTH SCROLL ───────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ─── 4. CUSTOM SCROLLBAR – gold luxury ──────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a0e00; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c9a227, #8a6620);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #f0d060; }

/* ─── 5. PRELOADER GLOW ──────────────────────────────────────── */
.preloader {
  background: radial-gradient(ellipse at center, #2a1a00 0%, #0d0600 100%);
}
.loading {
  border-color: transparent #c9a227 transparent #f0d060 !important;
  box-shadow: 0 0 30px rgba(201,162,39,0.4);
}

/* ─── 6. TOPBAR GRADIENT ─────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, #6d552b 0%, #b8913b 50%, #6d552b 100%) !important;
  box-shadow: 0 2px 12px rgba(109,85,43,0.5);
}

/* ─── 7. STICKY HEADER GLASS EFFECT ─────────────────────────── */
header.main-header .header-sticky.sticky {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12) !important;
}

/* ─── 8. LOGO GLOW ON HOVER ──────────────────────────────────── */
.header-logo a img {
  transition: filter 0.4s ease, transform 0.4s ease;
}
.header-logo a:hover img {
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.7));
  transform: scale(1.04);
}

/* ─── 9. NAV LINKS GOLD UNDERLINE ───────────────────────────── */
.main-menu > ul > li > a {
  position: relative;
}
.main-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: right 0.35s var(--transition-smooth);
}
.main-menu > ul > li:hover > a::after,
.main-menu > ul > li.current-menu-item > a::after {
  right: 0;
}
/* ─── 10. HERO SECTION ENHANCEMENTS ─────────────────────────── */
.hero {
  position: relative;
  background-size: cover !important;
}
@media (min-width: 1025px) {
  .hero {
    background-attachment: fixed !important;
  }
}

/* dark gradient overlay for better text legibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.68) 0%,
    rgba(26,14,0,0.55) 55%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

/* Floating sparkle animation for the hero sub-title */
.hero .section-sub-title {
  animation: heroSubFloat 3s ease-in-out infinite;
}
@keyframes heroSubFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Hero h1 shimmer text on hover */
.hero h1 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText var(--shimmer-duration) linear infinite;
  background-size: 200% 100%;
}
@keyframes shimmerText {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Hero hero-content-list bullet style */
.hero-content-list ul li {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Google rating box polish */
.google-rating-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 18px;
  transition: all 0.4s ease;
}
.google-rating-box:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ─── 11. BUTTON ENHANCEMENTS ───────────────────────────────── */
.btn-default {
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn-default::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.55s ease;
  z-index: 2;
}
.btn-default:hover::before {
  left: 160%;
}
.btn-default:active { transform: scale(0.97); }

/* ─── 12. KEY BENEFITS BAR ──────────────────────────────────── */
.key-benefit-box {
  background: linear-gradient(135deg, #faf6ed 0%, #f5edd8 100%) !important;
  border-top: 2px solid rgba(184,145,59,0.3);
  border-bottom: 2px solid rgba(184,145,59,0.3);
  box-shadow: 0 4px 24px rgba(109,85,43,0.08);
}

.key-benefit-item {
  transition: transform 0.35s ease;
  padding: 12px;
  border-radius: 10px;
}
.key-benefit-item:hover {
  transform: translateY(-4px);
  background: rgba(184,145,59,0.08);
}

.key-benefit-item .icon-box img {
  filter: drop-shadow(0 2px 8px rgba(184,145,59,0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
}
.key-benefit-item:hover .icon-box img {
  filter: drop-shadow(0 4px 14px rgba(184,145,59,0.7));
  transform: scale(1.1) rotate(-5deg);
}

/* ─── 13. BEST SELLERS CIRCULAR ITEMS ──────────────────────── */
.top-selling-item-image {
  position: relative;
}
.top-selling-item-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.top-selling-item:hover .top-selling-item-image::before {
  opacity: 1;
}
.top-selling-item-image img {
  box-shadow: 0 6px 24px rgba(109,85,43,0.2);
  transition: box-shadow 0.4s ease, transform 0.6s ease;
}
.top-selling-item:hover .top-selling-item-image img {
  box-shadow: 0 12px 40px rgba(109,85,43,0.4);
}

.top-selling-item-content h3 {
  transition: color 0.3s ease;
}
.top-selling-item:hover .top-selling-item-content h3 {
  color: var(--accent-color);
}

/* Top Offer Cards */
.top-offer-item {
  background: linear-gradient(135deg, #faf6ed 0%, #f5edd8 100%) !important;
  border: 1px solid rgba(184,145,59,0.2);
  box-shadow: var(--card-shadow);
  border-radius: 16px !important;
  transition: all 0.4s var(--transition-smooth) !important;
}
.top-offer-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--card-hover-shadow) !important;
  border-color: rgba(184,145,59,0.5);
}
.top-offer-item-content .top-offer-item-title {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700 !important;
}

/* ─── 14. OUR PRODUCTS – CARD GLOW & HOVER ──────────────────── */
.our-products {
  background: linear-gradient(180deg, #fff 0%, #faf6ed 100%);
}

.product-item-header {
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(109,85,43,0.10);
  overflow: hidden;
  transition: box-shadow 0.45s var(--transition-smooth), transform 0.45s var(--transition-smooth) !important;
}
.product-item:hover .product-item-header {
  box-shadow: 0 16px 48px rgba(109,85,43,0.28) !important;
  transform: translateY(-5px);
}

.product-item-image,
.product-item-image figure {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  background-color: #f7f5f0 !important;
  position: relative !important;
  margin: 0 !important;
}

@keyframes skeletonPulse {
  0%, 100% { background-color: #f7f5f0; }
  50%       { background-color: #eeeae0; }
}

.product-item-image figure.loading-skeleton {
  animation: skeletonPulse 1.8s ease-in-out infinite !important;
}

.product-item-image figure img,
.product-item-image figure video {
  transition: transform 0.7s var(--transition-smooth) !important;
}
.product-item:hover .product-item-image figure img,
.product-item:hover .product-item-image figure video {
  transform: scale(1.07) !important;
}

.product-item-action {
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  padding: 12px 8px 8px;
  border-radius: 0 0 16px 16px;
}
.product-item-action ul li a {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: all 0.35s ease !important;
}
.product-item-action ul li a:hover {
  background: var(--accent-color) !important;
  transform: scale(1.12);
  box-shadow: 0 4px 18px rgba(184,145,59,0.5) !important;
}

/* Slider nav arrows */
.product-slider-btn .product-slider-button-prev,
.product-slider-btn .product-slider-button-next {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 16px rgba(109,85,43,0.25) !important;
  border: 2px solid rgba(184,145,59,0.3) !important;
  transition: all 0.4s ease !important;
}
.product-slider-btn .product-slider-button-prev:hover,
.product-slider-btn .product-slider-button-next:hover {
  background: var(--gold-gradient) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 28px rgba(184,145,59,0.5) !important;
  transform: scale(1.1);
}

/* ─── 15. 3D SHOWCASE SECTION ───────────────────────────────── */
.our-products.\\33 d-showcase-section,
div[class*="3d-showcase-section"] {
  background: linear-gradient(180deg, #faf6ed 0%, #f0e4c8 100%);
  padding-bottom: 80px;
}

/* video cards – cinematic frame */
.product-item-image figure video {
  border-radius: 12px;
}

/* ─── 16. SECTION TITLE POLISHING ───────────────────────────── */
.section-title .section-sub-title {
  background: linear-gradient(135deg, rgba(184,145,59,0.12), rgba(184,145,59,0.04));
  border: 1px solid rgba(184,145,59,0.4) !important;
  color: var(--accent-color) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 12px rgba(184,145,59,0.15);
  transition: all 0.4s ease;
}
.section-title .section-sub-title:hover {
  background: rgba(184,145,59,0.18) !important;
  box-shadow: 0 4px 20px rgba(184,145,59,0.3);
}

.section-title h2 {
  letter-spacing: -0.01em;
}

/* ─── 17. INTRO VIDEO SECTION ───────────────────────────────── */
.intro-bg-video:before {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(109,85,43,0.4) 60%,
    rgba(0,0,0,0.85) 100%
  ) !important;
}

.video-play-button a span {
  background: var(--gold-gradient) !important;
  box-shadow: 0 0 0 0 rgba(201,162,39,0.6);
  animation: pulseGold 2s ease-in-out infinite;
}
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,0.6); }
  70%  { box-shadow: 0 0 0 20px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

.intro-video-item-content h3 { color: #f0d060 !important; }

/* ─── 18. OUR COLLECTION CARDS ──────────────────────────────── */
.collection-item {
  border-radius: 20px !important;
  border: 1px solid rgba(184,145,59,0.2) !important;
  box-shadow: var(--card-shadow) !important;
  transition: all 0.45s var(--transition-smooth) !important;
  overflow: hidden;
}
.collection-item:hover {
  border-color: rgba(184,145,59,0.5) !important;
  box-shadow: var(--card-hover-shadow) !important;
  transform: translateY(-6px);
}

/* ─── 19. OUR PROMISE ITEMS ─────────────────────────────────── */
.promise-item {
  transition: transform 0.4s ease;
}
.promise-item:hover {
  transform: translateY(-5px);
}
.promise-item .icon-box img {
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: drop-shadow(0 2px 6px rgba(184,145,59,0.3));
}
.promise-item:hover .icon-box img {
  transform: scale(1.12) rotate(-5deg);
  filter: drop-shadow(0 4px 14px rgba(184,145,59,0.6));
}

/* ─── 20. TESTIMONIALS ───────────────────────────────────────── */
.testimonial-item {
  border-radius: 20px !important;
  border: 1px solid rgba(184,145,59,0.15);
  box-shadow: 0 4px 24px rgba(109,85,43,0.08);
  transition: all 0.4s ease;
}
.testimonial-item:hover {
  box-shadow: 0 12px 40px rgba(109,85,43,0.2);
  transform: translateY(-4px);
}

/* ─── 21. FAQ ACCORDION ──────────────────────────────────────── */
.faq-accordion .accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(184,145,59,0.15) !important;
  box-shadow: 0 4px 20px rgba(109,85,43,0.08) !important;
  padding-bottom: 0 !important;
  background: #ffffff !important;
  transition: all 0.3s ease-in-out !important;
}
.faq-accordion .accordion-item:hover {
  box-shadow: 0 10px 30px rgba(109,85,43,0.15) !important;
}
.faq-accordion .accordion-header .accordion-button {
  padding: 22px 55px 22px 24px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  background: transparent !important;
  color: var(--primary-color) !important;
  border: none !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(184,145,59,0.08), rgba(184,145,59,0.02)) !important;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0 24px 24px 24px !important;
  background: transparent !important;
}
.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f078' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  font-size: 16px !important;
  color: var(--primary-color) !important;
  transform: translateY(-50%) rotate(0deg) !important;
  transition: all 0.3s ease-in-out !important;
  background-image: none !important;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg) !important;
  color: var(--accent-color) !important;
}

/* ─── 22. LIMITED OFFER BANNER ──────────────────────────────── */
.limited-offer-item {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(109,85,43,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.limited-offer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 60px rgba(109,85,43,0.35);
}
.limited-offer-item-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

/* ─── 23. FOOTER GLOW BORDER ────────────────────────────────── */
.main-footer {
  border-top: 2px solid rgba(184,145,59,0.35);
  position: relative;
}
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.footer-logo img {
  filter: drop-shadow(0 0 6px rgba(201,162,39,0.4));
  transition: filter 0.4s ease;
}
.footer-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.7));
}

.footer-links ul li a {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.footer-links ul li a:hover {
  color: #f0d060 !important;
  letter-spacing: 0.04em;
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ─── 24. LIGHTBOX POLISH ────────────────────────────────────── */
#img-lightbox {
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#lightbox-close {
  background: rgba(255,255,255,0.12) !important;
  border-radius: 50% !important;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25) !important;
  font-size: 1.6rem !important;
  transition: all 0.3s ease !important;
}
#lightbox-close:hover {
  background: var(--accent-color) !important;
  color: #fff !important;
  transform: scale(1.1) rotate(90deg) !important;
}
#lightbox-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem !important;
  color: #f0d060 !important;
}
#lightbox-media-container img,
#lightbox-media-container video {
  border-radius: 16px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,39,0.3) !important;
}

/* ─── 25. GLOBAL MICRO-ANIMATIONS & SCROLL REVEAL ────────────── */
/* Fade-up subtle on all wow elements */
.wow { will-change: transform, opacity; }

/* Hover lift for any anchor inside a card-like container */
.product-item,
.top-selling-item,
.promise-item,
.testimonial-item,
.collection-item,
.blog-item {
  will-change: transform;
}

/* Pulse separator for section sub-titles */
.section-title .section-sub-title::before {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%       { transform: translateY(-50%) scale(1.6); opacity: 0.7; }
}

/* Gold divider lines */
.key-benefit-item-list {
  position: relative;
}
.key-benefit-item + .key-benefit-item {
  border-left: 1px solid rgba(184,145,59,0.2);
  padding-left: 30px;
}

/* ─── 26. RESPONSIVE IMPROVEMENTS ───────────────────────────── */

/* Tablet (991px and down) */
@media only screen and (max-width: 991px) {
  .hero {
    background-attachment: scroll !important; /* parallax off on mobile */
    padding: 120px 0;
  }
  .key-benefit-item + .key-benefit-item {
    border-left: none;
    padding-left: 0;
  }
  .top-selling-item {
    width: calc(33.33% - 20px) !important;
  }
  .top-offer-item {
    width: calc(50% - 15px) !important;
  }
  .collection-item {
    flex-direction: column;
    gap: 20px;
  }
  .collection-item-content,
  .collection-item-image-box {
    width: 100% !important;
  }
  .product-slider-btn .product-slider-button-prev,
  .product-slider-btn .product-slider-button-next {
    top: 100px !important;
  }
}

/* Small tablet / large mobile (767px and down) */
@media only screen and (max-width: 767px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 32px !important;
    line-height: 1.25em;
  }
  .hero-content-body {
    margin-top: 40px !important;
    padding-top: 25px !important;
  }
  .key-benefit-item {
    width: calc(50% - 15px) !important;
    border: 1px solid rgba(184,145,59,0.12);
    border-radius: 12px;
    padding: 16px !important;
    box-shadow: 0 2px 12px rgba(109,85,43,0.08);
  }
  .top-selling-item {
    width: calc(33.33% - 14px) !important;
  }
  .top-offer-item {
    width: 100% !important;
    border-radius: 14px !important;
  }
  .limited-offer-item {
    border-radius: 14px !important;
    min-height: 260px;
  }
  .product-item-action ul li a {
    height: 32px !important;
    width: 32px !important;
  }
  .product-item-action ul li a i { font-size: 13px !important; }
  .section-title h2 { font-size: 22px !important; }
  .section-title h1 { font-size: 26px !important; }
  .intro-video { min-height: 480px !important; }
  .collection-item { padding: 20px !important; border-radius: 14px !important; }
  .testimonial-item { border-radius: 14px !important; }
  .faq-accordion .accordion-item { border-radius: 10px !important; }
}

/* Mobile portrait (480px and down) */
@media only screen and (max-width: 480px) {
  .hero { padding: 70px 0 50px; }
  .hero h1 { font-size: 26px !important; }
  .hero p { font-size: 14px !important; }
  .key-benefit-item { width: 100% !important; }
  .top-selling-item { width: calc(50% - 10px) !important; }
  .btn-default { padding: 14px 22px !important; font-size: 13px !important; }
  .google-rating-box { padding: 10px 14px; }
  .topbar { padding: 10px 0 !important; }
  .topbar-info-content p { font-size: 12px !important; }
  .product-slider-btn .product-slider-button-prev,
  .product-slider-btn .product-slider-button-next {
    top: 80px !important;
    width: 36px !important;
    height: 36px !important;
  }
  .limited-offer-item { min-height: 220px; }
  .section-title h2 { font-size: 20px !important; }
}

/* ─── 27. SWIPER SLIDE SPACING ENHANCEMENT ──────────────────── */
.product-slider .swiper {
  padding: 10px 4px 30px !important;
}

/* ─── 28. PAGE-LEVEL ENTRANCE ANIMATION ────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.our-products,
.our-best-sellers,
.our-collection,
.intro-video,
.our-promise,
.testimonials-content-box,
.our-faqs {
  animation: fadeSlideUp 0.6s var(--transition-smooth) both;
}

/* ─── 29. OUR PRODUCTS SECTION GRADIENT BG ───────────────────── */
.our-products .product-item-content .product-item-title a {
  transition: color 0.3s ease;
}
.our-products .product-item:hover .product-item-content .product-item-title a {
  color: var(--accent-color);
}

/* ─── 30. PRODUCT ITEM BORDER GLOW ON HOVER ──────────────────── */
.product-item-header::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  box-shadow: inset 0 0 0 2px rgba(184,145,59,0.6);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.product-item:hover .product-item-header::after {
  opacity: 1;
}

/* ─── 31. BLOG POST CARD ─────────────────────────────────────── */
.post-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(109,85,43,0.10);
  transition: all 0.4s ease;
}
.post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(109,85,43,0.22);
}

/* ─── 32. FOCUS ACCESSIBILITY HIGHLIGHT ─────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 33. GOLD SEPARATOR LINE ────────────────────────────────── */
.section-row {
  position: relative;
}
.section-row::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
  margin: 20px auto 0;
}
.section-row.align-items-center::after {
  display: none;
}

/* ─── 34. FLOATING WHATSAPP CHAT BUTTON ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 92px; /* positioned precisely above the back-to-top button */
  right: 22px; /* centered horizontally with the back-to-top button */
  left: auto !important;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.06);
  background-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 88px;
    right: 27px;
    left: auto !important;
    font-size: 26px;
  }
}

/* ─── 35. MOBILE TOPBAR CENTERING ────────────────────────────── */
@media (max-width: 991px) {
  .topbar-social-list {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .topbar-social-list ul {
    width: 100% !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  .topbar .col-7 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }
}

/* ─── 36. HEADER LOGO & NAVBAR HEIGHT REDUCTION ──────────────── */
/* Reduce nav menu items vertical padding to shrink navbar height */
.main-menu ul .nav-item {
  padding: 18px 0 !important; /* from 32px down to 18px */
}

/* Reduce logo height to make navbar compact */
.navbar-brand img,
.header-logo a img,
header.main-header .navbar-brand img {
  max-height: 72px !important;
  width: auto !important;
  transition: all 0.3s ease-in-out;
}

/* Shrink header logo further when sticky header is active */
header.main-header .header-sticky.active .navbar-brand img {
  max-height: 60px !important;
}

/* Mobile responsive compact logo & navbar */
@media (max-width: 991px) {
  .navbar-brand img,
  .header-logo a img,
  header.main-header .navbar-brand img {
    max-height: 54px !important;
  }
  
  .navbar {
    padding: 8px 0 !important;
  }
}
