/* ================================
   ROOT VARIABLES
   ================================ */
@font-face {
  font-family: "Forum";
  src: url("../fonts/Forum-Regular.ttf");
}

@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-VariableFont_wght.ttf");
}

:root {
  --primary-color: #fdf8f4;
  --secondary-color: #916b43;
  --accent-color: #c9a050;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --primary-font: "Forum", sans-serif;
  --secondary-font: "Mulish", sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-sidebar: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================================
   BASE STYLES
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--primary-color) !important;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3 {
  font-family: var(--primary-font);
  color: var(--secondary-color) !important;
}

h4,
h5,
h6 {
  font-family: var(--secondary-font);
  color: var(--secondary-color) !important;
}

p {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
  color: var(--text-dark);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ================================
   HEADER & NAVBAR - LIGHT THEME
   ================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-synastry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* ================================
   LOGO STYLES
   ================================ */
.nav-logo a {
  display: block;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

/* ================================
   NAVIGATION MENU - DESKTOP
   ================================ */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem !important;
}

.nav-item {
  position: relative;
  color: var(--secondary-color) !important;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  color: var(--text-dark);
  font-size: 1rem !important;
  font-weight: 600 !important;
  /* letter-spacing: 1.5px; */
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
}

/* Animated Underline - Left to Right on Hover, Right to Left on Leave */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:not(:hover)::after {
  transform-origin: right center;
}

.nav-plus {
  color: var(--accent-color);
  font-weight: 400;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 0.75rem 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  color: var(--accent-color);
  background: rgba(201, 160, 80, 0.05);
}

/* ================================
   ACTION BUTTONS
   ================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
}

.action-btn:hover {
  color: var(--accent-color);
}

/* Spinning Dotted Circle Effect */
.action-btn::before,
.tara-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  border: 2px dashed var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
}

.action-btn:hover::before,
.tara-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: spinCircle 3s linear infinite;
}

@keyframes spinCircle {
  from {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
  }
}

/* Cart Badge */
.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Tara Button */
.tara-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: none;
  /* Hidden on desktop by default */
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.tara-btn img,
.tara-btn svg {
  width: 30px;
  height: 30px;
  transition: var(--transition-smooth);
}

.tara-btn:hover img,
.tara-btn:hover svg {
  transform: rotate(45deg);
}

/* ================================
   SIDEBAR OVERLAY
   ================================ */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 998;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================
   SIDEBAR MENU - STARRY THEME
   ================================ */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 50%, #2a1a1a 100%);
  z-index: 999;
  transition: var(--transition-sidebar);
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-menu.active {
  right: 0;
}

