body {
  font-family: "Jost", sans-serif;
}

:root {
  --theme-gold: #c79e00;
}

.theme-color {
  color: var(--theme-gold);
}

.bg-theme {
  background-color: var(--theme-gold);
}

.btn-theme {
  background-color: var(--theme-gold);
  color: #fff;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: #FFF;
    background-color: #C79E00;
    border-color: #C79E00;
}

.btn-theme:hover {
	background-color: #000;
	color: #FFF;
}

.btn-outline-theme {
  color: #C79E00;               /* text color */
  border: 1px solid #C79E00;    /* border color */
  background: transparent;
}

.btn-outline-theme:hover,
.btn-outline-theme:focus {
  color: #fff;
  background: #C79E00;
  border-color: #C79E00;
}

.btn-outline-theme:active {
  background: #e85f00;
  border-color: #e85f00;
}

.theme-header {
	background-color: #C79E00;
}

.text-theme {
	color: #C79E00;
}

.border-theme {
    border-color: C79E00; !important;
}

.cursor-pointer { cursor: pointer; }

.content-gradiant {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 179, 0, 0.20), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.10), transparent 50%),
    linear-gradient(180deg, #fff, #f7f7fb);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #FFF;
}
.muted_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #8F8A8A;
}
.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}
/*** Logo Style Start***/
/* Wrapper */
.brand-wrap {
  gap: 5px;
  text-decoration: none;
}

/* Logo */
.brand-logo {
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Brand Name — Premium Black Style */
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111111;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Desktop scale */
@media (min-width: 992px) {
  .brand-logo {
    height: 54px;
  }

  .brand-name {
    font-size: 2rem;
  }
}


/*** Logo Style End***/
/*** Header Search STart***/
.header-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: visible !important;          /* ✅ allow dropdown */
  isolation: isolate;                   /* ✅ fixes stacking issues */
  z-index: 99999;                       /* ✅ keep above header */
  transition: max-width 0.35s ease, transform 0.35s ease;
  will-change: max-width, transform;
}

.header-search-wrapper.search-expanded {
  max-width: 620px;
  transform: scale(1.02);
}

.header-search-pill {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid #dee2e6;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search-pill:focus-within {
  border-color: #adadad;
}

.header-search-wrapper.search-expanded .header-search-pill {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.suggestions {
  position: absolute;
  top: calc(100% + 2px);                /* ✅ small clean gap */
  left: 0;
  right: 0;
  z-index: 999999;                      /* ✅ always above content */
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  visibility: hidden;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.suggestions.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.suggestions .list-group-item {
  cursor: pointer;
}

.suggestions .list-group-item:hover {
  background: #f8f9fa;
}

.suggestions-list {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.suggestions-list::-webkit-scrollbar {
  width: 6px;
}

.suggestions-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.suggestions-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ===============================
   Optional: if navbar is hiding dropdown
================================= */

.navbar,
.navbar-nav,
.container,
.container-fluid {
  overflow: visible !important;
}

/* Tabs header */
.search-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.search-tab {
  border: 1px solid #e9ecef;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.search-tab:hover {
  background: #f8f9fa;
}

.search-tab.active {
  border-color: #adb5bd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.search-tab .badge {
  font-size: 12px;
  background: #f1f3f5;
  color: #495057;
  border-radius: 999px;
  padding: 2px 8px;
}

/* ================= MOBILE SEARCH ================= */

.mobile-search-container {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 90px;
}

.mobile-search-inner {
  width: 95%;
  max-width: 600px;
  position: relative;
}

.mobile-search-inner .navbar-nav {
  display: flex !important;
  width: 100% !important;
}

.mobile-search-inner .header-search-wrapper {
  max-width: 100% !important;
}

.mobile-search-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: #fff;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 18px;
}

/* hide ONLY the original header search, not the popup one */
@media (max-width: 991px) {
  .nav-bar > .row .navbar-nav.ms-auto {
    display: none !important;
  }

  /* allow search inside mobile popup */
  .mobile-search-inner .navbar-nav.ms-auto {
    display: flex !important;
  }
}


/*** Header Search End ***/
/*** Header User Menu start***/
.user-dd-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.user-dd-wrapper {
  position: relative;
  z-index: 1000;
  position: relative;
}

.user-dropdown-menu {
  margin-top: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  overflow: visible !important;
  animation: dropdownFade 0.18s ease-in-out;
  position: absolute !important;
  top: 100% !important;
  right: -10px !important;
  left: auto !important;
  margin-top: 14px !important;
  z-index: 9999 !important;
  overflow: visible !important;
  max-height: calc(100vh - 120px);
  overflow-y: auto;  
}

.user-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 15px; /* Desktop arrow alignment */
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
  border-radius: 4px;
}

.user-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px; /* Must match */
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 4px;
}

