html { overflow-x: hidden; }
/* --- Global Variables & Basic Reset (Same as before) --- */
:root {
    /* ... (keep existing color variables) ... */
    --primary-purple: #2b0b2e;
    --accent-pink: #e6007e;
    --accent-pink-darker: #c4006b;
    --text-white: #ffffff;
    --text-light-lavender: #f5eeff;
    --text-dark-purple: #1e0820;
    --header-bg: rgba(30, 5, 32, 0.85);
    --card-bg-dark: rgba(45, 15, 48, 0.7);
    --border-color-light: rgba(230, 0, 126, 0.3);
	--font-size-13: 13px;
    /* UPDATED FONT VARIABLES */
    --font-display: 'Marcellus', serif;          /* For large headings */
    --font-sans-serif: 'Open Sans', sans-serif; /* For navigation, buttons, body */
    --font-body-text: 'Open Sans', sans-serif;   /* For general paragraph text */

    --section-padding-value: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body-text);
    background-color: var(--primary-purple);
    color: var(--text-light-lavender);
    line-height: 1.7;
}
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease, opacity 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display); /* All headings use Marcellus */
    color: var(--text-white);
    font-weight: 400; /* Marcellus typically only has a regular weight (400) */
    line-height: 1.3; /* Adjust as Marcellus might need different line height */
}

h2 { font-size: 2.8rem; margin-bottom: 15px; } /* Example, check against screenshot */
h3 { font-size: 1.5rem; margin-bottom: 10px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

.section-padding { padding: var(--section-padding-value) 0; }

.text-center { text-align: center; }
.pre-heading {
    color: var(--accent-pink);
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.pre-heading.pink-text { color: var(--accent-pink); } /* Explicit for dark bgs */
.pre-heading.dark-text { color: var(--text-dark-purple); }

.section-description {
    font-size: 1rem;
    color: var(--text-light-lavender);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}
.section-description.light-text { color: var(--text-light-lavender); }
.section-description.dark-text { color: var(--text-dark-purple); }


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn i { margin-right: 8px; }

.btn-primary {
    background-color: var(--accent-pink);
    color: var(--text-white);
}
.btn-primary:hover {
    background-color: var(--accent-pink-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
}

.btn-secondary { /* Pink border, transparent bg */
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}
.btn-secondary:hover {
    background-color: var(--accent-pink);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-tertiary { /* Darker purple/solid border, white text for dark cards */
    border-color: var(--accent-pink); /* Or a darker shade */
    background-color: transparent;
    color: var(--text-white);
    padding: 10px 25px;
    font-size: 0.85rem;
}
.btn-tertiary:hover {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    color: var(--text-white);
}
.btn.full-width { display: block; width: 100%; text-align: center; margin-top: auto; }


/* --- Header Styling (Adjust from previous, ensure logo-icon-img is styled) --- */
#site-header { background-color: var(--header-bg); padding: 15px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; color: var(--text-white); }
.logo-icon-img { height: 40px; width: auto; margin-right: 10px; } /* Adjust as needed */
.logo-text { font-size: 1.6rem; font-weight: 700; font-family: var(--font-sans-serif); color: var(--text-white); }
.main-navigation ul { display: flex; }
.main-navigation ul li { margin-left: 28px; position: relative; }
.main-navigation ul li a { color: var(--accent-pink); font-weight: 500; font-size: 0.95rem; padding: 5px 0; position: relative; }
.main-navigation ul li a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background-color: var(--text-white); transition: width 0.3s ease; }
.main-navigation ul li a:hover::after, .main-navigation ul li a.active::after { width: 100%; }
.main-navigation ul li a:hover, .main-navigation ul li a.active { color: var(--text-white); }
.main-navigation .dropdown-arrow { font-size: 0.7em; margin-left: 5px; }
.main-navigation .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--primary-purple); border: 1px solid var(--border-color-light); padding: 10px 0; min-width: 180px; z-index: 1001; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.main-navigation li:hover > .dropdown-menu { display: block; }
.main-navigation .dropdown-menu li { margin-left: 0; }
.main-navigation .dropdown-menu li a { display: block; padding: 8px 15px; color: var(--text-light-lavender); font-size: 0.9rem; }
.main-navigation .dropdown-menu li a:hover { background-color: var(--accent-pink); color: var(--text-white); }
.main-navigation .dropdown-menu li a::after { display:none; } /* No underline for dropdown items */
.header-actions { display: flex; align-items: center; }
.header-actions .search-icon { color: var(--text-white); font-size: 1.2rem; padding: 10px; transition: color 0.3s ease; margin-left: 15px; }
.header-actions .search-icon:hover { color: var(--accent-pink); }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; margin-left: 15px; }
.mobile-nav-panel { /* Styles for mobile nav panel itself */ display: none; /* ... */ }


/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 150vh;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(43, 9, 41, 0.6), rgba(43, 9, 41, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  color: var(--text-white);
}

.hero-slider-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* Existing hero text styles */
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 35px;
}