/* Starry Background Effect */
.sidebar-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px,
      rgba(255, 255, 255, 0.8),
      transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(2px 2px at 130px 80px,
      rgba(255, 255, 255, 0.6),
      transparent),
    radial-gradient(1px 1px at 160px 120px, #fff, transparent),
    radial-gradient(2px 2px at 200px 50px,
      rgba(255, 255, 255, 0.7),
      transparent),
    radial-gradient(1px 1px at 250px 160px, #fff, transparent),
    radial-gradient(2px 2px at 280px 90px,
      rgba(255, 255, 255, 0.5),
      transparent),
    radial-gradient(1px 1px at 320px 200px, #fff, transparent),
    radial-gradient(2px 2px at 350px 130px,
      rgba(255, 255, 255, 0.8),
      transparent),
    radial-gradient(1px 1px at 50px 250px, #fff, transparent),
    radial-gradient(2px 2px at 100px 300px,
      rgba(255, 255, 255, 0.6),
      transparent),
    radial-gradient(1px 1px at 150px 350px, #fff, transparent),
    radial-gradient(2px 2px at 220px 280px,
      rgba(255, 255, 255, 0.7),
      transparent),
    radial-gradient(1px 1px at 300px 320px, #fff, transparent),
    radial-gradient(2px 2px at 70px 400px,
      rgba(255, 255, 255, 0.5),
      transparent),
    radial-gradient(1px 1px at 180px 450px, #fff, transparent),
    radial-gradient(2px 2px at 260px 420px,
      rgba(255, 255, 255, 0.8),
      transparent),
    radial-gradient(1px 1px at 340px 480px, #fff, transparent),
    radial-gradient(2px 2px at 30px 520px,
      rgba(255, 255, 255, 0.6),
      transparent),
    radial-gradient(1px 1px at 120px 580px, #fff, transparent),
    radial-gradient(2px 2px at 200px 550px,
      rgba(255, 255, 255, 0.7),
      transparent),
    radial-gradient(1px 1px at 290px 600px, #fff, transparent),
    radial-gradient(2px 2px at 360px 560px,
      rgba(255, 255, 255, 0.5),
      transparent);
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* Close Button - Dashed Circle */
.sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 10;
}

.sidebar-close:hover {
  border-color: var(--accent-color);
  transform: rotate(90deg);
}

.close-icon {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

/* ================================
   SIDEBAR NAVIGATION
   ================================ */
.sidebar-nav {
  padding: 120px 50px 50px;
  position: relative;
  z-index: 5;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.sidebar-link i {
  font-size: 0.75rem;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.sidebar-link:hover {
  color: var(--accent-color);
}

.sidebar-item.active .sidebar-link i {
  transform: rotate(180deg);
}

/* Sidebar Submenu */
.sidebar-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.sidebar-item.active .sidebar-submenu {
  max-height: 300px;
}

.sidebar-submenu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.sidebar-submenu a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 1200px) {
  .navbar-synastry {
    padding: 1rem 2rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {

  /* Hide desktop menu on mobile */
  .nav-menu {
    display: none;
  }

  .tara-btn {
    display: flex;
    /* Show on tablets/mobile */
  }

  /* Hide desktop-only buttons */
  .desktop-only {
    display: none;
  }

  .navbar-synastry {
    padding: 1rem 1.5rem;
  }

  .nav-logo img {
    height: 40px;
  }

  .sidebar-menu {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-synastry {
    padding: 0.75rem 1rem;
  }

  .nav-logo img {
    height: 35px;
  }

  .tara-btn {
    width: 40px;
    height: 40px;
  }

  .tara-btn svg {
    width: 26px;
    height: 26px;
  }

  .sidebar-close {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .sidebar-nav {
    padding: 100px 30px 30px;
  }

  .sidebar-link {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* ================================
   HERO SPINNING IMAGE SECTION
   ================================ */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.circle-around {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  animation: rotateCircle 25s linear infinite;
  object-fit: contain;
  z-index: 1;
}

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 85%;
  height: auto;
  z-index: 2;
}

/* Responsive sizing for hero image */
@media (max-width: 1400px) {
  .hero-image-wrapper {
    max-width: 580px;
  }
}

@media (max-width: 1200px) {
  .hero-image-wrapper {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero-image-wrapper {
    max-width: 90vw;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    max-width: 90vw;
  }
}

@media (max-width: 576px) {
  .hero-image-wrapper {
    max-width: 90vw;
  }
}

/* ================================
   MARQUEE SECTION
   ================================ */
.marquee-wrapper {
  background-color: var(--text-dark);
  color: var(--accent-color);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--primary-font);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.marquee-item img {
  width: 20px;
  height: 20px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
  /* padding: 5rem 1rem; */
  background-color: var(--primary-color);
  border-bottom: 1px solid #dcdcdc;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  padding: 5rem 1rem;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  /* Adjust as needed for Arch/Oval */
  margin-bottom: 2rem;
  z-index: 1;
}

/* Base Image Styling */
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Shape will be applied by specific classes */
}

/* Dashed Border Pseudo-element */
.image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px dashed #dcdcdc;
  /* Light gray dashed border */
  z-index: -1;
  pointer-events: none;
}

/* SHAPES */

/* Arch Shape */
.shape-arch img {
  border-radius: 150px 150px 0 0;
}

.shape-arch::before {
  border-radius: 160px 160px 10px 10px;
  /* Slightly larger radius for the border */
}

/* Oval Shape */
.shape-oval {
  aspect-ratio: 3 / 4.1;
}

.shape-oval img {
  border-radius: 50%;
}

.shape-oval::before {
  border-radius: 50%;
}

/* Service Content */
.service-title {
  font-family: var(--primary-font);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-desc {
  font-family: var(--secondary-font);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--secondary-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

.service-link i,
.service-link img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  opacity: 0.8;
}

.service-link:hover img {
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .services-section .col-lg-4:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 992px) {
  .services-section .col-lg-4:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
  }

  .services-section .col-lg-4:last-child .service-card {
    margin-bottom: 0;
  }
}

/* ================================
   SHOP SECTION
   ================================ */
.shop-section {
  background-color: var(--primary-color);
}

.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--primary-font);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.product-card {
  background: #f8ffe8;
  border-radius: 18px;
  padding: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #916b43;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.product-title {
  font-size: 1.1rem !important;
  margin-bottom: 8px !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  font-family: var(--secondary-font) !important;
  line-height: 1.4;
  text-transform: none !important;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e1e1e;
}

.original-price {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: line-through;
}

/* BUTTON */
.add-to-cart-btn1 {
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
  background: #000000;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  max-width: 90px;
  width: 100%;
}

.add-to-cart-btn1:hover {
  background: #2F3645;
  transform: scale(1.05);
}

.view-all-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #f0c35a, #82800b);
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.view-all-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  color: #fff;
}


/* ================================
   TESTIMONIAL SECTION
   ================================ */
/* SECTION */
.modern-testimonial-section {
  padding: 40px 0;
  background:
    linear-gradient(to bottom,
      #faf7f2,
      #ffffff);
  overflow: hidden;
}

/* HEADING */
.testimonial-heading {
  max-width: 760px;
  margin: 0 auto 70px;
}

.testimonial-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b8562;
  margin-bottom: 18px;
}

.testimonial-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #111;
}

.testimonial-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

/* CARD */
.testimonial-card {
  background: #f1efed;
  backdrop-filter: blur(14px);
  border-radius: 30px;
  overflow: hidden;
  transition: .5s ease;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, .06);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.testimonial-image-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .7s ease;
}

.testimonial-card:hover .testimonial-image {
  transform: scale(1.08);
}

/* CONTENT */
.testimonial-content {
  padding: 30px;
}

/* RATING */
.testimonial-rating {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.testimonial-rating i {
  color: #f5b301;
  font-size: 18px;
}

/* NAME */
.testimonial-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
  text-align: center;
}

/* TEXT */
.testimonial-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin: 0;
}

/* SWIPER */
.testimonialSwiper {
  position: relative;
  padding-bottom: 20px;
}

/* NAVIGATION */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .4s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #111;
  color: #fff;
}

.testimonial-prev {
  left: -25px;
}

.testimonial-next {
  right: -25px;
}

.testimonial-prev i,
.testimonial-next i {
  font-size: 24px;
}

/* RESPONSIVE */
@media(max-width:1200px) {

  .testimonial-title {
    font-size: 46px;
  }
}

@media(max-width:991px) {

  .modern-testimonial-section {
    padding: 40px 0;
  }

  .testimonial-title {
    font-size: 40px;
  }

  .testimonial-prev,
  .testimonial-next {
    display: none;
  }
}

@media(max-width:767px) {

  .testimonial-title {
    font-size: 34px;
  }

  .testimonial-heading {
    margin-bottom: 50px;
  }

  .testimonial-content {
    padding: 24px;
  }

  .testimonial-image {
    height: 260px;
  }

  .testimonial-name {
    font-size: 22px;
  }
}

/* ================================
   ASTROLOGER SECTION
   ================================ */
.astrologer-section {
  overflow: hidden;
}

.astrologer-left {
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.astrologer-image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

/* Spinning Crystal */
.spinning-crystal {
  position: absolute;
  top: -20%;
  left: -20%;
  z-index: 10;
  animation: spin 10s linear infinite;
}

.spinning-crystal img {
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Circular Frame */
.astrologer-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.astrologer-photo {
  width: 100%;
  height: 50vh;
  border-radius: 50% 50% 0 0;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.signature {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Brush Script MT", cursive;
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

/* Right Column Content */
.astrologer-right {
  background-color: #f9f6f3;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}

.astrologer-content {
  max-width: 600px;
  margin: 0 auto;
}

.astrologer-heading {
  font-family: var(--primary-font);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #a8835f;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.astrologer-description {
  font-family: var(--secondary-font);
  font-size: 1rem;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 2.5rem;
}

.schedule-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.schedule-btn:hover {
  background-color: #a8835f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.follow-text {
  font-family: var(--secondary-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a8835f;
  text-transform: uppercase;
}

.social-icon {
  color: #a8835f;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .astrologer-left {
    min-height: 500px;
  }

  .astrologer-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .astrologer-left {
    min-height: 400px;
  }

  .astrologer-right {
    padding: 3rem 2rem;
  }

  .astrologer-heading {
    font-size: 1.5rem;
  }

  .astrologer-photo-frame {
    max-width: 300px;
  }

  .signature {
    font-size: 2rem;
    bottom: 40px;
  }

  .spinning-crystal {
    top: -20px;
    left: 20px;
  }

  .spinning-crystal img {
    width: 200px;
  }
}

/* ================================
   ZODIAC SIGNS SECTION
   ================================ */
.zodiac-section {
  padding: 5rem 0;
  background-color: #f9f6f3;
}

.zodiac-heading {
  font-family: var(--primary-font);
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  color: #a8835f;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.zodiac-subtitle {
  font-family: var(--secondary-font);
  font-size: 1rem;
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 3rem;
}

.zodiac-link {
  text-decoration: none;
  display: block;
}

.zodiac-card {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.zodiac-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  transition: transform 0.5s ease;
}

.zodiac-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 45deg tilt on hover */
.zodiac-link:hover .zodiac-icon {
  transform: rotate(45deg);
}

.zodiac-name {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8835f;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zodiac-dates {
  font-family: var(--secondary-font);
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .zodiac-heading {
    font-size: 2.2rem;
  }

  .zodiac-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .zodiac-section {
    padding: 3rem 0;
  }

  .zodiac-heading {
    font-size: 1.8rem;
  }

  .zodiac-icon {
    width: 100px;
    height: 100px;
  }

  .zodiac-name {
    font-size: 0.95rem;
  }

  .zodiac-dates {
    font-size: 0.75rem;
  }
}

/* ================================
   BLOG SECTION
   ================================ */
.blog-section {
  padding: 5rem 0;
  border-top: 1px solid #916b43;
  border-bottom: 1px solid #916b43;
}

.blog-heading {
  font-family: var(--primary-font);
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  color: #a8835f;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.blog-subtitle {
  font-family: var(--secondary-font);
  font-size: 1rem;
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 4rem;
}

.blog-card {
  margin-bottom: 2rem;
}

.blog-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-image-link:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  text-align: left;
  padding: 0 1rem;
}

.blog-title {
  font-family: var(--primary-font);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-title a {
  color: #a8835f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #8a6a4f;
}

.blog-read-more {
  font-family: var(--secondary-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: #a8835f;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #1a1a1a;
  gap: 0.75rem;
}

.blog-read-more i {
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-heading {
    font-size: 2.2rem;
  }

  .blog-title {
    font-size: 1.2rem;
    min-height: 60px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }

  .blog-heading {
    font-size: 1.8rem;
  }

  .blog-subtitle {
    margin-bottom: 2.5rem;
  }

  .blog-title {
    font-size: 1.1rem;
    min-height: auto;
  }

  .blog-card {
    margin-bottom: 1.5rem;
  }
}

/* ================================
   FOOTER SECTION
   ================================ */
.main-footer {
  background: linear-gradient(135deg, #2c2416 0%, #1a1410 100%);
  color: #c7b299;
}

.footer-top {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(168, 131, 95, 0.2);
}

.footer-heading {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8835f;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #a8835f, transparent);
}

.footer-text {
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9a8a7a;
  margin-bottom: 1.5rem;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(168, 131, 95, 0.1);
  border: 1px solid rgba(168, 131, 95, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8835f;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #a8835f;
  color: #1a1410;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(168, 131, 95, 0.3);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  color: #9a8a7a;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #a8835f;
  padding-left: 5px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  color: #9a8a7a;
  line-height: 1.6;
}

.footer-contact i {
  color: #a8835f;
  font-size: 1rem;
  min-width: 20px;
  margin-top: 0.2rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.copyright-text,
.developer-credit {
  font-family: var(--secondary-font);
  font-size: 0.85rem;
  color: #82766a;
  margin: 0;
  padding: 0.5rem 0;
}

.developer-credit a {
  color: #a8835f;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.developer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #a8835f;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #d4a574;
}

.developer-credit a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-top {
    padding: 3rem 0 1.5rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 2rem 0 1rem;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-heading {
    text-align: center;
  }

  .footer-text {
    text-align: center;
    font-size: 0.85rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .copyright-text,
  .developer-credit {
    font-size: 0.8rem;
  }
}

/* ===== FOR MOBILE SCRREN   ===== */
/* SIDEBAR BASE */
.sidebar-menu {
  width: 300px;
  padding: 30px 20px;
}

/* LINKS */
.sidebar-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  color: #fcf2f2;
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 500;
}

/* ARROW */
.arrow {
  font-size: 18px;
  transition: .3s;
  color: #916b43;
}

/* SUBMENU */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 10px;
}

.has-submenu.active .submenu {
  max-height: 600px;
  margin-bottom: 10px;
}

.has-submenu.active .arrow {
  transform: rotate(45deg);
}

/* SUB LINKS */
.submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #ad9f3f;
  text-decoration: none;
}

.submenu a:hover {
  color: #c9a050;
  transform: translateX(4px);
}

/* TITLES */
.submenu-title {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #916b43;
  font-weight: 600;
}

/* ZODIAC GRID */
.zodiac-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 5px;
}

.zodiac-subgrid a {
  padding: 8px 6px;
  text-align: center;
  background: #f7f2ec;
  border-radius: 8px;
  font-size: 13px;
}

/* ===== dropdown for horoscope  ===== */
/* ===== PARENT POSITION ===== */
.mega-parent {
  position: relative;
}

/* ===== DROPDOWN BOX ===== */
.mega-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all .28s cubic-bezier(.22, .61, .36, 1);
  z-index: 999;
}

/* SHOW */
.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* SMALL ARROW */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: -3px -3px 10px rgba(0, 0, 0, 0.05);
}

/* LAYOUT */
.mega-container {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

/* LEFT LINKS */
.mega-col {
  flex: 1;
}

.mega-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #916b43;
  margin-bottom: 10px;
  letter-spacing: .3px;
}

/* LINKS STYLE */
.mega-col a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  transition: all .18s ease;
}

/* HOVER EFFECT */
.mega-col a:hover {
  background: #f7f2ec;
  color: #c9a050;
  transform: translateX(4px);
}

/* RIGHT CARD */
.mega-highlight {
  width: 190px;
  background: linear-gradient(145deg, #fdf8f4, #f3ebe2);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(201, 160, 80, 0.15);
}

.mega-highlight h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.mega-highlight p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.4;
}

/* BUTTON */
.mega-btn {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 6px 14px rgba(201, 160, 80, 0.35);
}

.mega-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 160, 80, 0.45);
}

/* MOBILE */
@media(max-width:991px) {

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 15px 0;
    display: none;
  }

  .mega-parent.active .mega-menu {
    display: block;
  }

  .mega-container {
    flex-direction: column;
  }

  .mega-highlight {
    width: 100%;
  }
}

/* CATEGORY MEGA MENU */
.tag-bubble-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  justify-content: flex-end;
  pointer-events: none;
}

.tag-bubble {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(145, 107, 67, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

/* =========================================================
   TABLET RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .tag-bubble-wrapper {
    top: 8px;
    right: 8px;
    gap: 4px;
    max-width: 80%;
  }

  .tag-bubble {
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 0.3px;
  }
}


/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
  .tag-bubble-wrapper {
    top: 7px;
    right: 7px;
    gap: 4px;
    max-width: 78%;
  }

  .tag-bubble {
    font-size: 8px;
    padding: 2px 7px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(145, 107, 67, 0.25);
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 480px) {
  .tag-bubble-wrapper {
    top: 6px;
    right: 6px;
    gap: 3px;
    max-width: 75%;
  }

  .tag-bubble {
    font-size: 7px;
    padding: 2px 6px;
    letter-spacing: 0.2px;
  }
}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */
@media (max-width: 360px) {
  .tag-bubble-wrapper {
    max-width: 72%;
  }

  .tag-bubble {
    font-size: 6px;
    padding: 2px 5px;
  }
}

/* =========================================
   MEGA MENU
========================================= */

.mega-category {
  position: relative;
}

/* MAIN DROPDOWN */
.category-mega-menu {
  position: absolute;
  top: 120%;
  left: 100%;
  transform: translateX(-50%) translateY(20px);
  width: 1150px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 35px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.03);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;
  z-index: 999;
}

/* SHOW */
.mega-category:hover .category-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* =========================================
   GRID
========================================= */

.category-mega-container {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 35px;
}

/* =========================================
   COLUMN
========================================= */

.category-block {
  display: flex;
  flex-direction: column;
}

/* ITEMS GRID */
.category-items-grid {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

/* TITLE */
.category-block h4 {
  font-size: 15px;
  font-weight: 700;

  color: #916b43;

  margin-bottom: 18px;

  letter-spacing: .3px;

  position: relative;
  padding-bottom: 10px;
}

/* SMALL LINE */
.category-block h4::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 35px;
  height: 2px;

  background: #c9a050;

  border-radius: 10px;
}

/* =========================================
   CATEGORY ITEM
========================================= */

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 18px;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  background: #fff;
  border: 1px solid rgba(145, 107, 67, 0.08);
  min-height: 130px;
}

/* SOFT HOVER */
.cat-item:hover {
  background: #faf7f2;
  transform: translateX(6px);
}

/* =========================================
   IMAGE
========================================= */

.cat-img-wrapper {
  width: 58px;
  height: 58px;
  min-width: 58px;
}

.cat-item:hover {
  transform: translateY(-4px);
  background: #faf7f2;
  box-shadow:
    0 10px 25px rgba(145, 107, 67, 0.08);
}

.cat-item:hover .cat-img-wrapper {
  transform: scale(1.05);
}

.cat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* PLACEHOLDER */
.cat-img-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #916b43;
  font-size: 18px;
}

/* =========================================
   TEXT
========================================= */

.cat-item h5 {
  font-size: 14px;
  font-weight: 600;

  color: #222;

  margin: 0;

  transition: .3s ease;
}

.cat-item span {
  color: #916b43;
}

.cat-item:hover h5 {
  color: #916b43;
}

/* =========================================
   VIEW ALL
========================================= */

.cat-item.view-all {
  margin-top: 10px;

  background: #faf7f2;

  border: 1px solid rgba(145, 107, 67, 0.08);
}

.cat-item.view-all:hover {
  background: #916b43;
}

.cat-item.view-all:hover h5,
.cat-item.view-all:hover span {
  color: #fff !important;
}

/* =========================================
   ARROW
========================================= */

.category-mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform:
    translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: white;
  border-left:
    1px solid rgba(0, 0, 0, 0.04);
  border-top:
    1px solid rgba(0, 0, 0, 0.04);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 991px) {

  .category-mega-menu {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 15px 0;
    background: transparent;
    backdrop-filter: none;
  }

  .mega-category.active .category-mega-menu {
    display: block;
  }

  .category-mega-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-block h4 {
    margin-bottom: 14px;
  }
}

.flatpickr-calendar {
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  border: 1px solid rgba(201, 160, 80, .25);
  font-family: inherit;
}

.flatpickr-day.selected {
  background: linear-gradient(135deg, #c9a050, #916b43);
  border: none;
}

.flatpickr-day.today {
  border: 1px solid #c9a050;
}

.flatpickr-day:hover {
  background: #f4ede3;
}

.flatpickr-time input:hover {
  background: #f4ede3;
}

.form-group input:focus {
  outline: none;
  border: 1px solid #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .2);
}

.kundli-page {
  background: linear-gradient(#fff, #f8f3eb);
  padding-bottom: 60px;
}

.kundli-hero {
  text-align: center;
  padding: 70px 0 40px;
}

.kundli-hero h1 {
  font-size: 42px;
  color: #8b6a3e;
  margin-bottom: 10px;
}

.kundli-hero p {
  color: #666;
  margin-bottom: 30px;
}

.kundli-form-card {
  max-width: 520px;
  margin: auto;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  border: 1px solid rgba(201, 160, 80, .2);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  text-align: left;
  margin-bottom: 16px;
  flex: 1;
}

.form-group label {
  font-size: 13px;
  color: #916b43;
  display: block;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e7e2da;
}

.kundli-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: white;
  font-size: 15px;
  cursor: pointer;
}

/* RESULT */
.kundli-result {
  margin-top: 60px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.chart-card,
.planet-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.chart-placeholder {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf6ef;
  border-radius: 14px;
  color: #999;
}

/* TABLE */
.planet-table {
  width: 100%;
  border-collapse: collapse;
}

.planet-table th,
.planet-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* SUMMARY */
.kundli-summary {
  margin-top: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.download-btn {
  margin-top: 15px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #916b43;
  color: #fff;
}

.category-hero {
  position: relative;
  padding: 140px 0 110px;
  background: #0b0913;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.category-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 160, 80, .25), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(145, 107, 67, .25), transparent 40%);
  animation: auraMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auraMove {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(20px);
  }
}

.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.category-hero h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #e8d7b7, #c9a050, #e8d7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-hero p {
  color: #cfc6b5;
  font-size: 18px;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.3rem;
  font-weight: 700;
}

.section-title h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: var(--secondary-font);
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

@media (max-width: 1199px) {
  .section-title {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
}

/* Medium devices (tablets) */
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}

/* Small devices (large phones) */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.need-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  display: block;
}

.need-card:hover {
  transform: translateY(-10px);
  border-color: #c9a050;
  box-shadow: 0 20px 40px rgba(201, 160, 80, 0.1);
}

.need-icon {
  font-size: 40px;
  color: #c9a050;
  margin-bottom: 20px;
}

.need-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.crystal-info-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .crystal-info-card {
    flex-direction: row;
  }

  .crystal-info-image {
    width: 40%;
  }

  .crystal-info-content {
    width: 60%;
  }
}

.crystal-info-image {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.crystal-info-content {
  padding: 50px;
}

.crystal-tag {
  display: inline-block;
  padding: 6px 15px;
  background: #fdf8ef;
  color: #916b43;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.crystal-info-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.crystal-details-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.crystal-detail-item strong {
  display: block;
  color: #1a1a1a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.crystal-detail-item span {
  color: #666;
}

.guide-box {
  background: #fcfaf7;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  border: 1px dashed #eaddcc;
}

.guide-box h3 {
  color: #916b43;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.myth-fact-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #c9a050;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.myth-val {
  color: #dc3545;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.fact-val {
  color: #28a745;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

.flow-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.flow-table th {
  background: #0b0913;
  color: #fff;
  padding: 20px;
  text-align: left;
}

.flow-table td {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.flow-table tr:last-child td {
  border-bottom: none;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(rgba(11, 9, 19, 0.9), rgba(11, 9, 19, 0.9)), url('public/images/sun_moon.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 0;
  color: #fff;
  border-radius: 30px;
  margin: 50px 0;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #c9a050;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  margin-top: 30px;
}

.cta-btn:hover {
  background: #b18a45;
  transform: scale(1.05);
  color: #fff;
}


/* HERO SECTION */
.category-hero {
  position: relative;
  padding: 140px 0 110px;
  background: #0b0913;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* Aura animated background */
.category-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 160, 80, .25), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(145, 107, 67, .25), transparent 40%);
  animation: auraMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auraMove {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(20px);
  }
}

/* CONTENT */
.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.category-hero h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #e8d7b7, #c9a050, #e8d7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.category-hero p {
  color: #cfc6b5;
  font-size: 18px;
  line-height: 1.6;
}

/* BREADCRUMB */
.breadcrumb-astro {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #bba67c;
}

.breadcrumb-astro a {
  color: #bba67c;
  text-decoration: none;
}

.breadcrumb-astro span {
  margin: 0 10px;
}

/* PURPOSE DROPDOWN */
.purpose-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6dfd5;
  cursor: pointer;
  transition: .25s;
}

.dropdown-selected:hover {
  border-color: #c9a050;
  box-shadow: 0 6px 18px rgba(145, 107, 67, .12);
}

.purpose-dropdown.open svg {
  transform: rotate(180deg);
  transition: .3s;
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 20;
  overflow: hidden;
}

.purpose-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
}

.option:hover {
  background: #f7f2ea;
  color: #916b43;
}

.option.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
}

/* TOOLBAR */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
  margin: 35px 0 40px;
}

.toolbar-search {
  flex: 1;
}

.toolbar-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  transition: .2s;
}

.toolbar-search input:focus {
  outline: none;
  background: #fff;
  border-color: #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .18);
}

.toolbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
}

@media(max-width:992px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .purpose-dropdown {
    width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }
}

/* HERO SECTION */
.category-hero {
  position: relative;
  padding: 140px 0 110px;
  background: #0b0913;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* Aura animated background */
.category-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 160, 80, .25), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(145, 107, 67, .25), transparent 40%);
  animation: auraMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auraMove {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(20px);
  }
}

