/* =========================
   Priya Prints — Modern Header styles
   Theme: Deep Sapphire & Vibrant Orange (Modern & Professional)
   ========================= */

:root {
  --container-max: 1280px;
  /* New Color Palette */
  --primary-dark: #1a237e; /* Deep Indigo/Sapphire */
  --accent: #ff8a65; /* Vibrant Coral/Orange */
  --text-dark: #212121;
  --text-muted: #616161;
  --bg: #f4f6f9; /* Off-white body background */
  --header-bg: #ffffff;
  --nav-bg: #ffffff;
  --brand-bg: #e8eaf6; /* Lightest Indigo */
  --glass: rgba(255, 255, 255, 0.9);
  --shadow-primary: 0 4px 18px rgba(26, 35, 126, 0.08); /* Soft shadow from primary color */

  /* Modern Typography */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Basic resets and base styles */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}
.accent-text {
  color: var(--accent);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px; /* Slightly more padding for modern feel */
}

.block {
  width: 100%;
}

/* Focus state for accessibility */


input:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------- Top announcement (Focus Banner) -------- */
.top-announce {
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.top-announce .container {
  padding: 8px 24px;
}
.announce-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announce-text i {
  color: var(--accent);
}

/* -------- Header Top (brand + contact) -------- */
.header-main .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--header-bg);
  padding: 16px 24px;
}

/* Brand area with image + meta beneath image */
.brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.brand img {
  display: block;
  max-width: 100%;
  height: auto;
}
.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-muted);
  margin: auto;
}
.brand-meta div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-meta .address {
  font-weight: 500;
}
.brand-meta i {
  color: var(--primary-dark);
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.contact a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.contact a:hover {
  color: var(--accent);
}

/* -------- Navbar -------- */
.navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-primary);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 0px 24px;
}

.nav-head{
  width: 100%;
  text-align: left !important;
}

/* Hamburger - mobile only */
.hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hamburger:hover {
  opacity: 0.8;
}
.hamburger .hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary-dark);
  margin: 4px 0;
  border-radius: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--accent);
}
.nav-links .has-sub {
  position: relative;
}

/* --- MEGA MENU STYLES (Replacement for Sub-Menu) --- */
.mega-menu-content {
  position:absolute;
  left: -20px; /* Offset slightly to the left to center better */
  top:calc(100% + 0px);
  background:#fff;
  border:1px solid var(--brand-bg);
  min-width: 600px; /* Wide for desktop */
  height: 380px; /* Fixed height for consistent look */
  box-shadow:0 8px 24px rgba(0,0,0,0.1);
  border-radius:8px;
  display:none;
  z-index:20;
  list-style:none;
  padding: 0;
  overflow: hidden;
}

/* Fix for hovering over the mega menu gap */
.mega-menu-content::before {
    content: '';
    position: absolute;
    
    /* Move the bridge up to cover the gap */
    top: -10px; 
    left: 0;
    
    /* Make the bridge the full width of the menu */
    width: 100%;
    
    /* Height must match the gap size in your calc() */
    height: 10px; 
    
    /* Transparent so it can't be seen, but the mouse detects it */
    background: transparent; 
    display: block;
}

.mega-menu-item:hover .mega-menu-content {
  display:block;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Primary menu wider than secondary */
    height: 100%;
}

.mega-menu-primary {
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-right: 1px solid var(--brand-bg);
    
overflow-y: auto;
  scrollbar-width: none;

  -ms-overflow-style: none; 
}
.mega-menu-primary::-webkit-scrollbar{
      display: none; 
}
.mega-menu-primary li {
    position: relative;
    cursor: pointer;
}
.mega-menu-primary a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.15s;
    gap: 10px;
}
.mega-menu-primary a i:first-child {
    color: var(--accent); /* Icon for the main category */
}
.mega-menu-primary a .arrow-right {
    color: var(--text-muted); /* Right arrow icon */
    font-size: 12px;
}
.mega-menu-primary li:hover, .mega-menu-primary li.active {
    background: var(--brand-bg);
}

