/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf8ed;
  color: #333;
}

/* Hero Banner Section */
.hero-banner {
  background: linear-gradient(180deg, #7a0000 0%, #500000 100%);
  color: #fce8ad;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 5px solid #d4af37;
}

.hero-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #ffdf7a;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.flourish {
  color: #d4af37;
  font-size: 1.2rem;
  margin: 8px 0;
}

.hero-banner p {
  font-size: 1rem;
  color: #ffffff;
  font-style: italic;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin: 20px 0 30px;
}

.section-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #7a0000;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
}

.section-header h3::before,
.section-header h3::after {
  content: "❖";
  color: #d4af37;
  font-size: 1.2rem;
  margin: 0 12px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Product Card */
.product-card {
  background: #fffef9;
  border: 2px solid #e0c896;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-img-box {
  height: 150px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe8c9;
}

.card-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.card-label {
  background: #7a0000;
  color: #ffffff;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 2px solid #d4af37;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered Row Container (Bottom 2 Items) */
.centered-row-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.centered-row-container .product-card {
  width: calc(25% - 15px);
  min-width: 200px;
}

/* Outlets Section Styling */
.outlets-section {
  background-color: #ffd659;
  border-radius: 20px;
  padding: 40px 20px;
  margin-top: 40px;
  text-align: center;
  position: relative;
  border: 3px solid #7a0000;
}

.outlets-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #7a0000;
  font-weight: 800;
  margin-bottom: 5px;
}

.outlets-subtitle {
  font-size: 0.95rem;
  color: #4a0000;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Outlets Slider Container */
.outlets-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.outlets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  width: 100%;
}

.outlet-card {
  position: relative;
  border: 3px solid #d4af37;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.outlet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outlet-label {
  position: absolute;
  bottom: 10px;
  left: 8px;
  right: 8px;
  background: #7a0000;
  color: #fff;
  border: 1px solid #d4af37;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Navigation Arrows */
.nav-arrow {
  background-color: #7a0000;
  color: #fff;
  border: 2px solid #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-banner h2 { font-size: 1.6rem; }
  .outlets-title { font-size: 1.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .centered-row-container .product-card { width: calc(50% - 10px); }
  .outlets-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-arrow { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(1, 1fr); }
  .centered-row-container .product-card { width: 100%; }
  .outlets-grid { grid-template-columns: repeat(1, 1fr); }
}











/* --- SOCIAL FOLLOW CONTAINER --- */
.social-follow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align rakhne ke liye, center chahiye to center likhein */
    /* gap: 8px; */
    font-family: 'Poppins', sans-serif; /* Ya aapka jo bhi main font ho */
}

/* "Follow Us" Text Style */
.follow-text-heading {
    /* font-size: 1.1rem;
    font-weight: 200;
    color: #333333; 
    letter-spacing: 0.5px;
    margin: 0; */
        color: #666;
    font-size: 0.75rem;

}

/* Icons ki Row */
.social-icons-wrapper {
    display: flex;
    gap: 8px; /* Icons ke beech ka gap */
    align-items: center;
}

/* Individual Icon Button Style */
.social-icon-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f5f5f5; /* Light grey background */
    color: #555555; /* Default icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --- HOVER EFFECTS (Social Media Brands Colors) --- */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
}



















.floating-action-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
    align-items: center;
}

.single-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    position: relative;
}

.single-fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp { background-color: #25D366; color: #ffffff; font-size: 1.9rem; }
.fab-astrology { background: #4a0404; padding: 3px; border: 1px solid rgba(255, 204, 0, 0.3); }

.astrology-inner-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffcc00;
    font-size: 1.4rem;
    position: relative;
    background: radial-gradient(circle, #610505 0%, #4a0404 100%);
    pointer-events: none; 
}

.inner-star-deco { position: absolute; font-size: 0.65rem; color: #ffcc00; top: 14px; }
.orbiting-golden-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffcc00;
    border-radius: 50%;
    bottom: 4px;
    right: 4px;
    box-shadow: 0 0 8px #ffcc00;
}

/* --- HOVER TOOLTIP SYSTEM --- */
.stars-floating-tooltip {
    position: absolute;
    right: 75px;
    bottom: 12px;
    background-color: #ffffff;
    color: #4a0404;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #ffeed1;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: 0.3s ease;
    pointer-events: none;
}

.fab-astrology:hover ~ .stars-floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- MODAL WIDGET BOX (FIXED: No duplicate block) --- */
.stars-chat-widget-box {
    position: fixed;
    bottom: 110px; /* Sahi spacing */
    right: 30px;
    width: 380px;
    max-height: 80vh;
    background-color: #fffdf2;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(74, 4, 4, 0.25);
    border: 1px solid rgba(255, 204, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 999999;
    
    /* Animation settings */
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Jab tak band hai tab tak click na ho */
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

/* Open state me smooth transition chalega */
.stars-chat-widget-box.panel-is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.stars-widget-header { background-color: #4a0404; padding: 22px 25px; color: #ffffff; display: flex; justify-content: space-between; align-items: center; }
.header-titles h3 { font-size: 1.25rem; margin: 0 0 4px 0; }
.header-titles p { font-size: 0.88rem; color: #ffdca3; margin: 0; font-style: italic; }
.close-stars-widget { background: none; border: none; color: #ffffff; font-size: 1.8rem; cursor: pointer; }

.stars-widget-body { padding: 25px; overflow-y: auto; flex-grow: 1; }
.widget-field-block { margin-bottom: 18px; display: flex; flex-direction: column; }
.widget-field-block label { font-size: 0.88rem; color: #4a0404; margin-bottom: 6px; font-weight: 500; }
.required-star { color: #d62828; }

.widget-field-block input, .widget-field-block textarea {
    width: 100%; padding: 11px 14px; border: 1px solid rgba(255, 204, 0, 0.6);
    border-radius: 8px; outline: none; box-sizing: border-box;
}

/* --- LOOKUP DROPDOWN --- */
.custom-lookup-dropdown { position: relative; cursor: pointer; }
.lookup-selected-view {
    padding: 11px 14px; border: 1px solid rgba(255, 204, 0, 0.8);
    background-color: #ffffff; border-radius: 8px; display: flex; justify-content: space-between; align-items: center;
}
.lookup-dropdown-menu-list {
    position: absolute; top: calc(100% + 5px); left: 0; width: 100%;
    background-color: #ffffff; border-radius: 8px; border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); z-index: 10; display: none; padding: 6px 0; list-style: none; margin: 0;
}
.lookup-dropdown-menu-list li { padding: 10px 15px; color: #4a0404; display: flex; justify-content: space-between; align-items: center; }
.lookup-dropdown-menu-list li:hover { background-color: #fffbeb; }
.lookup-dropdown-menu-list li.active-item-selected { background-color: #fff6cc; font-weight: 600; }

.widget-send-query-btn {
    background-color: #a81414; color: #ffffff; border: none; width: 100%; padding: 12px;
    font-size: 1rem; font-weight: 600; border-radius: 25px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.widget-decorative-stars { display: flex; justify-content: center; gap: 8px; color: #ffcc00; margin-top: 20px; }
.widget-field-block.has-error input, .widget-field-block.has-error textarea { border-color: #d62828; background-color: #ffe6e6; }
.field-alert-msg { display: none; color: #d62828; font-size: 0.75rem; margin-top: 4px; }
.widget-field-block.has-error .field-alert-msg { display: block; }