/* CONTENT */
.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.category-hero h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #e8d7b7, #c9a050, #e8d7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.category-hero p {
  color: #cfc6b5;
  font-size: 18px;
  line-height: 1.6;
}

/* BREADCRUMB */
.breadcrumb-astro {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #bba67c;
}

.breadcrumb-astro a {
  color: #bba67c;
  text-decoration: none;
}

.breadcrumb-astro span {
  margin: 0 10px;
}

/* PURPOSE DROPDOWN */
.purpose-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6dfd5;
  cursor: pointer;
  transition: .25s;
}

.dropdown-selected:hover {
  border-color: #c9a050;
  box-shadow: 0 6px 18px rgba(145, 107, 67, .12);
}

.purpose-dropdown.open svg {
  transform: rotate(180deg);
  transition: .3s;
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 20;
  overflow: hidden;
}

.purpose-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
}

.option:hover {
  background: #f7f2ea;
  color: #916b43;
}

.option.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
}

/* TOOLBAR */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
  margin: 35px 0 40px;
}

.toolbar-search {
  flex: 1;
}

.toolbar-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  transition: .2s;
}

.toolbar-search input:focus {
  outline: none;
  background: #fff;
  border-color: #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .18);
}

.toolbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
}

@media(max-width:992px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .purpose-dropdown {
    width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }
}