@media (max-width: 991px) {
  .user-dropdown-menu::before,
  .user-dropdown-menu::after {
    right: 15px;
  }
  .user-dropdown-menu {
    width: 92vw !important;     /* fit screen */
    right: 4vw !important;
    left: auto !important;
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.user-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
/*** Header User Menu End***/
/*Mobile Main menu */
.main-menu-overlay {
  position: absolute;
  top: 55px;
  right: 12px;
  left: 12px;
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  animation: dropFade 0.2s ease-in-out;
}

.overlay-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 1px solid #f2f2f2;
}

.overlay-item:hover {
  background: #f8f9fa;
}

.overlay-subitem {
  display: block;
  padding: 10px 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 1px dashed #eee;
}

.overlay-subitem:hover {
  color: var(--bs-primary);
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/*** Header Main End ***/
/*** Header Marque Start***/
.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee__inner {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/*** Header Marque End***/
/***Home Page Kundli Section Start***/
/***Top Banner Start***/
	.heroWrap {
	  background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 200, 87, 0.35), transparent 55%),
		radial-gradient(900px 500px at 80% 30%, rgba(125, 98, 255, 0.35), transparent 55%),
		linear-gradient(180deg, #050814, #060a18);
	  color: #fff;
	}
	.heroBadge {
	  background: rgba(255, 255, 255, 0.12);
	  border: 1px solid rgba(255, 255, 255, 0.16);
	  backdrop-filter: blur(10px);
	}
	.text-gradient {
	  background: linear-gradient(90deg, #ffd37a, #9a7bff);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	}
	.pillStat {
	  background: rgba(255, 255, 255, 0.08);
	  border: 1px solid rgba(255, 255, 255, 0.12);
	  padding: 8px 12px;
	  border-radius: 999px;
	  backdrop-filter: blur(10px);
	}
	
	.statCard {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	transition: transform 0.18s ease;
  }
  .statCard:hover {
	transform: translateY(-3px);
  }
/***Top Banner End***/
/***Section Wrap Start***/
.secWrap {
  padding: 22px 0;
}

.kundli {
  background: radial-gradient(
	  900px 420px at 15% 10%,
	  rgba(154, 123, 255, 0.18),
	  transparent 60%
	),
	linear-gradient(180deg, rgba(154, 123, 255, 0.06), transparent);
}

.epuja {
  background: radial-gradient(
	  900px 420px at 18% 10%,
	  rgba(255, 200, 87, 0.18),
	  transparent 60%
	),
	linear-gradient(180deg, rgba(255, 138, 61, 0.06), transparent);
}

.shop {
  background: radial-gradient(
	  900px 420px at 20% 10%,
	  rgba(108, 199, 255, 0.22),
	  transparent 60%
	),
	linear-gradient(180deg, rgba(46, 117, 255, 0.05), transparent);
}
/***Section Wrap End***/
/***Kundli Section Start***/
  .kundliCard {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	cursor: pointer;
  }
  .kundliCard:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08) !important;
  }
  .kundliBadge {
	background: rgba(154, 123, 255, 0.14);
	color: #4f2cff;
	border: 1px solid rgba(154, 123, 255, 0.25);
  }
  
  .accordion-button {
	  background: #f4f6f8;
	  border: 1px solid rgba(0, 0, 0, 0.06);
	  box-shadow: none;
	}
	.accordion-button:focus {
	  box-shadow: none;
	  border-color: rgba(0, 0, 0, 0.12);
	}
/***Kundli Section End***/
/***Epuja Section Start***/
  .epujaCard {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	cursor: pointer;
  }
  .epujaCard:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08) !important;
  }
  .epujaBadge {
	background: rgba(255, 200, 87, 0.22);
	color: #513100;
	border: 1px solid rgba(255, 200, 87, 0.35);
	backdrop-filter: blur(8px);
  }
  .epujaMeta {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: #fff6ea;
	color: #a05200;
	border: 1px solid rgba(255, 138, 61, 0.22);
  }
/***Epuja Section End***/
/***Review Section Start***/
.reviewCard {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.reviewCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ✅ Safe long text handling */
.reviewText {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.reviewText.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
/***Review Section End***/
/***Blog Section Start***/
.blogCard {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}
.blogCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08) !important;
}

.blogCat {
  background: rgba(102, 240, 193, 0.18);
  color: #007c4c;
  border: 1px solid rgba(102, 240, 193, 0.28);
}

/* ✅ safe title/excerpt */
.blogTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blogExcerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/***Blog Section End***/
	.accentDot {
	  width: 14px;
	  height: 14px;
	  border-radius: 50%;
	}
/***Home Page Kundli Section End***/
/*** Shop Page Start ***/
.bannerOverlay {
  background: rgba(0, 0, 0, 0.55);
}

/* overlay loader on grid */
.pageLoaderOverlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

/* shop card improvements */
.shop-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12) !important;
}
.shop-card-img {
  transition: transform 0.25s ease;
}
.shop-card:hover .shop-card-img {
  transform: scale(1.04);
}

/* ✅ FIX: OFF badge + wishlist overlap */
.off-badge {
  z-index: 6;
}