/* Secondary Column Styling */
.mega-menu-secondary {
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mega-menu-secondary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute; /* Stack content areas */
    top: 20px;
    left: 24px;
    right: 24px;
    bottom: 50px; /* Reserve space for View All link */
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    overflow-y: auto; /* Scroll secondary content if needed */
}
.mega-menu-secondary ul.active {
    opacity: 1;
    pointer-events: all;
    position: static;
}

.submenu-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--brand-bg);
}
.mega-menu-secondary li a {
    display: block;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
}
.mega-menu-secondary li a:hover {
    color: var(--accent);
}

.view-all-secondary {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s;
}
.view-all-secondary:hover {
    color: var(--accent);
}
/* END: MEGA MENU STYLES */

/* nav-center-logo (for sticky collapsed state) */
.nav-center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.nav-center-logo img {
  height: 34px;
}

/* Search area */
.nav-search {
  display: flex;
  align-items: center;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input {
  width: 320px;
  padding: 10px 16px;
  border-radius: 20px; /* Pill-shaped input for modern look */
  border: 1px solid var(--brand-bg);
  outline: none;
  font-size: 15px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.search-input:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.search-icon {
  background: none;
  border: 0;
  margin-left: 12px;
  cursor: pointer;
  font-size: 22px;
  color: var(--primary-dark);
  transition: color 0.15s;
}
.search-icon:hover {
  color: var(--accent);
}

/* The animated scroller inside the input container */
.search-scroll {
  position: absolute;
  left: 16px;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: hidden;
  height: 20px;
  opacity: 1;
  transition: opacity 0.2s;
}
.scroll-list {
  display: flex;
  flex-direction: column;
  animation: scrollUp 9s linear infinite;
}
.scroll-list div {
  line-height: 20px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.95;
}

/* pause animation when input focused or has text */
.search-input:focus + .search-scroll,
.search-input:not(:placeholder-shown) + .search-scroll {
  opacity: 0;
}

/* animation (keeping original keyframes) */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  45% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-40px);
  }
  70% {
    transform: translateY(-40px);
  }
  75% {
    transform: translateY(-60px);
  }
  95% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}

/* -------- Mobile Drawer (Sleek) -------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 86%;
  height: 100vh;
  background: var(--nav-bg);
  transform: translateX(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
  z-index: 2000;
  padding: 20px 0;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 10px 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--brand-bg);
}
.drawer-header img {
  width: 160px;
  height: auto;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-nav li > a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}



/* Arrow-left close outside */
.drawer-close-arrow {
  position: fixed;
  /* Updated position for mobile display */
  left: 290px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  cursor: pointer;
  z-index: 2050;

  /* --- Set default display to none --- */
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Mobile search panel (top) */
.mobile-search-panel {
  position: fixed;
  top: -120%;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  /* Glass effect removed for performance/clean look, or applied with a subtle blur */
  /* backdrop-filter:blur(6px); */
  padding: 16px 24px;
  transition: top 0.3s ease;
  z-index: 1300;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.mobile-search-panel.open {
  top: 0;
}
.mobile-search-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 0;
  background: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}
.mobile-search-inner {
  padding-top: 12px;
}
.mobile-search-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid var(--brand-bg);
  font-size: 16px;
}

/* suggestions */
.mobile-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 10px;
}
.mobile-suggestions button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--brand-bg);
  background: var(--brand-bg);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.mobile-suggestions button:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* -------- Main content placeholder and Hero Section -------- */
.main-content {
  padding-top: 30px;
}

.hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 24px;
}
.hero-text {
  max-width: 550px;
}
.hero-text h1 {
  font-size: 3.2em;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1.15em;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.main-page-content {
  padding: 40px 24px;
}

/* -------- Sticky collapsed state (when scrolled) -------- */
.header-sticky .top-announce {
  display: none;
}
.header-sticky .header-top {
  display: none;
} /* Hide top brand/contact block when sticky */
.header-sticky .brand {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.22s;
}
.header-sticky .nav-center-logo {
  opacity: 1;
  pointer-events: auto;
}

/* CRITICAL FIX: Force navbar to fixed position when sticky */
.header-sticky .navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}