/* HERO */
.about-hero {
  padding: 90px 0 60px;
  background: #fdf8f4;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  color: #8b6a3e;
}

.about-hero p {
  color: #777;
  margin-top: 10px;
}

.about-story h2,
.about-services h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-story p {
  color: #555;
  line-height: 1.7;
}

.about-img {
  max-width: 90%;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* WHY SECTION */
.about-why {
  background: #f7f2ea;
  padding: 90px 0;
  text-align: center;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .25s;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  font-size: 28px;
  color: #916b43;
  margin-bottom: 12px;
}

/* SERVICES */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 14px;
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.about-list li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #916b43;
}

/* VISION */
.about-vision {
  background: #fdf8f4;
  padding: 90px 0;
  text-align: center;
}

.about-vision p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}

/* MOBILE */
@media(max-width:768px) {
  .about-hero h1 {
    font-size: 30px;
  }

  .about-story,
  .about-services {
    padding: 60px 0;
  }
}

/* ===== OFFER SECTION ===== */
.about-offer-advanced {
  padding: 120px 0;
  background: #fdf8f4;
  overflow: hidden;
}

.offer-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  align-items: center;
}

/* VISUAL SIDE */
.offer-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(145, 107, 67, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}

.visual-card {
  position: absolute;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-main {
  width: 360px;
  height: 480px;
  overflow: hidden;
  border: 8px solid #fff;
  position: relative;
}

.card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card-main:hover img {
  transform: scale(1.05);
}

.card-small {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.card-small i {
  color: #916b43;
  font-size: 20px;
  background: rgba(145, 107, 67, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.card-1 {
  top: 60px;
  right: -7px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 60px;
  left: -20px;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* CONTENT */
.offer-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 22px;
  font-weight: 700;
}

.offer-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.offer-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 27px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(145, 107, 67, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.offer-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(145, 107, 67, 0.05), transparent);
  opacity: 0;
  transition: 0.4s;
}

.offer-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(145, 107, 67, 0.1);
  border-color: rgba(145, 107, 67, 0.15);
}

.offer-item:hover::before {
  opacity: 1;
}

.offer-item i {
  font-size: 34px;
  color: #916b43;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: 0.3s;
}

.offer-item h4 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.offer-item p {
  font-size: 14.5px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ===== VISION ===== */
.about-vision-advanced {
  padding: 110px 0;
  background: #fff;
}

.vision-card {
  position: relative;
  text-align: center;
  padding: 70px 40px;
  border-radius: 24px;
  background: #f7f2ea;
  overflow: hidden;
}

.vision-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 160, 80, .35), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}

.vision-card h2 {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
}

.vision-card p {
  max-width: 650px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .offer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-visual {
    margin: auto;
  }

  .card-1 {
    right: 0;
  }

  .card-2 {
    left: 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* TITLE */
.category-hero h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #e8d7b7, #c9a050, #e8d7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.category-hero p {
  color: #cfc6b5;
  font-size: 18px;
  line-height: 1.6;
}

/* BREADCRUMB */
.breadcrumb-astro {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #bba67c;
}

.breadcrumb-astro a {
  color: #bba67c;
  text-decoration: none;
}

.breadcrumb-astro span {
  margin: 0 10px;
}

/* PURPOSE DROPDOWN */
.purpose-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6dfd5;
  cursor: pointer;
  transition: .25s;
}

.dropdown-selected:hover {
  border-color: #c9a050;
  box-shadow: 0 6px 18px rgba(145, 107, 67, .12);
}

.purpose-dropdown.open svg {
  transform: rotate(180deg);
  transition: .3s;
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 20;
  overflow: hidden;
}

.purpose-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
}