.hero-content h1 .highlight-text {
  display: block;
  font-weight: 900;
  font-size: 4rem;
}

.btn.hero-button {
  padding: 18px 45px;
  font-size: 1.1rem;
}


/* --- Discover Section --- */
.discover-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.discover-image-column .image-slider-placeholder img { border-radius: 10px; border: 4px solid var(--border-color-light); }
.slider-dots { text-align: center; margin-top: 20px; }
.slider-dots .dot { display: inline-block; width: 12px; height: 12px; background-color: rgba(230, 0, 126, 0.3); border-radius: 50%; margin: 0 5px; cursor: pointer; }
.slider-dots .dot.active { background-color: var(--accent-pink); }
.discover-content-column h2 { font-size: 2.8rem; }
.discover-content-column .description-text { font-size: 1rem; margin-bottom: 30px; }
.contact-experts-box { background-color: var(--accent-pink); color: var(--text-white); padding: 25px 30px; border-radius: 8px; margin-top: 40px; display: flex; align-items: center; align-items: end;}
.contact-experts-box .icon-area { font-size: 2.5rem; margin-right: 25px; margin-bottom:6px;}
.contact-experts-box .text-area p { font-size: 0.9rem; font-weight: 500; margin-bottom: 3px; text-transform: uppercase; }
.contact-experts-box .text-area span { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; }


/* --- Zodiac Section --- */
#zodiac-signs .section-description { margin-bottom: 60px; max-width:fit-content;}
.zodiac-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.zodiac-item { text-align: center;
    display: flex;
    flex-direction: column; }
.zodiac-item .btn {
	padding:3px 20px;
	margin-top:auto;
}
.zodiac-item img { margin: 0 auto 15px auto; /* Adjust */ opacity: 0.8; transition: opacity 0.3s; }
.zodiac-item:hover img { opacity: 1; }
.zodiac-item h3 { font-family: var(--font-sans-serif); font-size: 1.2rem; color: var(--text-white); font-weight: 500; }
.zodiac-item p { font-size: 0.85rem; color: var(--text-light-lavender); opacity: 0.7; margin-bottom:15px;}