/* Compensate for the height of the fixed navbar to prevent content jump. */
/* Desktop/Tablet: Assuming the collapsed navbar height is about 75px */
.header-sticky #main {
  padding-top: 75px;
}

.header-sticky .navbar {
  padding-top: 0;
  padding-bottom: 0;
}
.header-sticky .nav-row {
  padding: 10px 24px;
} /* Smaller padding when sticky */
.logo-div-mobile-icons{
    display: none;
}

#mobile-search-input{
  width:90%;
  padding:12px 18px;
  /* Pill-shaped design */
  border-radius:30px; 
  /* Subtle shadow for visual lift */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
  border:2px solid var(--brand-bg);
  font-size:16px;
  transition: all 0.2s ease;
}

#mobile-search-input:focus {
  /* Uses the accent color for a vibrant focus */
  border-color: var(--accent); 
  /* Adds a soft glow effect on focus */
  box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.3); 
}
/* -------- Responsive rules -------- */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.5em;
  }

  .hero-section {
    padding: 40px 24px;
    justify-content: center;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .btn-primary {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  } /* Hide full navigation */
  .hamburger {
    display: inline-block;
  }

  /* Mobile Header Top Fix: Show logo on left, Address/GST on right, hide contact */
  .contact {
    display: none;
  }
  .header-main .header-top {
    justify-content: space-between; /* Space out logo and meta */
    align-items: center;
  }
  .brand {
    flex-direction: column;
  }
  .brand-meta {
    display: flex; /* SHOW address/GST */
    flex-direction: column;
  }


  .search-input {
    width: 200px;
  }
}

/* Hiding sticky logo on large screens */
@media (min-width: 981px) {
  /* Hide the center sticky logo on desktop view */
  .header-sticky .nav-center-logo {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Tablet/Large Mobile adjustments */
  .search-input {
    width: 100%;
  }
  .search-scroll {
    right: 16px;
  } /* Keep scroller inside input on tablet */
}

@media (max-width: 640px) {
  /* Mobile adjustments */
  .container {
    padding: 0 16px;
  } /* Tighter padding on smallest screens */
  .header-main .header-top {
    display: block;
    padding: 10px 16px;
  }
  .brand{
    gap: 0px;
  }
  .brand img {
    width: 180px;
    height: auto;
  }
  .nav-row {
    padding: 8px 16px;
  }

  .search-wrapper {
    width: 100%;
  }
  .search-input {
    display: none;
  } /* hide desktop input on small screens */
  .search-icon {
    display: inline-block;
    margin-left: 0;
    font-size: 24px;
  } /* Prominent mobile search icon */
  .search-scroll {
    display: none;
  } /* Hide scroller when search input is hidden */

  .drawer-close-arrow {
    left: 68%;
    top: 16px;
    width: 40px;
    height: 40px;
  } /* reposition close button on mobile */

  .mobile-search-panel {
    padding: 12px 16px;
  }
  .mobile-search-close {
    right: 12px;
    top: 12px;
  }
  .logo-div-mobile{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.logo-div-mobile-icons{
    display: flex;
    gap: 1rem;
    margin: auto 0px;
}

  /* Show arrow ONLY when the drawer is open */
  .mobile-drawer.open + .drawer-close-arrow {
    display: flex; /* Display the arrow when the sibling drawer is open */
  }

  /* Reset main content padding-top for mobile, as fixed header is shorter on mobile */
  .header-sticky #main {
    padding-top: 60px; /* Smaller height compensation for mobile sticky nav */
  }
}




/* --- HERO SLIDER STYLES --- */
.hero-image {
    position: relative;
    overflow: hidden; /* Hides slides outside the current view */
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    /* Set a height to prevent content reflow during load. Adjust if needed. */
    aspect-ratio: 600 / 400; 
    width: 50%;
}

.slide-wrapper {
    display: flex;
    width: 500%; /* 5 slides * 100% width */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.4, 1); /* Smooth slide transition */
}