.option:hover {
  background: #f7f2ea;
  color: #916b43;
}

.option.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
}

/* TOOLBAR */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
  margin: 35px 0 40px;
}

.toolbar-search {
  flex: 1;
}

.toolbar-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  transition: .2s;
}

.toolbar-search input:focus {
  outline: none;
  background: #fff;
  border-color: #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .18);
}

.toolbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
}

@media(max-width:992px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .purpose-dropdown {
    width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }
}

.contact-page {
  background: linear-gradient(#fff, #f7f2ea);
  min-height: 80vh;
}

/* HERO */
.contact-hero {
  text-align: center;
  padding: 70px 0 30px;
}

.contact-hero h1 {
  font-size: 42px;
  color: #8b6a3e;
}

.contact-hero p {
  color: #777;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  padding-bottom: 80px;
}

/* FORM */
.contact-form-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.contact-form-card h3 {
  margin-bottom: 20px;
  color: #916b43;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #916b43;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid #e7e2da;
  transition: .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .2);
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* INFO */
.contact-info h3 {
  margin-bottom: 25px;
  color: #916b43;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 22px;
}

.spiritual-note {
  margin-top: 30px;
  padding: 20px;
  background: #f4ede3;
  border-radius: 14px;
  color: #6b5b45;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.product-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity .35s ease, transform .35s ease;
}

.product-item.hide-product {
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  position: absolute;
}

/* SECTION */
.stories-section {
  padding: 80px 0;
  background: #f9f6f1;
}

.stories-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARD */
.story-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* VIDEO AREA */
.story-video {
  height: 75%;
  overflow: hidden;
}

.story-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO AREA */
.story-info {
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: center;
}

.story-info img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
}