.wishlist-btn {
  z-index: 5;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.wishlist-with-discount {
  top: 54px; /* pushes below OFF badge */
}
/*** Shop Page End ***/
/*** Product Detail Start ***/
.thumb-btn {
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.thumb-btn:hover {
  transform: translateY(-2px);
}
.thumb-btn.active {
  border: 2px solid #111 !important;
}
.accordion-button {
  background: #f4f6f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.12);
}
/*** Product Detail End ***/
/*** Skeleton Start ***/
.skeleton-hero {
  width: 100%;
  height: 340px;
  background: linear-gradient(
	90deg,
	rgba(0, 0, 0, 0.05),
	rgba(0, 0, 0, 0.09),
	rgba(0, 0, 0, 0.05)
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}
.skeleton-line {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
	90deg,
	rgba(0, 0, 0, 0.05),
	rgba(0, 0, 0, 0.09),
	rgba(0, 0, 0, 0.05)
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
  0% {
	background-position: 0% 0%;
  }
  100% {
	background-position: -200% 0%;
  }
}
/*** Skeleton End ***/
/*** Content Page Start ***/

.dynamic-page {
  width: 100%;
}

.cp-banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.cp-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.cp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
	90deg,
	rgba(0, 0, 0, 0.72),
	rgba(0, 0, 0, 0.18)
  );
  display: flex;
  align-items: center;
}
.cp-banner-inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  color: #fff;
}
.cp-banner-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
}
.cp-banner-subtitle {
  max-width: 720px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.fallback-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}
.fallback-header .inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrap {
  width: 100%;
  padding: 28px 0;
}
.content-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

/* typography */
.page-content :global(h2) {
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 10px;
  scroll-margin-top: 120px;
}
.page-content :global(p) {
  line-height: 1.9;
  margin-bottom: 12px;
  color: #333;
  font-size: 15.5px;
}
.page-content :global(ul),
.page-content :global(ol) {
  padding-left: 18px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.page-content :global(a) {
  color: var(--bs-primary);
  font-weight: 700;
  text-decoration: none;
}
.page-content :global(a:hover) {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .hero {
	height: 270px;
  }
}
/*** Content Page End ***/
/*** Cart Page Start ***/
.cartTitle {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: break-word;
  }
  .cartRow {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .cartRow:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
  }
  .qtyBox button {
	line-height: 1.2;
  }

  .addressCard {
	cursor: pointer;
	background: #fff;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .addressCard:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
  }
  .addressCard.active {
	border-color: rgba(17, 17, 17, 0.35) !important;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
/*** Cart Page End ***/
/*** Footer Service Start ***/
.service-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.25s ease;
	outline: none;
  }

  .service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 14px 45px rgba(0, 0, 0, 0.1) !important;
  }

  .service-card.active {
	transform: translateY(-10px);
	border-color: rgba(0, 0, 0, 0.12) !important;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12) !important;
  }

  .service-icon {
	height: 54px;
	width: 54px;
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.04);
	transition: all 0.25s ease;
  }

  .service-card:hover .service-icon {
	transform: rotate(-8deg) scale(1.05);
  }

  /* Detail expand */
  .service-detail {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.25s ease;
	color: #6c757d;
  }

  .service-detail.show {
	max-height: 90px;
	opacity: 1;
	margin-top: 6px;
  }

  /* Ripple effect */
  .ripple-layer {
	position: absolute;
	inset: 0;
	background: radial-gradient(
	  circle at var(--x, 50%) var(--y, 50%),
	  rgba(13, 110, 253, 0.16),
	  transparent 45%
	);
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
  }

  .service-card:active .ripple-layer {
	opacity: 1;
  }
/*** Footer Service End ***/
/*** Footer Start ***/

.footer-wrap {
  background: radial-gradient(
      circle at 12% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #0b0f1a, #070a12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap.sticky {
  position: sticky;
  top: 100%;
}

.footer-box {
  padding-right: 12px;
}

/* Brand */
.brand-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo {
  height: 48px;
  width: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
}

.brand-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

/* Titles */
.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  transition: all 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0%;
  background: var(--theme-gold);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social */
.social-btn {
  height: 42px;
  width: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(199, 158, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

/* WhatsApp */
.whatsapp-btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(37, 211, 102, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Back to top */
.back-top-inline {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
  transition: all 0.2s ease;
}

.back-top-inline:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 45px rgba(199, 158, 0, 0.18);
}

/* Newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-input:focus {
  border-color: rgba(199, 158, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(199, 158, 0, 0.2);
}

.newsletter-input.has-error {
  border-color: rgba(220, 53, 69, 0.65);
}

.newsletter-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--theme-gold);
  color: #111;
  font-weight: 900;
  transition: all 0.2s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(199, 158, 0, 0.35);
}

.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.footer-brand {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand:hover {
  text-decoration: underline;
}

.trust-badge {
  height: 44px;
  width: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 35px rgba(199, 158, 0, 0.12);
}

@media (max-width: 576px) {
  .footer-logo {
    height: 44px;
    width: 44px;
  }
}


/*** Footer End ***/