.slide {
    width: 20%; /* Each slide takes 1/5th of the wrapper width */
    height: 100%;
    object-fit: cover;
}

/* Dot Navigation Styling */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.slider-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}
@media (max-width: 640px) {
.hero-section{
    flex-direction: column-reverse;
}
.hero-image{
    width: 100%;
}
}



/* --- NEW MOBILE SLIDING MENU STYLES --- */

/* Ensures the container holds all levels horizontally and enables sliding */
.mobile-drawer {
    overflow: hidden; /* Hide horizontal scrollbar */
}
.drawer-slide-container {
    display: flex;
    width: 300%; /* Total width for Level 1, 2, and 3 */
    height: 100%;
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
}

/* Each level takes the full width of the drawer */
.drawer-level {
    width: 33.333%;
    height: 100vh; /* Needs full height */
    flex-shrink: 0;
    padding-bottom: 50px; /* Space for View All link */
}

/* Style for the nested menu header */
.level-header {
    display: flex;
    align-items: center;
    padding: 0px 18px 10px 10px; /* Adjust padding for back button */
    margin-bottom: 10px;
    border-bottom: 1px solid var(--brand-bg);
    color: var(--primary-dark);
    font-weight: 700;
}
.level-header .back-button {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 16px;
    padding: 8px 15px 8px 10px;
    cursor: pointer;
}
.level-header .level-title {
    font-size: 16px;
}

/* List styles for all drawer levels */
.drawer-nav-list {
    list-style: none;
    padding: 10px 0 0 10px;
    margin: 0;
    overflow-y: auto;
    height: calc(100% - 80px); /* Adjust height to fit header */

}

.drawer-nav-list li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 95%;
    text-align: start;
}
.drawer-nav-list li a:hover {
    background: var(--brand-bg);
}
.drawer-nav-list-mobile li a{
    justify-content: flex-start;
}
/* Specific styling for list items that lead to another level */
.drawer-nav-list li.has-next-level a i:last-child {
    color: var(--accent);
}

/* Styling for the View All link in Level 3 */
.view-all-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    margin: 10px 10px 0 10px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
/* =========================
   NEW LUXURY SLIDER CARDS
   ========================= */

.product-showcase-animated {
    background: #f4f6f9;
    padding: 60px 0;
}

.animated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive Grid */
    gap: 30px;
    justify-items: center;
}

/* --- Slider Container --- */
.slider {
    position: relative;
    width: 100%;
    max-width: 500px; /* Limit max width */
    height: 450px;    /* Fixed height for consistency */
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

.slider:hover {
    transform: translateY(-5px);
}

/* --- Slides Area --- */
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out; 
    /* Note: We use JS to move this, but basic flex keeps images in a row */
}

.grid-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    /* Masking the top to allow text to be readable if needed, but we have a white box */
}

/* --- Floating Bottom Card --- */
.bottom-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    padding: 20px;
    padding-bottom: 15px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

/* The "Inverted Radius" effect connecting the card to the frame */
.bottom-center::before,
.bottom-center::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    z-index: -1;
    box-shadow: 0 0 0 30px #fff; /* Fills the gap with white */
}

.bottom-center::before {
    left: -30px;
    bottom: 0;
    border-bottom-right-radius: 20px;
}

.bottom-center::after {
    right: -30px;
    bottom: 0;
    border-bottom-left-radius: 20px;
}

/* Typography */
.luxury-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark); /* Deep Blue */
    margin: 0 0 5px 0;
    text-transform: capitalize;
}

.luxury-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 15px 0;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.slider .btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.slider .btn.primary {
    background-color: var(--accent); /* Orange */
    color: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 10px rgba(255, 138, 101, 0.3);
}