.story-details h5 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.story-price {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.story-price .old {
  font-size: 12px;
  text-decoration: line-through;
  color: #888;
}

.story-price .new {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

/* NAVIGATION */
.stories-nav .swiper-button-prev,
.stories-nav .swiper-button-next {
  color: #000;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .story-card {
    height: 450px;
  }
}

.product-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity .35s ease, transform .35s ease;
}

.product-item.hide-product {
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  position: absolute;
}

/* SECTION */
.stories-section {
  padding: 80px 0;
  background: #f9f6f1;
}

.stories-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARD */
.story-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* VIDEO AREA */
.story-video {
  height: 75%;
  overflow: hidden;
}

.story-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO AREA */
.story-info {
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: center;
}

.story-info img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
}

.story-details h5 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.story-price {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.story-price .old {
  font-size: 12px;
  text-decoration: line-through;
  color: #888;
}

.story-price .new {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

/* NAVIGATION */
.stories-nav .swiper-button-prev,
.stories-nav .swiper-button-next {
  color: #000;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .story-card {
    height: 450px;
  }
}

/* PURPOSE DROPDOWN */
.purpose-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6dfd5;
  cursor: pointer;
  transition: .25s;
}

.dropdown-selected:hover {
  border-color: #c9a050;
  box-shadow: 0 6px 18px rgba(145, 107, 67, .12);
}

/* icon rotate */
.purpose-dropdown.open svg {
  transform: rotate(180deg);
  transition: .3s;
}

/* OPTIONS PANEL */
.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 20;
  overflow: hidden;
}

.purpose-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* OPTION */
.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
}

.option:hover {
  background: #f7f2ea;
  color: #916b43;
}

.option.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
}

/* TOOLBAR */
.shop-toolbar {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
  margin: 35px 0 40px;
}

/* CHIPS */
.toolbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  cursor: pointer;
  font-size: 14px;
  transition: .25s ease;
}

/* hover glow */
.chip:hover {
  border-color: #c9a050;
  color: #916b43;
}

/* active chip */
.chip.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
  border-color: #916b43;
  box-shadow: 0 8px 18px rgba(145, 107, 67, .35);
}

/* SEARCH */
.toolbar-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  transition: .2s;
}

.toolbar-search input:focus {
  outline: none;
  background: #fff;
  border-color: #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .18);
}

/* RIGHT */
.toolbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
}

.toolbar-right select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e5ded4;
  background: #fff;
}

/* MOBILE */
@media(max-width:992px) {
  .shop-toolbar {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .toolbar-right {
    justify-content: space-between;
  }
}

/* CATEGORY CAROUSEL SECTION */
.category-carousel-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-header p {
  color: #6d6d6d;
  font-size: 1.1rem;
}

.category-swiper {
  padding: 20px 0 50px;
}

.category-slide {
  width: 180px;
  height: auto;
}

.category-card-small {
  background: #fff;
  border: 1px solid #e6dfd5;
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  height: 100%;
}

.category-card-small:hover {
  border-color: #c9a050;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(145, 107, 67, 0.12);
  background: #fdfaf5;
}

.cat-icon-box {
  width: 60px;
  height: 60px;
  background: #f9f4ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #916b43;
  transition: 0.3s;
}

.category-card-small:hover .cat-icon-box {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
  transform: scale(1.1);
}

.cat-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-card-small:hover .cat-label {
  color: #916b43;
}

/* CUSTOM CAROUSEL WRAPPER */
.category-carousel-wrapper {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  color: #916b43 !important;
  background: #fff;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.hero-simple {
  padding: 90px 0 70px;
  background: #fdf8f4;
}

/* heading */
.hero-heading {
  font-size: 2.8rem;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 18px;
}

/* text */
.hero-subtext {
  color: #6b6b6b;
  font-size: 1.05rem;
  max-width: 520px;
}

/* buttons */
.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  transition: .25s ease;
}

