/* ==========================================================================
   SAREE HOUSE - LUXURY ETHNIC THEME STYLESHEET
   ========================================================================== */

:root {
  --bg-dark: #111719;
  --bg-darker: #0b1012;
  --bg-card: #151b1d;
  --gold-primary: #c89b4a;
  --gold-light: #e6c47a;
  --gold-dark: #9a7228;
  --cream: #f5e8cf;
  --text-muted: #b8b8b8;
  --white: #ffffff;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Setup */
html,
body {
  background-color: var(--bg-darker);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden !important;
}
.text-muted {
  color: #fff !important;
}
.logo {
  width: 140px;
}
::placeholder {
  color: #fff !important;
}
.fa-bars:before {
  color: #fff !important;
}
h1,
h2,
h3,
h4,
.font-playfair {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* Utility Classes */
.bg-dark {
  background-color: var(--bg-dark) !important;
}
.bg-darker {
  background-color: var(--bg-darker) !important;
}
.text-gold {
  color: var(--gold-light) !important;
}
.text-gold-light {
  color: var(--cream) !important;
}
.border-gold {
  border-color: var(--gold-primary) !important;
}
.border-gold-subtle {
  border-color: rgba(200, 155, 74, 0.2) !important;
}

.section-padding {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.sub-title {
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
}

.gold-divider {
  height: 3px;
  width: 70px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
  margin-top: 10px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 155, 74, 0.4);
}

.btn-outline-gold {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  background: transparent;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-2px);
}

/* NAVBAR */
.custom-navbar {
  padding: 15px 0;
  transition: var(--transition);
  background: rgba(11, 16, 18, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 155, 74, 0.15);
}

.custom-navbar.scrolled {
  background: rgba(11, 16, 18, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.sh-monogram {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  background: radial-gradient(
    circle,
    rgba(200, 155, 74, 0.2) 0%,
    transparent 70%
  );
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-sub {
  color: var(--gold-primary);
  font-size: 0.55rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.navbar-menu .nav-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
  color: var(--gold-light);
}

.navbar-menu .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--gold-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-menu .nav-link:hover::after,
.navbar-menu .nav-link.active::after {
  width: 60%;
}

.action-icon {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.action-icon:hover {
  color: var(--gold-primary);
  transform: scale(1.1);
}

/* HERO SECTION */
.hero-section {
  height: 100vh;
  min-height: 600px;
}

.heroSwiper,
.hero-slide {
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center center;
}

.hero-content {
  z-index: 2;
  max-width: 650px;
  padding-top: 60px;
}

.tag-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200, 155, 74, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 300;
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-light);
  background: rgba(17, 23, 25, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--gold-primary);
  width: 25px;
  border-radius: 5px;
  opacity: 1;
}

/* SHOP BY CATEGORY */
.category-card {
  cursor: pointer;
  transition: var(--transition);
}

.category-img-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid var(--gold-primary);
  background: var(--bg-card);
  transition: var(--transition);
  overflow: hidden;
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.category-card:hover .category-img-wrapper {
  box-shadow: 0 0 20px rgba(200, 155, 74, 0.5);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.category-card:hover .category-img-wrapper img {
  transform: scale(1.1);
}

.category-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

/* ABOUT SECTION */
.about-media-card {
  border: 1px solid rgba(200, 155, 74, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.8);
  color: #000;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

.gold-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold-primary);
  color: #000;
  padding: 10px 18px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
}

.gold-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  display: block;
}
.gold-badge strong {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRODUCT CARDS */
.filter-tabs .filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 20px;
  transition: var(--transition);
  margin: 0 4px;
}

.filter-tabs .filter-btn.active,
.filter-tabs .filter-btn:hover {
  background: var(--gold-primary);
  color: #000;
  font-weight: 500;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 155, 74, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-8px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(200, 155, 74, 0.2);
}

.product-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 16, 18, 0.7);
  border: 1px solid rgba(200, 155, 74, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.wishlist-btn.active,
.wishlist-btn:hover {
  color: #e74c3c;
  background: #fff;
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(11, 16, 18, 0.9), transparent);
  transition: var(--transition);
  display: flex;
  justify-content: center;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.quick-view-btn {
  background: var(--gold-primary);
  border: none;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 15px;
  cursor: pointer;
}

.product-details {
  padding: 15px;
}

.product-cat {
  font-size: 0.7rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.product-title {
  font-size: 0.9rem;
  color: var(--cream);
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.add-to-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* STATS STRIP */
.bg-gold-gradient {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-primary),
    var(--gold-dark)
  );
}

.stat-box h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  display: inline-block;
}

.stat-plus {
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: -5px;
}

/* WHY CHOOSE US */
.why-list li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--cream);
}