.slider .btn.primary:hover {
    background-color: #e64a19;
    border-color: #e64a19;
    transform: translateY(-2px);
}

.slider .btn.secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.slider .btn.secondary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Indicators */
.indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider .dot {
    height: 8px;
    width: 8px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider .dot.active {
    background-color: var(--primary-dark);
    width: 20px; /* Elongate active dot */
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slider {
        height: 400px;
        width: 95%;
    }
    .bottom-center {
        width: 90%;
        padding: 15px;
    }
    .luxury-heading {
        font-size: 1.3rem;
    }
    .slider .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ADD THIS TO THE END OF priya_prints/styles/style.css */

/* --- Quote CTA Section Styles --- */
.quote-cta-section {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.cta-inner h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.cta-inner p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.btn-cta-secondary {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 14px 30px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-cta-secondary:hover {
    background: #ff7f54; /* Slightly darker accent */
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* --- NEUMORPHIC MODAL STYLES (Unique UI) --- */

/* Native Dialog Styling & Backdrop */
.neumorphic-modal {
    border: none;
    border-radius: 16px;
    padding: 0;
    background: none; /* Make dialog transparent to show modal-content background */
    box-shadow: none;
    max-width: 550px;
    transition: opacity 0.3s, transform 0.3s;
}

/* Backdrop Effect */
.neumorphic-modal::backdrop {
    background: rgba(26, 35, 126, 0.5); /* Primary dark with transparency */
    backdrop-filter: blur(6px); /* Glass effect */
}

/* Modal Content Container (Neumorphism applied here) */
.modal-content {
    background: var(--bg); /* Off-white background */
    padding: 40px;
    border-radius: 16px;
    
    /* Soft Shadow (Neumorphic) Effect */
    box-shadow: 
        10px 10px 30px rgba(0, 0, 0, 0.08), /* Dark shadow for depth */
        -10px -10px 30px rgba(255, 255, 255, 0.7); /* Light shadow for lift */
    
    text-align: center;
    position: relative;
    max-width: 100%;
}

.modal-content h3 {
    color: var(--primary-dark);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover {
    color: var(--accent);
}

/* Form Styling */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.input-wrapper {
    position: relative;
}

/* Neumorphic Input Style */
.modal-input {
    width: 100%;
    padding: 15px 15px 15px 45px; /* Space for icon */
    border: none;
    border-radius: 10px;
    background: var(--bg);
    font-size: 1em;
    color: var(--text-dark);
    transition: all 0.3s;
    
    /* Sunken Neumorphic Effect */
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.1), 
        inset -3px -3px 6px rgba(255, 255, 255, 0.7);
}

.modal-input:focus {
    outline: none;
    border: 1px solid var(--accent); /* Subtle border on focus */
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 1.1em;
}

/* Neumorphic Submit Button */
.modal-submit {
    width: 100%;
    padding: 16px;
    font-weight: 700;
    font-size: 1.1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    background: var(--accent);
    color: #fff;
    
    /* Raised Neumorphic Effect */
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.15), 
        -6px -6px 12px rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.modal-submit:hover {
    transform: scale(0.98);
}

.modal-submit:active {
    /* Press Effect */
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.2), 
        inset -4px -4px 8px rgba(255, 255, 255, 0.5);
}

/* Success Message */
.success-message {
    padding: 30px;
    background: #e8f5e9; /* Light green background */
    border-radius: 10px;
    border: 1px solid #c8e6c9;
    color: #388e3c; /* Dark green text */
}
.success-message i {
    font-size: 3em;
    color: #4caf50;
    margin-bottom: 10px;
}
.success-message h4 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}


/* MODAL RESPONSIVENESS */
@media (max-width: 640px) {
    .neumorphic-modal {
        max-width: 90%;
        margin: 20px auto;
    }
    .modal-content {
        padding: 25px;
    }
    .cta-inner h2 {
        font-size: 1.5em;
    }
    .btn-cta-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
}


/* --- FOOTER STYLES (Modern 5-Column Split) --- */
.main-footer {
    display: block;
    background: var(--header-bg); /* White background */
}

/* Desktop: 5-column grid setup */
@media (min-width: 1024px) {
    .main-footer {
        display: grid;
        grid-template-columns: 2fr 3fr; /* 2 parts image, 3 parts content (5-column simulation) */
    }
}

.footer-image-col {
    position: relative;
    display: block;
    height: 250px; /* Default height for mobile/tablet */
    overflow: hidden;
}
@media (min-width: 1024px) {
    .footer-image-col {
        height: 100%; /* Full height on desktop */
    }
}

.footer-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer-content-col {
    padding: 30px 24px;
}
@media (min-width: 640px) {
    .footer-content-col {
        padding: 40px 32px; /* sm:px-6 lg:px-8 */
    }
}
@media (min-width: 1024px) {
    .footer-content-col {
        padding: 60px 40px; 
    }
}


/* Inner Grid for Links/Contact */
.footer-grid-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; 
}
@media (min-width: 640px) {
    .footer-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Info Styling */
.footer-label {
    font-size: 0.75em; /* text-xs */
    letter-spacing: 0.05em; /* tracking-wide */
    color: var(--text-muted); /* text-gray-500 */
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.footer-phone {
    display: block;
    font-size: 2em; /* text-2xl/3xl */
    font-weight: 600;
    color: var(--primary-dark); /* text-gray-900 */
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-phone:hover {
    opacity: 0.8;
}

.footer-schedule {
    margin-top: 1.5rem; /* mt-8 */
    padding: 0;
    list-style: none;
    font-size: 0.875em; /* text-sm */
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-schedule li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-schedule i {
    color: var(--accent);
}

/* Social Links */
.footer-social-links {
    margin-top: 2rem; /* mt-8 */
    display: flex;
    gap: 1.5rem; /* gap-6 */
    padding: 0;
    list-style: none;
}
.social-link {
    color: var(--primary-dark);
    transition: color 0.2s;
}
.social-link i {
    font-size: 1.5rem; /* size-6 equivalent */
}
.social-link:hover {
    color: var(--accent);
}

/* Links Grid */
.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) {
    .footer-link-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.footer-link-heading {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1em;
    margin-bottom: 0;
}

.footer-link-list {
    margin-top: 1.5rem; /* mt-6 */
    padding: 0;
    list-style: none;
    line-height: 1.5;
}
.footer-link-list li {
    margin-bottom: 0.75rem; /* space-y-4 */
}
.footer-link {
    color: var(--text-muted); /* text-gray-700 */
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--accent);
}

/* Bottom Bar (Copyright/Legal) */
.footer-bottom-bar {
    margin-top: 3rem; /* mt-12 */
    padding-top: 3rem; /* pt-12 */
    border-top: 1px solid var(--brand-bg); /* border-gray-100 */
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75em; /* text-xs */
    justify-content: center;
}
@media (min-width: 640px) {
    .footer-bottom-bar > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer-legal-links {
        justify-content: flex-start;
    }
}

.footer-legal-link {
    color: var(--text-muted); /* text-gray-500 */
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-legal-link:hover {
    opacity: 0.75;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.75em; /* text-xs */
    color: var(--text-muted); /* text-gray-500 */
    text-align: center;
}
@media (min-width: 640px) {
    .footer-copyright {
        margin-top: 0;
        text-align: right;
    }
}


/* =========================
   SEARCH DROPDOWN STYLES
   ========================= */

/* Desktop Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%; /* Right below the input */
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Hidden by default */
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f4f6f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f4f6f9;
}

.search-result-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    display: block;
}

.search-highlight {
    color: var(--accent);
    font-weight: 700;
}

.no-results-message {
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

/* Adjust Mobile Suggestions to look like a list instead of just buttons */
.mobile-suggestions.active-search {
    display: block;
    flex-direction: column;
}

.mobile-suggestions.active-search .search-result-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 8px;
    border-radius: 8px;
}



/* =========================
   FLOATING CONTACT BAR
   ========================= */

.floating-btn {
    position: fixed;
    bottom: 120px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1500;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), bottom 0.3s ease-in-out;
    transform: scale(0); /* Hidden by default */
    text-decoration: none;
    border: 2px solid #fff;
}

/* Active state (added by JS on scroll) */
.floating-btn.visible {
    transform: scale(1);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp - Left Side */
.float-wa {
    left: 25px;
    background-color: #25D366;
}

/* Phone - Right Side */
.float-phone {
    right: 25px;
    background-color: #1a237e; /* Your Primary Dark Blue */
}

/* ADD this new class for the shifted position */
.floating-btn.shift-up {
    bottom: 100px; /* Moves up slightly on desktop */
}

/* ADD this media query to move it higher on mobile (since the banner is taller there) */
@media (max-width: 768px) {
    .floating-btn.shift-up {
        bottom: 180px; /* Adjust this value if the banner is taller/shorter */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 100px; /* Moved up to avoid overlapping bottom navigation if any */
    }
    
    .float-wa { left: 20px; }
    .float-phone { right: 20px; }
}



/* =========================
   COOKIE POLICY BANNER
   ========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212121; /* Dark Grey for contrast */
    color: #ffffff;
    padding: 15px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10001; /* Sit above floating buttons */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    
    /* Animation: Slide up from bottom */
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-btn {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 101, 0.3);
}

.cookie-btn:hover {
    background-color: #fff;
    color: var(--accent);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        width: 100%; /* Full width button on mobile */
    }
}


/* =========================
   NOTIFICATION PERMISSION BANNER
   ========================= */

.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a237e; /* Primary Blue */
    color: #ffffff;
    padding: 12px 24px;
    z-index: 10002; /* Sit above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    
    /* Hidden by default (Slide Down Animation) */
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.notification-banner.show {
    transform: translateY(0);
}

.notify-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notify-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ff8a65; /* Accent Orange */
}

.notify-text h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.notify-text p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    display: none; /* Hidden on mobile to save space */
}