.hero-btn.primary {
  background: #916b43;
  color: #fff;
}

.hero-btn.primary:hover {
  background: #c9a050;
  color: #fff;
}

.hero-btn.secondary {
  border: 1px solid #c9a050;
  color: #916b43;
}

.hero-btn.secondary:hover {
  background: #916b43;
  color: #fff;
}

/* image */
.hero-img {
  max-width: 85%;
  border-radius: 18px;
}

/* mobile */
@media(max-width:768px) {
  .hero-heading {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtext {
    text-align: center;
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  padding: 120px 0;
  background: linear-gradient(135deg, #fdf8f4 0%, #f7efe7 40%, #fffaf5 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

/* subtle mandala glow background */
.hero-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -150px;
  top: -150px;
  background: radial-gradient(circle, rgba(201, 160, 80, 0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* TEXT */
.hero-title {
  font-size: 3.4rem;
  font-weight: 500;
  font-family: var(--primary-font);
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  font-family: var(--secondary-font);
}

/* BUTTONS */
.hero-btn-primary {
  background: var(--secondary-color);
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition-smooth);
  font-family: var(--secondary-font);
}

.hero-btn-outline {
  border-radius: 50px;
  padding: 14px 30px;
  border: 1px solid var(--accent-color);
  color: var(--secondary-color);
  background: transparent;
  transition: var(--transition-smooth);
  font-family: var(--secondary-font);
}

/* HOVER EFFECTS */
.hero-btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(145, 107, 67, 0.25);
  color: #fff;
}

.hero-btn-outline:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* IMAGE */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

/* FLOATING ZODIAC */
.floating-image {
  max-width: 85%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 35px rgba(145, 107, 67, .25));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .hero-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin: auto;
  }
}

/* SECTION */
.stories-section {
  padding: 80px 0;
  background: #fdfaf5;
  position: relative;
}

.stories-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: -1px;
}

/* SWIPER CONTAINER */
.stories-swiper {
  padding: 20px 0 60px;
  position: relative;
}

/* CARD */
.story-card {
  width: 100%;
  aspect-ratio: 9/15.5;
  /* Vertical Story Aspect Ratio */
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(145, 107, 67, 0.08);
  /* Warm border */
}

.story-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(145, 107, 67, 0.2);
  border-color: #d4af37;
}

/* VIDEO */
.story-video {
  height: 80%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.story-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: 0.5s ease;
}

.story-card:hover .story-video video {
  opacity: 1;
  transform: scale(1.08);
}

/* INFO AREA */
.story-info {
  display: flex;
  padding: 15px;
  gap: 12px;
  align-items: center;
  background: #fff;
  height: 20%;
  border-top: 1px solid #f9f6f1;
}

.story-info img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #eee;
}

.story-details {
  flex-grow: 1;
  overflow: hidden;
}

.story-details h5 {
  font-size: 13px;
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* PRICE */
.story-price {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 3px;
}

.story-price .old {
  font-size: 11px;
  text-decoration: line-through;
  color: #999;
}

.story-price .new {
  font-size: 13px;
  font-weight: 800;
  color: #916b43;
}

.story-price .off {
  font-size: 11px;
  color: #d10000;
  font-weight: 600;
  background: rgba(209, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

/* NAVIGATION BUTTONS */
.stories-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}

.stories-next,
.stories-prev {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s ease;
  border: none;
  color: #916b43;
}

.stories-next:hover,
.stories-prev:hover {
  background: #916b43;
  color: #fff;
  transform: scale(1.1);
}

.stories-next:after,
.stories-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* RESPONSIVE PAQUING MODS */
@media (max-width: 991px) {
  .stories-section {
    padding: 60px 0;
  }

  .stories-title {
    font-size: 2.2rem;
  }

  .stories-nav {
    display: none;
  }

  /* Hide arrows on mobile/tablet */
}

@media (max-width: 575px) {
  .stories-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* Container */
.category-bar-section {
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Horizontal Scroll */
.category-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 0 10px;
  scrollbar-width: none;
  /* Firefox */
}

.category-scroll::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* Category Item */
.cat-item {
  text-align: center;
  min-width: 100px;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 16px 12px;
  border-radius: 18px;
  transition: all .3s ease;
  position: relative;
  background: #fff;
  border: 1px solid rgba(145, 107, 67, 0.08);
  min-height: 130px;
}

/* Rounded Image */
.cat-thumb {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  margin-bottom: 0px;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* On Tap Highlight */
.cat-item:hover .cat-thumb,
.cat-item:focus .cat-thumb {
  transform: scale(1.1);
  border-color: #d4af37;
}

.cat-item:hover span,
.cat-item:focus span {
  color: #d4af37;
}

/* SQUARE CATEGORY CAROUSEL STYLES */
.category-square-section {
  background: #fdfaf5;
  padding: 80px 0;
}

.category-square-swiper {
  padding: 10px 10px 40px;
}

.category-square-card {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  padding: 15px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  height: 100%;
}

.category-square-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(145, 107, 67, 0.1);
  border-color: #d4af37;
}

.square-cat-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.square-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-square-card:hover .square-cat-thumb img {
  transform: scale(1.08);
}

.square-cat-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.category-square-card:hover .square-cat-label {
  color: #916b43;
}

/* HERO SECTION */
.category-hero {
  position: relative;
  padding: 140px 0 110px;
  background: #0b0913;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* Aura animated background */
.category-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 160, 80, .25), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(145, 107, 67, .25), transparent 40%);
  animation: auraMove 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auraMove {
  from {
    transform: translateY(-20px);
  }

  to {
    transform: translateY(20px);
  }
}

/* CONTENT */
.category-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.category-hero h1 {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #e8d7b7, #c9a050, #e8d7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.category-hero p {
  color: #cfc6b5;
  font-size: 18px;
  line-height: 1.6;
}

/* BREADCRUMB */
.breadcrumb-astro {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #bba67c;
}

.breadcrumb-astro a {
  color: #bba67c;
  text-decoration: none;
}

.breadcrumb-astro span {
  margin: 0 10px;
}

/* PURPOSE DROPDOWN */
.purpose-dropdown {
  position: relative;
  width: 240px;
  font-size: 14px;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6dfd5;
  cursor: pointer;
  transition: .25s;
}

.dropdown-selected:hover {
  border-color: #c9a050;
  box-shadow: 0 6px 18px rgba(145, 107, 67, .12);
}

.purpose-dropdown.open svg {
  transform: rotate(180deg);
  transition: .3s;
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 20;
  overflow: hidden;
}

.purpose-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
}

.option:hover {
  background: #f7f2ea;
  color: #916b43;
}

.option.active {
  background: linear-gradient(135deg, #c9a050, #916b43);
  color: #fff;
}

/* TOOLBAR */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
  margin: 35px 0 40px;
}

.toolbar-search {
  flex: 1;
}

.toolbar-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid #e5ded4;
  background: #faf7f2;
  transition: .2s;
}