/* --- Services Section --- */
.dark-bg-texture { background-color: var(--text-dark-purple); /* Or a textured bg image */ }
#our-services h2 { color: var(--text-white); }
#our-services .section-description { color: var(--text-light-lavender); opacity: 0.9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { background-color: var(--card-bg-dark); padding: 35px 30px; border-radius: 10px; text-align: center; border: 1px solid var(--border-color-light); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(230, 0, 126, 0.1); }
.service-card img { margin: 0 auto 20px auto; height: 50px; /* Adjust icon size */ filter: brightness(0) invert(1) sepia(100%) saturate(10000%) hue-rotate(290deg) brightness(1.2); /* Attempt to color white icon pink */ }
.service-card h3 { color: var(--text-white); font-family: var(--font-sans-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 15px;}
.service-card p { color: var(--text-light-lavender); opacity: 0.8; font-size: 0.9rem; }


/* --- Team Section --- */
.team-grid { display: grid; grid-template-columns: 100%; gap: 30px; align-items: center; }
.team-intro-content h2 { font-size: 2.5rem; }
.team-intro-content p { margin-bottom: 25px; }
.team-member { position: relative; text-align: center; }
.team-member img { border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.team-member .member-name { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background-color: rgba(43, 9, 46, 0.8); color: var(--text-white); padding: 8px 20px; border-radius: 5px; font-family: var(--font-sans-serif); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

/* --- Products Section --- */
#products h2 { color: var(--text-white);}
#products .section-description { color: var(--text-light-lavender); max-width: 100%; }
.product-showcase { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: flex-start; margin-top: 50px; }
.product-main-image img { border-radius: 10px; border: 3px solid var(--border-color-light); }
.product-thumbnails { display: grid; gap: 20px; }
.product-thumb-card { background-color: var(--card-bg-dark); padding: 20px; text-align: center; border-radius: 8px; border: 1px solid var(--border-color-light); }
.product-thumb-card img { margin: 0 auto 15px auto; height: 100px; /* Adjust */ border-radius: 5px; }
.product-thumb-card h3 { color: var(--text-white); font-size: 1.2rem; font-family: var(--font-sans-serif); }
.product-thumb-card .price { font-size: 1.3rem; color: var(--accent-pink); font-weight: 700; margin: 5px 0 15px 0; }


/* --- Books Section --- */
.books-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px;}
.books-image-column img { border-radius: 10px; }
.books-content-column h2 { font-size: 2.5rem; }
.books-content-column .description-text { margin-bottom: 25px; }
.books-content-column ul li{ font-size:1.2rem; font-weight:bold;}
.book-cards-grid { display: flex; gap: 20px; margin-top: 30px; }
.book-card { background-color: var(--card-bg-dark); padding: 15px; text-align: left; border-radius: 8px; border: 1px solid var(--border-color-light); width: 33%; display:flex; flex-direction: column;}
.book-card .btn{
	padding: 3px 20px;
	margin-top:10px;
}
.book-card img { margin: 0 auto 10px auto; height: 180px; /* Adjust */ object-fit: cover; border-radius: 5px; }
.book-card h4 { color: var(--text-white); font-size: 1rem; font-family: var(--font-sans-serif); font-weight:bold; }
.book-card p { font-size: 0.85rem; color: var(--text-light-lavender); opacity: 0.8; }
.book-card .price { font-size: 1.1rem; color: var(--accent-pink); font-weight: 700; display: block;
margin-top: auto; }
.book-card .pricer { font-size: 0.8rem; color: var(--accent-pink); font-weight: 600; display: block;
margin-top: auto; }
.day-book{ margin-top:10px;}
.day-book p{font-size: 1.9rem;}
.day-book ul li span{font-size: 0.9rem; padding-left: 10px;font-family: var(--font-body-text);}
/* --- Opening Hours / CTA Section --- */
.pink-bg { background-color: var(--accent-pink); }
#opening-hours-cta h2, #opening-hours-cta h3, #opening-hours-cta h4 { color: var(--text-dark-purple); }
.opening-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.cta-image-collage { position: relative; } /* Basic collage */
.cta-image-collage img { border-radius: 8px; object-fit: cover; aspect-ratio: 1/1; } /* Simple square images */
.cta-text-overlay { position: absolute; bottom: 20px; left: 20px; right: 20px; background-color: #ffffff; padding: 20px; border-radius: 8px;opacity: 0.8; }
.cta-text-overlay h3 { color: var(--text-white); font-size: 1.5rem; line-height: 1.3; }
.opening-hours-content h2 { font-size: 2.5rem; }
.hours-info { margin-top: 30px; }
.day-group { display: flex; align-items: center; margin-bottom: 20px; }
.day-group i { font-size: 1.8rem; color: var(--text-dark-purple); margin-right: 15px; }
.day-group h4 { font-size: 1.1rem; font-family: var(--font-sans-serif); margin-bottom: 3px; }
.day-group p { font-size: 0.95rem; color: var(--text-dark-purple); opacity: 0.9; }
.opening-hours-content ul li{ display: flex; align-items: baseline; gap: 10px;}


/* --- Contact Form Section --- */
.contact-form { max-width: 800px; margin: 0 auto; background-color: var(--card-bg-dark); padding: 40px; border-radius: 10px; border: 1px solid var(--border-color-light); }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group.full-width { flex-basis: 100%; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-light-lavender); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border-radius: 5px; border: 1px solid var(--border-color-light);
    background-color: var(--primary-purple); color: var(--text-white); font-family: var(--font-body-text); font-size: 0.95rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group textarea { resize: vertical; }
.contact-form button[type="submit"] { margin-top: 10px; }


/* --- Pricing Section --- */
.dark-bg-texture-alt { background-color: #250828; } /* Slightly different dark bg */
#pricing h2 { color: var(--text-white); }
#pricing .section-description { color: var(--text-light-lavender); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; align-items: stretch; /* Align bottom of cards */ }
.pricing-card { background-color: var(--card-bg-dark); padding: 30px; border-radius: 10px; border: 1px solid var(--border-color-light); text-align: center; display: flex
; flex-direction: column;}
.pricing-card.featured { border: 3px solid var(--accent-pink); transform: scale(1.05); position: relative; z-index: 1; }
.pricing-card.common { transform: scale(1.05); position: relative; z-index: 1; }
.pricing-card .card-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: var(--accent-pink); color: var(--text-white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.pricing-card .price-main { font-size: 3.5rem; font-weight: 700; color: var(--text-white); margin: 10px 0 0px 0; }
.pricing-card .price-main-last { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin: 10px 0 0px 0; }
.pricing-card .price-main sup { font-size: 1.5rem; top: -1.5em; }
.pricing-card .price-period { font-size: 0.9rem; color: var(--text-light-lavender); opacity: 0.8; margin-bottom: 25px; }
.pricing-card .price-desc { font-size: 1rem; color: var(--text-light-lavender); opacity: 0.8; margin-bottom: 25px; text-align:left; }
.pricing-card .features-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.pricing-card .features-list li { margin-bottom: 10px; color: var(--text-light-lavender); font-size: 0.95rem; }
.pricing-card .features-list li i { color: var(--accent-pink); margin-right: 10px; }
.pricing-card .features-list li.disabled { opacity: 0.5; }
.pricing-card .features-list li.disabled i { color: gray; }
.pricing-placeholder-content { padding: 20px 0; /* For non-featured cards */ } /* You'll need to style this specifically */
.pricing-placeholder-content .price-old { text-decoration: line-through; opacity: 0.6; font-size: 1.2rem; }


/* --- Testimonials Section --- */
#testimonials h2 { color: var(--text-white); }
.testimonial-slider-placeholder { max-width: 700px; margin: 30px auto 0 auto; } /* JS will handle slider */
.testimonial-item { text-align: center; }
.testimonial-item .client-image { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 20px auto; border: 3px solid var(--accent-pink); }
.testimonial-item .quote { font-size: 1.1rem; font-style: italic; color: var(--text-light-lavender); margin-bottom: 20px; line-height: 1.8; }
.testimonial-item .client-name { font-family: var(--font-sans-serif); font-size: 1.2rem; color: var(--text-white); font-weight: 700; }
#testimonials .slider-dots { margin-top: 30px; }

.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 20px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide p{
	padding:0 150px;
	text-align:left;
}
.slide div{
	margin-top: 10px;
    width: 100%;
    padding: 0 150px;
    text-align: left;
}
.slide.active {
  opacity: 1;
}

.client-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #333;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  font-size: 3.5rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination span {
   display: inline-block; 
   width: 12px; 
   height: 12px; 
   background-color: rgba(230, 0, 126, 0.3); 
   border-radius: 50%; 
   margin: 0 5px; 
   cursor: pointer; 
}

.pagination span.active {
  background-color: var(--accent-pink);
}

/* Responsive Design */
@media (max-width: 600px) {
  .slider {
    padding: 30px 10px;
  }

  .client-photo {
    width: 60px;
    height: 60px;
  }

  .arrow {
    font-size: 1.2rem;
    padding: 8px;
  }
}






/* --- Blog Section --- */
.blog-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.blog-header-text h2 { margin-bottom: 5px; }
.blog-header-text p { color: var(--text-light-lavender); opacity: 0.9; max-width: 500px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background-color: var(--card-bg-dark); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-color-light); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-content h3 { font-size: 1.3rem; color: var(--text-white); margin-bottom: 10px; }
.blog-content p { font-size: 0.9rem; color: var(--text-light-lavender); opacity: 0.8; margin-bottom: 15px; }
.read-more-link { color: var(--accent-pink); font-weight: 700; font-size: 0.9rem; }
.read-more-link:hover { color: var(--text-white); }


/* --- Footer --- */
#site-footer-main { background-color: var(--text-dark-purple); padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-column h4 { font-family: var(--font-sans-serif); font-size: 1.1rem; color: var(--text-white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--accent-pink); }
.footer-column p, .footer-column li a { font-size: 0.9rem; color: var(--text-light-lavender); opacity: 0.8; margin-bottom: 10px; }
.footer-column p i, .footer-column li i { color: var(--accent-pink); margin-right: 10px; }
.footer-column li { margin-bottom: 8px; }
.footer-column li a:hover { color: var(--text-white); opacity: 1; }
.footer-logo { margin-top: 20px; display: flex; align-items: center; }
.recent-post-item { display: flex; align-items: center; margin-bottom: 5px; }
.recent-post-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 5px; margin-right: 15px; }
.recent-post-item a { font-weight: 500; color: var(--text-white); line-height: 1.4; }
.newsletter-form { display: flex; margin-bottom: 10px; }
.newsletter-form input { flex-grow: 1; padding: 12px; border: 1px solid var(--border-color-light); background: var(--primary-purple); color: var(--text-white); border-radius: 5px 0 0 5px; }
.newsletter-form button { border-radius: 0 5px 5px 0; padding: 12px 20px; }
.newsletter-promise { font-size: 0.8rem; opacity: 0.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-light-lavender); opacity: 0.7; }
.footer-social-links span { margin-right: 10px; }
.footer-social-links a { margin-left: 10px; font-size: 1.1rem; color: var(--text-light-lavender); opacity: 0.7; }
.footer-social-links a:hover { color: var(--accent-pink); opacity: 1; }

/* --- Back to Top Button --- */
.back-to-top { position: fixed; right: 20px; bottom: 20px; background-color: var(--accent-pink); color: var(--text-white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; z-index: 990; opacity: 0; visibility: hidden; transition: all 0.4s; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--accent-pink-darker); }


/* --- Basic Responsive (Needs extensive work) --- */
@media (max-width: 992px) {
	.zodiac-item {
    margin-bottom: 10px;
}
    h2 { font-size: 2.2rem; }
    .section-padding-value { --section-padding-value: 60px; }
    .main-navigation { display: none; } /* Show mobile-menu-toggle */
    .mobile-menu-toggle { display: block; }
    #hero {
    min-height: 80vh;
    padding-top: 60px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h1 .highlight-text {
    font-size: 2.5rem;
  }
    .discover-grid { grid-template-columns: 1fr; }
    .product-showcase { grid-template-columns: 1fr; }
    .product-main-image { margin-bottom: 30px; }
    .books-grid { grid-template-columns: 1fr; }
    .books-image-column { margin-bottom: 30px; }
    .opening-cta-grid { grid-template-columns: 1fr; }
    .cta-image-collage { margin-bottom: 30px; }
    .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .pricing-card.featured { transform: scale(1); } /* Reset scale for smaller */
    .blog-header-flex { flex-direction: column; align-items: flex-start; }
    .blog-header-flex .btn { margin-top: 15px; }
    .footer-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

@media (max-width: 768px) {
    .container { width: 95%; }
	.header-container{max-width: 100% !important; width:100% !important; justify-content: center;}
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content h1 .highlight-text { font-size: 3rem; }
    .form-row { flex-direction: column; gap: 0; }
    .form-row .form-group { margin-bottom: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .zodiac-grid { display:block; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .book-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content h1 .highlight-text { font-size: 2.5rem; }
    .btn { padding: 10px 20px; font-size: 0.85rem; }
    .btn.hero-button { padding: 15px 30px; font-size: 1rem; }
    .contact-experts-box { text-align: center; gap:10px;}
    .contact-experts-box .icon-area { margin-right: 0; margin-bottom: 10px; }
    .pricing-grid { grid-template-columns: 1fr; }
}

.scroller-wrapper {
      position: relative;
      padding-top: 60px;
    }

    .arrow-container {
      position: absolute;
      top: 0;
      right: 0px;
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .arrow-btn {
      font-size: 20px;
      cursor: pointer;
      background-color: var(--accent-pink);
      color: white;
      border: none;
      border-radius: 4px;
      padding: 10px 15px;
      transition: background 0.3s ease;
    }

    .arrow-btn:hover {
      background: #c4006b;
    }

    .scroll-content {
      display: flex;
      overflow-x: hidden;
      gap: 16px;
      padding: 10px 0;
      scroll-behavior: smooth;
    }

    .block {
	background-color: var(--card-bg-dark);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid var(--border-color-light);
    }
	
	.block img{
		margin-bottom:10px;
	}
    .block h3 {
      margin-top: 0;
	  color: #e6007e;
    }

    .description {
      color: #fff;
      cursor: pointer;
      margin: 10px 0;
      display: block;
    }

    .example {
      border-radius: 5px;
	  margin-bottom:15px;
    }

	    .auto-slider {
      max-width: 100%;
      margin: auto;
      overflow: hidden;
      position: relative;
      border-radius: 10px;
    }

    .auto-slider-track {
      display: flex;
      width: 100%; /* 3 slides */
      transition: transform 0.5s ease-in-out;
    }

    .auto-slide {
      width: 100%;
      flex-shrink: 0;
    }

    .auto-slide img {
      width: 100%;
      height: auto;
      display: block;
    }

    .auto-slider-dots {
      text-align: center;
      margin: 10px 0;
    }

    .auto-dot {
      height: 12px;
      width: 12px;
      margin: 0 5px;
      background-color: rgba(230, 0, 126, 0.3);
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .auto-dot.active {
      background-color: var(--accent-pink);
    }

    @media (max-width: 600px) {
      .auto-dot {
        height: 8px;
        width: 8px;
      }
    }
	/* Responsive Rituals Scroll */
.slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.block {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
  background: #2b0b2e;
  color: white;
  margin-right: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.block .btn{
	margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
  .block {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .block {
    flex: 0 0 33.3333%;
  }
}


/* === Responsive Enhancements === */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .book-card {
    width: 100% !important;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h1 .highlight-text {
    font-size: 2.5rem;
  }

  .mobile-nav-panel {
    display: none;
    background: var(--primary-purple);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }

  .mobile-nav-panel.open {
    display: block;
  }

  .mobile-nav-panel ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .opening-cta-grid {
    grid-template-columns: 1fr;
  }

  .book-cards-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #sliderTrackritual {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: visible;
    scroll-snap-type: x mandatory;
  }

  #sliderTrackritual .block {
    max-width: 100%;
        scroll-snap-align: center;
        margin-right: 20px;
        width: 100%;
        flex: 0 0 100%;
  }

  .scroller-wrapper .arrow-container {
    display: block;
	left:0;
	right:auto;
  }
  .scroller-wrapper{
	      overflow: hidden;
  }
  .slide p{
	padding:0 10px;
	text-align:left;
}
.slide div {
    padding: 0 10px;
}
.pagination {
    margin-top: 0px;
}
}
@media (max-width: 576px) {
  .celebrity-gallery-grid img {
    object-fit: cover;
    object-position: top;
    height: 250px;
  }
}
@media (max-width: 768px) {

  .mobile-nav-panel {
    display: none;
    background: var(--primary-purple);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }

  .mobile-nav-panel ul {
    flex-direction: column;
    gap: 10px;
  }

  .opening-cta-grid {
    grid-template-columns: 1fr;
  }
.mobile-nav-panel.open {
  display: block;
}
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
  width: 75%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  color: #333;
  font-family: var(--font-body-text);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  margin: auto;
  animation: slideUp 0.4s ease;
  text-align: left;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-content h1,
.popup-content h2,
.popup-content h3,
.popup-content h4 {
  color: var(--accent-pink);
  margin-bottom: 12px;
  font-weight: bold;
  font-family: var(--font-display);
}

.popup-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #222;
}

.popup-content ul {
  margin: 0 0 15px 20px;
  padding-left: 0;
  list-style: disc;
  color: #222;
}

.popup-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.popup-content img {
  max-width: 100%;
  margin: 15px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.popup-content .ast_blog_inner,
.popup-content .ast_blog_inner_bot {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-content .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.popup-content .close-btn:hover {
  color: var(--accent-pink);
}

/* --- Responsive for Small Devices --- */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 20px;
  }

  .popup-content h1,
  .popup-content h2 {
    font-size: 1.4rem;
  }

  .popup-content p,
  .popup-content ul li {
    font-size: 0.95rem;
  }

  .popup-content .close-btn {
    font-size: 1.5rem;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 15px;
    width: 100%;
    border-radius: 8px;
  }

  .popup-content h1,
  .popup-content h2 {
    font-size: 1.2rem;
  }

  .popup-content p,
  .popup-content ul li {
    font-size: 0.9rem;
  }

  .popup-content .close-btn {
    font-size: 1.3rem;
    top: 8px;
    right: 12px;
  }
}

.celebrity-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.celebrity-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.celebrity-gallery-grid img:hover {
  transform: scale(1.05);
}

.celebrity-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.celebrity-popup-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .celebrity-gallery-grid img {
    height: 200px;
  }
}


.refund-policy-popup {
      background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    width: 75%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #333;
    font-family: var(--font-body-text);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: auto;
    animation: slideUp 0.4s ease;
    text-align: left;
}

.refund-title {
  font-size: 30px;
  text-align: center;
  color: #c13e90;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.refund-section {
  margin-bottom: 25px;
}

.refund-section h3 {
  color: #a02b75;
  margin-bottom: 10px;
  font-size: 20px;
}

.refund-section ul {
  list-style: disc;
  margin-left: 20px;
}

.refund-section ul ul {
  list-style: circle;
  margin-left: 20px;
}

.refund-section a {
  color: #c13e90;
  text-decoration: underline;
}

.privacy-popup {
      background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    width: 75%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #333;
    font-family: var(--font-body-text);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: auto;
    animation: slideUp 0.4s ease;
    text-align: left;
}

.privacy-title {
  font-size: 30px;
  text-align: center;
  color: #c13e90;
  margin-bottom: 20px;
  font-weight: 700;
}

.privacy-section {
  margin-bottom: 25px;
}

.privacy-section h3 {
  color: #a02b75;
  margin-bottom: 10px;
  font-size: 20px;
}

.privacy-section ul {
  list-style: disc;
  margin-left: 20px;
}

.privacy-section a {
  color: #c13e90 !important;
  text-decoration: underline;
}

.intro-text {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}


.policy-container {
      max-width: 100%;
    margin: 0px auto;
    padding: 30px 60px;
    /* background: #fff; */
    /* border-radius: 12px; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.policy-title {
  font-size: 32px;
  color: #c13e90;
  margin-bottom: 25px;
  text-align: left;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  font-size: 20px;
  color: #a02b75;
  margin-bottom: 10px;
}

.policy-section ul {
  padding-left: 20px;
  list-style: disc;
}
.policy-section ul li{
	color:#ffffff;
}
.policy-section p{
	color:#ffffff;
}
.policy-section ul ul {
  list-style: circle;
  margin-top: 5px;
}
.enhanced-contact-box{
	display: flex; 
	align-items: center; 
	gap: 30px; 
	background: var(--accent-pink); 
	border-radius: 10px; 
	padding: 30px; 
	margin: 40px auto; 
	max-width: 800px; 
	box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
	text-align: left;
}
.text-area-contact{
	font-family: 'Open Sans', sans-serif;
}
.text-area-contact h3{
	margin-bottom: 10px; 
	font-size: 22px; 
	color: #ffffff;
	font-weight:bold;
}
.text-area-contact p{
	margin: 5px 0; 
	font-size: 18px;
	display:flex;
	gap: 10px;
	align-items: center;
}
.text-area-contact p img{
	width: 20px;
    height: fit-content;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 26px;
  }
.sidebar{
	display:none;
}
  .policy-section h2 {
    font-size: 18px;
  }

  .policy-section p,
  .policy-section ul {
    font-size: 15px;
  }
  .policy-container {
    padding: 20px;
}
.enhanced-contact-box {
    max-width: 95%;
}
}


    html {
      scroll-behavior: smooth;
    }
    .hero {
     background-image: url(../images/top_banner4.jpg);
      color: #fff;
      padding: 200px 20px;
      text-align: center;
      border-radius: 0;
      margin-bottom: 40px;
    }
    .sidebar {
      background: #f9f5ff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      position: sticky;
      top: 100px;
	  height: 100vh;
    }
    .sidebar h4 {
      font-weight: bold;
      margin-bottom: 20px;
      color: #4a148c;
    }
    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
	  height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
	scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none; 
    }
	.sidebar ul::-webkit-scrollbar {
  width: 0; /* Chrome, Safari, Opera */
}

/* Show scrollbar only on hover */
.sidebar ul:hover {
  scrollbar-width: thin;         /* Firefox */
}
.sidebar ul:hover::-webkit-scrollbar {
  width: 8px;                    /* Chrome, Safari, Opera */
}
.sidebar ul:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4); /* scrollbar thumb */
  border-radius: 4px;
}
.sidebar ul:hover::-webkit-scrollbar-track {
  background: transparent;
}
    .sidebar ul li {
      margin-bottom: 5px;
	  width:100%;
    }
    .sidebar ul li a {
      text-decoration: none;
      color: #6a1b9a;
      font-weight: 500;
      display: block;
      padding: 6px 5px;
      border-radius: 6px;
      transition: all 0.3s ease;
	  font-size: var(--font-size-13);
    }
	.sidebar .flex-column{
		flex-direction: row !important;
		width: 100%;
	}
    .sidebar ul li a.active, 
    .sidebar ul li a:hover {
      background: #e1bee7;
      color: #4a148c;
    }
    sections {
      margin-bottom: 25px;
      padding: 30px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
	  display:block;
    }
    sections h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #4a148c;
      margin-bottom: 20px;
    }
    sections p {
      font-size: 1rem;
      line-height: 1.7;
      color: #444;
    }
	.footer-column.quick-links ul{
		margin-left:0px;
		padding-left:0px;
	}