/* Buttons */
.notify-actions {
    display: flex;
    gap: 10px;
}

.btn-notify-allow {
    background-color: #ff8a65;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-notify-allow:hover {
    background-color: #ff7043;
}

.btn-notify-later {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-notify-later:hover {
    background: rgba(255,255,255,0.1);
}

/* Desktop: Show description text */
@media (min-width: 768px) {
    .notify-text p { display: block; }
    .notification-banner { justify-content: space-between; }
}

/* Mobile: Stack if needed or keep compact */
@media (max-width: 480px) {
    .notification-banner {
 padding: 12px 12px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .notify-actions {
      
        justify-content: flex-end;
    }
    .notify-content{
      gap: 5px;
    }
    .notify-text h4{
      font-size: .9rem;
    }
}


.copyright{
  text-decoration: none;
}

/* =========================
   EXIT INTENT OFFER POPUP
   ========================= */

.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for focus */
    z-index: 20000; /* Highest z-index to sit on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px); /* Modern glass effect */
}

.offer-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offer-popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy open */
    border-top: 6px solid var(--accent); /* Orange accent line */
}

.offer-popup-overlay.active .offer-popup-content {
    transform: scale(1);
}

.offer-title {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.offer-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.offer-btn {
    background: var(--accent);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 20px rgba(255, 138, 101, 0.3);
}

.offer-btn:hover {
    background: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 138, 101, 0.4);
}

.offer-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.offer-close:hover {
    color: var(--text-dark);
}

/* Mobile Responsive (Just in case) */
@media (max-width: 600px) {
    .offer-popup-content {
        padding: 30px 20px;
    }
    .offer-title {
        font-size: 1.6rem;
    }
}