.toolbar-search input:focus {
  outline: none;
  background: #fff;
  border-color: #c9a050;
  box-shadow: 0 0 0 3px rgba(201, 160, 80, .18);
}

.toolbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #6d6d6d;
}

@media(max-width:992px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .purpose-dropdown {
    width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }
}

.hero-banner {
  position: relative;
}

.hero-slide-link {
  display: block;
  text-decoration: none;
}

.hero-slide {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.hero-slide:hover {
  transform: scale(1.01);
}

@media (max-width: 1200px) {
  .hero-slide {
    min-height: 85vh;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 65vh;
    background-position: center;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 55vh;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    min-height: 30vh;
    background-position: center;
  }
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #d4af37;
}

.hero-slide .swiper-button-next,
.hero-slide .swiper-button-prev {
  display: none !important;
}

.numerology-section {
  background: #f9f6f1;
}

.numerology-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.numerology-card h2 {
  font-weight: 700;
  font-size: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s ease;
}

.form-group input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.num-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.num-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Image Styling */
.numerology-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 5s ease-in-out infinite;
}

/* Floating effect */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .numerology-card {
    padding: 25px;
  }
}

.consultation-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.consultation-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.consultation-image {
  width: 72%;
}

.consultation-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.consultation-content {
  position: absolute;
  right: 0;
  background: #f1efed;
  width: 420px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.consultation-tag {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.consultation-content h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  margin-bottom: 20px;
}

.consultation-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

.consult-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.consult-btn:hover {
  background: #d4af37;
  color: #000;
}

.consultationSwiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.consultationSwiper .swiper-pagination-bullet-active {
  background: #111;
}

@media (max-width: 991px) {

  .consultation-wrapper {
    flex-direction: column;
  }

  .consultation-image {
    width: 100%;
  }

  .consultation-image img {
    height: 450px;
  }

  .consultation-content {
    position: relative;
    width: 90%;
    margin-top: -60px;
    padding: 35px;
  }
}

@media (max-width: 576px) {

  .consultation-section {
    padding: 30px 0;
  }

  .consultation-image img {
    height: 300px;
  }

  .consultation-content {
    width: 92%;
    margin-top: -40px;
    padding: 25px;
  }

  .consultation-content h2 {
    font-size: 1.4rem;
  }

  .consultation-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .consult-btn {
    width: 100%;
    text-align: center;
  }
}

.purpose-card {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
}

.purpose-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
}

.purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.purpose-card h4 {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

/* Hover Effect */
.purpose-card:hover img {
  transform: scale(1.08);
}

.purpose-card:hover h4 {
  color: #d4af37;
}

/* Swiper spacing */
.purposeSwiper .swiper-slide {
  width: auto;
}



.modern-faq-section {
  background: #f5f0e6;
  overflow: hidden;
}

.modern-faq-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 760px;
}

.modern-faq-left {
  width: 42%;
  display: flex;
  align-items: center;
  padding: 90px 70px;
}

.modern-faq-content {
  width: 100%;
}

.modern-faq-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #9d8967;
  margin-bottom: 18px;
}

.modern-faq-title {
  font-size: 35px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -2px;
}

/* SUBTITLE */
.modern-faq-subtitle {
  color: #666;
  line-height: 1.9;
  font-size: 13px;
  margin-bottom: 20px;
  max-width: 500px;
}

/* ACCORDION */
.modern-faq-accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ITEM */
.modern-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  transition: 0.4s ease;
}

/* QUESTION */
.modern-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.modern-faq-question h4 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 400;
  color: #b3a58d;
  transition: 0.4s ease;
}

/* ICON */
.modern-faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3a58d;
  transition: 0.4s ease;
  flex-shrink: 0;
}

.modern-faq-icon i {
  font-size: 20px;
}

/* ANSWER */
.modern-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

.modern-faq-answer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
  max-width: 92%;
}

/* ACTIVE */
.modern-faq-item.active .modern-faq-question h4 {
  color: #111;
}

.modern-faq-item.active .modern-faq-icon {
  background: #111;
  color: #fff;
  transform: rotate(45deg);
}

.modern-faq-item.active .modern-faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
}

/* HOVER */
.modern-faq-item:hover .modern-faq-question h4 {
  color: #111;
}

.modern-faq-item:hover .modern-faq-icon {
  background: #111;
  color: #fff;
}

/* RIGHT */
.modern-faq-right {
  width: 58%;
  position: relative;
}

/* VIDEO */
.modern-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modern-faq-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OPTIONAL OVERLAY */
.modern-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .modern-faq-left {
    padding: 50px 50px;
  }

  .modern-faq-title {
    font-size: 32px;
  }

  .modern-faq-question h4 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .modern-faq-wrapper {
    flex-direction: column;
  }

  .modern-faq-left,
  .modern-faq-right {
    width: 100%;
  }

  .modern-faq-right {
    height: 450px;
  }

  .modern-faq-left {
    padding: 60px 25px;
  }

  .modern-faq-title {
    font-size: 38px;
  }

  .modern-faq-question h4 {
    font-size: 16px;
  }

  .modern-faq-answer p {
    max-width: 100%;
  }
}



/* SECTION */
.modern-gallery-section {
  padding: 40px 0;
  background:
    linear-gradient(to bottom,
      #faf7f2,
      #ffffff);
  overflow: hidden;
}

/* HEADING */
.gallery-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.gallery-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b8562;
  font-weight: 600;
  margin-bottom: 18px;
}

.gallery-title {
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -2px;
}

/* GRID */
.gallery-grid {
  align-items: stretch;
}

/* ITEM */
.modern-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f5;
  cursor: pointer;
  height: 100%;
  transition: .5s ease;
}

/* IMAGE */
.modern-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 320px;
  object-fit: cover;
  transition:
    transform .8s ease,
    filter .5s ease;
  display: block;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .7),
      rgba(0, 0, 0, .1),
      transparent);
  opacity: 0;
  transition: .5s ease;
}

/* HOVER */
.modern-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.9);
}

.modern-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 1200px) {

  .gallery-title {
    font-size: 2.3rem;
  }
}

@media(max-width: 991px) {

  .modern-gallery-section {
    padding: 30px 0;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .modern-gallery-item img {
    min-height: 250px;
    max-height: 300px;
  }
}

@media(max-width: 767px) {

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-heading {
    margin-bottom: 30px;
  }

  .modern-gallery-item {
    border-radius: 22px;
  }

  .modern-gallery-item img {
    min-height: 230px;
    max-height: 280px;
  }

  .gallery-overlay-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}