.why-img-box img {
  border: 1px solid var(--gold-primary);
}

.floating-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: rgba(11, 16, 18, 0.9);
  border: 1px solid var(--gold-primary);
  padding: 15px 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.badge-inner span {
  display: block;
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.badge-inner strong {
  color: var(--white);
  font-size: 0.95rem;
}

/* SERVICE BENEFITS */
.benefit-card {
  padding: 25px 15px;
  background: var(--bg-card);
  border: 1px solid rgba(200, 155, 74, 0.15);
  border-radius: 12px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.benefit-card h5 {
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.5px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 155, 74, 0.2);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  height: 100%;
}

.quote-icon {
  font-size: 2rem;
  color: rgba(200, 155, 74, 0.3);
  margin-bottom: 10px;
}

.stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-primary);
}

.client-name {
  font-size: 1rem;
  color: var(--white);
}
.client-role {
  font-size: 0.75rem;
}

/* OFFER BANNER */
.offer-card-bg {
  background: linear-gradient(135deg, #4a0d0d, #1a0404);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.offer-tag {
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}

.offer-title {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.offer-gift-icon {
  font-size: 7rem;
  color: var(--gold-primary);
  opacity: 0.8;
}

/* BLOG SECTION */
.blog-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 74, 0.15);
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.blog-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 16, 18, 0.85);
  color: var(--gold-light);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--gold-primary);
}

.blog-content {
  padding: 20px;
}
.blog-title {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.read-more-link {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 500;
}
.read-more-link:hover {
  color: var(--gold-light);
}

/* NEWSLETTER */
.newsletter-title {
  font-family: var(--font-heading);
  color: var(--cream);
}
.newsletter-input {
  background: var(--bg-card);
  border: 1px solid rgba(200, 155, 74, 0.3);
  color: var(--white);
  border-radius: 25px;
  padding: 12px 20px;
  max-width: 400px;
}
.newsletter-input:focus {
  background: var(--bg-card);
  border-color: var(--gold-primary);
  color: var(--white);
  box-shadow: none;
}

/* FOOTER */
.footer-heading {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 12px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 74, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold-primary);
  color: #000;
}

/* FLOATING CONTROLS */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #000;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 18, 0.95);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-size: 3rem;
  cursor: pointer;
}

.search-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold-primary);
  border-radius: 0;
  color: var(--white);
  font-size: 1.8rem;
  text-align: center;
}

.search-input:focus {
  background: transparent;
  box-shadow: none;
  border-color: var(--gold-light);
  color: var(--white);
}

/* INNER PAGES (Play Store listing & Privacy Policy) */
.inner-hero {
  min-height: 420px;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 16, 18, 0.78),
    rgba(11, 16, 18, 0.92)
  );
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(200, 155, 74, 0.4);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 0.8rem;
  background: rgba(200, 155, 74, 0.12);
  margin: 0 8px 8px 0;
}

.listing-anchor-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  background: rgba(11, 16, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 155, 74, 0.2);
  overflow-x: auto;
  white-space: nowrap;
}

.listing-anchor-nav a {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 14px 12px;
}

.listing-anchor-nav a:hover,
.listing-anchor-nav a.active {
  color: var(--gold-light);
}

.listing-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 155, 74, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.listing-card h3,
.listing-card h4 {
  color: var(--cream);
}

.copy-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.copy-label {
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.char-hint {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.btn-copy {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.btn-copy:hover,
.btn-copy.copied {
  background: var(--gold-primary);
  color: #000;
}

.copy-box {
  background: var(--bg-darker);
  border: 1px solid rgba(200, 155, 74, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--cream);
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.check-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 155, 74, 0.12);
  color: var(--cream);
  font-size: 0.92rem;
}

.check-row:last-child {
  border-bottom: none;
}

.check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-box.done {
  background: var(--gold-primary);
  position: relative;
}

.check-box.done::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: #000;
  position: absolute;
  top: 1px;
  left: 3px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 155, 74, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.policy-body h3 {
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.policy-body p,
.policy-body li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.policy-body ul {
  padding-left: 1.2rem;
}

.data-pill {
  display: inline-block;
  background: rgba(200, 155, 74, 0.12);
  border: 1px solid rgba(200, 155, 74, 0.3);
  color: var(--cream);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  margin: 0 6px 8px 0;
}

.nav-link.active-page {
  color: var(--gold-light) !important;
}
