/* ==========================================================================
   DESIGN SYSTEM - LIFELYNE PUBLICATIONS (REVISED)
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
  /* Brand Primary Colors (Vibrant Highlights) */
  --primary-blue: #1E5FAF;
  --primary-green: #10B981;
  --primary-yellow: #F59E0B;
  
  /* Brand Accent Colors (Vibrant Highlights) */
  --accent-purple: #1870c7;
  --accent-rose: #d1001f;
  --accent-pink: #FFEAEA;
  
  /* Premium Neutrals (Subtle Neutrals) */
  --deep-navy: #243B53;
  --text-dark: #222222;
  --text-muted: #555555;
  --bg-light: #FAF8F5;
  --bg-glass: rgba(255, 255, 255, 0.93);
  --border-glass: rgba(255, 255, 255, 0.5);
  --white: #FFFFFF;
  --heading-color:#1B1B1B;
  --paragraph-color:#555555;
  --gold:#B8860B;
  /* Fonts */
  --font-headings: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Shadow Systems */
  --shadow-sm: 0 4px 6px -1px rgba(36, 59, 83, 0.03), 0 2px 4px -1px rgba(36, 59, 83, 0.02);
  --shadow-md: 0 10px 20px -3px rgba(24, 112, 199, 0.05), 0 4px 6px -2px rgba(36, 59, 83, 0.02);
  --shadow-lg: 0 20px 30px -5px rgba(24, 112, 199, 0.08), 0 10px 15px -5px rgba(36, 59, 83, 0.02);
  --shadow-premium: 0 40px 80px -15px rgba(36, 59, 83, 0.12);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04);

  /* Border Radii */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-round: 50px;
 
}

/* Responsive Utilities */
html { font-size: 14px; }

/* Mobile-first flex order adjustments */
.flex-mobile-reverse { flex-direction: row !important; }
.order-mobile-1 { order: 1 !important; }
.order-mobile-2 { order: 2 !important; }
.color-grey{color:#555555;}
.color-white{color:#fff;}
@media (max-width: 991.98px) {
  /* Fix left-alignment: ensure Bootstrap containers are properly centered
     and clamp any overflowing decorative elements */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  section {
    overflow-x: hidden !important; /* stop position:absolute decorations escaping */
  }
  .container, .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .section-padding { padding: 2rem 1rem; }
  .navbar .nav-link { font-size: 1rem; }
  .btn { font-family:var(--font-body);

    font-weight:600; }
  .flex-mobile-reverse { flex-direction: column-reverse !important; }

  /* ── NAVBAR: fit logo + icons + hamburger on one row ── */
  /*.navbar {
    padding: 8px 0 !important;
  }*/
  .navbar-brand {
    font-size: 1rem !important;
    gap: 6px !important;
  }
  .navbar-brand i {
    font-size: 0.9rem !important;
  }
  .brand-logo {
    height: 32px !important;
    width: auto !important;
  }
  .navbar-icons {
    gap: 6px !important;
  }
  .nav-icon-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }
  .nav-icon-btn .badge-counter {
    width: 14px !important;
    height: 14px !important;
    font-size: 0.55rem !important;
    top: -1px !important;
    right: -1px !important;
  }
  .navbar-toggler {
    padding: 4px 6px !important;
    font-size: 0.85rem !important;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .section-padding { padding: 3rem 2rem; }
}


/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color:var(--paragraph-color);
  font-size: 1.15rem;
  overflow-x: hidden;          /* prevent horizontal scroll on all devices */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  overflow-x: hidden;          /* belt-and-suspenders: prevent html-level scroll too */
}


h1, h2 {
  font-family: var(--font-headings);
  font-weight: 700;
  background: linear-gradient(135deg, #1870c7 0%, #d1001f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--deep-navy);
}

a {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-menu a{

    color: var(--primary-blue);

    font-weight: 700;

}
p {
  line-height: 1.7;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F0F4F8;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: var(--radius-round);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* ==========================================================================
   REUSABLE UTILITIES & EFFECTS
   ========================================================================== */
.glassmorphism {
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.bg-pattern {
  background-color: #FAF9FB;
  background-image: radial-gradient(rgba(24, 112, 199, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Custom Color Utilities */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-primary-green { color: var(--primary-green) !important; }
.text-primary-yellow { color: var(--primary-yellow) !important; }
.text-accent-purple { color: var(--accent-purple) !important; }
.text-accent-rose { color: var(--accent-rose) !important; }
.text-accent-pink { color: var(--accent-pink) !important; }
.text-deep-navy { color: var(--deep-navy) !important; }

.bg-primary-blue { background-color: var(--primary-blue) !important; }
.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-primary-yellow { background-color: var(--primary-yellow) !important; }
.bg-accent-purple { background-color: var(--accent-purple) !important; }
.bg-accent-rose { background-color: var(--accent-rose) !important; }
.bg-accent-pink { background-color: var(--accent-pink) !important; }
.bg-deep-navy { background-color: var(--deep-navy) !important; }

/* Premium Buttons */
.btn-premium-primary {
  background: var(--accent-purple);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-round);
  border: none;
  box-shadow: 0 8px 20px rgba(24, 112, 199, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-premium-primary:hover {
  background-color: #125599;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 112, 199, 0.3);
  color: var(--white);
}

.btn-premium-secondary {
  background: var(--accent-rose);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-round);
  border: none;
  box-shadow: 0 8px 20px rgba(209, 0, 31, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-premium-secondary:hover {
  background-color: #a00018;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(209, 0, 31, 0.3);
  color: var(--white);
}

.btn-premium-outline {
  border: 2px solid var(--deep-navy);
  color: var(--deep-navy);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-round);
  background: transparent;
  transition: all 0.3s ease;
}
.btn-premium-outline:hover {
  background-color: var(--deep-navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Title Stylings */
.section-header {
  margin-bottom: 50px;
  position: relative;
}
.section-header .tagline {
  font-family: var(--font-handwritten);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--accent-rose);
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: 1px;
}
.section-header .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  width: fit-content;
  margin: 0 auto 15px auto;
}
.section-header .title-accent-line {
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 50%, var(--primary-yellow) 100%);
  border-radius: var(--radius-round);
  margin: 0 auto;
}

/* ==========================================================================
   ANIMATIONS & FLOATERS
   ========================================================================== */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes floatScale {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes rotateSoft {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes cloudMove {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

.float-animation {
  animation: floatY 6s ease-in-out infinite;
}

.rotate-soft {
  animation: rotateSoft 8s ease-in-out infinite;
}

.cloud-move {
  animation: cloudMove 12s ease-in-out infinite;
}

/* Floating Elements placed in section containers */
.decor-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   NAVIGATION BAR & ACCOUNT DRAWERS
   ========================================================================== */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.navbar-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--deep-navy) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header{
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
.navbar-brand span {
  color: var(--accent-purple);
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 17px;
  color:#243B53 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active, .nav-item.active .nav-link {
  color: var(--accent-purple) !important;
  background-color: rgba(24, 112, 199, 0.08);
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  background-color: var(--white);
  color: var(--deep-navy);
  font-size: 1.1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transition: all 0.3s ease;
}
.nav-icon-btn:hover {
  background-color: var(--accent-purple);
  color: var(--white);
  transform: translateY(-2px);
}
.nav-icon-btn .badge-counter {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent-rose);
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Offcanvas Custom Drawer Styling */
.premium-offcanvas {
  border-left: 6px solid var(--accent-purple);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
}
.offcanvas-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 25px;
}
.offcanvas-header .offcanvas-title {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--deep-navy);
}
.drawer-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
  align-items: center;
}
.drawer-item-img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.drawer-item-details h6 {
  font-family: var(--font-headings);
  margin-bottom: 5px;
  font-size: 0.95rem;
}
.drawer-item-details p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-weight: 700;
}
.btn-remove-item {
  background: transparent;
  border: none;
  color: #E53E3E;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s;
}
.btn-remove-item:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   SECTION 1: HERO SLIDER
   ========================================================================== */
   
.hero-slider-container {
  position: relative;
  width: 100%;
  
  
  width:100%;

    height:760px;

    min-height:760px;

    
  overflow: hidden;
  background: linear-gradient(180deg, #F3E8FF 0%, #FFFFFF 100%);
  padding-top: 73px; /* accounts for fixed navbar height on desktop */
}
.swiper-hero {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0;
  overflow: hidden;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  transition: background-color 0.5s ease;
}
.hero-slide-1 {
  background-image: url('../assets/b1.jpg');
  background-color: #BBE0FA;
}
.hero-slide-2 {
  background-image: url('../assets/b3.jpg');
  background-color: #FDE18E;
}
.hero-slide-3 {
  background-image: url('../assets/b2.jpg');
  background-color: #F3E8FF;
}
.hero-slide-4 {
  background-image: url('../assets/book_banner_right.png');
  background-color: #0d1219; /* dark background to match the cinematic vibe */
}
.malayalam-heading{
    font-size: 1.5em;
    line-height: 1.5;
    letter-spacing: 0;
}
.malayalam-text{
    font-size: 1em;
    line-height: 1.8;
    letter-spacing: 0;
}
/* ==========================================================================
   HERO SLIDER - MOBILE ONLY (max 991px). Clean overlay with object-fit.
   ========================================================================== */
@media (max-width: 991.98px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .hero-slider-container {
    aspect-ratio: unset !important;
    min-height: unset !important;
    height: auto !important;
    padding-top: 50px !important;
  }

  .swiper-hero,
  .swiper-hero .swiper-wrapper,
  .swiper-hero .swiper-slide {
    height: auto !important;
  }

  .hero-slide {
    position: relative !important;
    display: block !important;
    padding: 0 !important;
    background-image: none !important; /* Hide desktop background */
  }

  .hero-slide::before, .hero-slide::after { display: none !important; }

  /* Image acts as a full-bleed background */
  .hero-mobile-img {
    width: 100% !important;
    height: 600px !important;
    object-fit: cover !important;
    object-position: center right !important; /* Keep graphics in view */
    display: block !important;
  }

  /* Overlay container */
  .hero-slide .container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Top area */
    align-items: center !important;
    padding: 30px 20px !important;
    background: transparent !important;
    z-index: 2 !important;
  }
} /* END OF MOBILE MEDIA QUERY */

@media (max-width:767px){

    .malayalam-text{
        font-size:0.75em;
        line-height:1.45;
    }

}
/* --- FIX FOR BOOK CARD RESPONSIVENESS --- */
.book-card {
  max-width: 100%;
  overflow: hidden;
}
.book-img-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.book-mockup-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-mockup {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Ensure the grid columns don't overflow on mobile */
.row.justify-content-center > .col-md-6.col-lg-4 {
  max-width: 100%;
}


/* --- BOOK CARD TAGS & WISHLIST BUTTON STYLING --- */
.book-img-container {
  position: relative;
}

.book-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tag-popular {
  background-color: #ffd700; /* Gold */
  color: #000;
}

.tag-new {
  background-color: #ff4757; /* Red/Coral */
  color: #fff;
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  color: #ff4757;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.wishlist-btn:hover {
  background-color: #ff4757;
  color: #ffffff;
  border-color: #ff4757;
}


/* --- BOOK RATING (STARS) --- */
.book-rating {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.book-rating i {
  color: #ffc107; /* Bright gold for stars */
  font-size: 0.95rem;
}
.book-rating span {
  color: #888;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Custom styles for book card buttons */
.btn-book-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
  border: 1px solid var(--primary-blue);
}
.btn-book-primary:hover {
  background-color: #125597;
  color: #ffffff;
  border-color: #125597;
}

.btn-book-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}
.btn-book-outline:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

/* ==========================================================================
   COMBO OFFER SECTION
   ========================================================================== */
.combo-graphic-card img {
  max-width: 33%;
  height: auto;
  transition: transform 0.3s ease;
}
.combo-graphic-card img:hover {
  transform: translateY(-5px) scale(1.03);
  z-index: 5 !important;
}
.rotate-soft {
  transform: rotate(-3deg);
}

/* ==========================================================================
   THE BRAND YOU CAN TRUST (BOOK SPREAD CTA)
   ========================================================================== */
.bg-pattern {
  background-color: #FAF8F5; /* Removed dotted background-image */
}
.book-spread-container {
  max-width: 1100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), inset 0 0 40px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.book-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  margin-left: -20px;
  background: linear-gradient(90deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 2;
}
.book-page-left {
  background: linear-gradient(90deg, #ffffff 0%, #fdfbf7 100%);
  border-right: 1px solid rgba(0,0,0,0.05);
}
.book-page-right {
  background: linear-gradient(90deg, #fdfbf7 0%, #ffffff 100%);
}
@media (max-width: 767px) {
  .book-spine { display: none; }
  .book-page-left { border-right: none; border-bottom: 1px dashed rgba(0,0,0,0.1); }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #243B53; /* Deep navy */
  color: #ffffff;
  padding: 80px 0 30px;
  font-family: var(--font-base);
}
.footer p, .footer li {
  color: rgba(255, 255, 255, 0.7);
}
.footer h5 {
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #10B981; /* Accent green */
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #F59E0B; /* Primary yellow */
  transform: translateX(5px);
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon-btn:hover {
  background-color: #F59E0B;
  color: #243B53;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   IMAGE LIGHTBOX
   ========================================================================== */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}
.image-lightbox.active {
  z-index: 99999;
  opacity: 1;
  visibility: visible;
}
.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.lightbox-img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}
.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: -20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.lightbox-close-btn:hover {
  color: #F59E0B;
}
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  margin-top: 15px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Featured Publications on About Us page */
.featured-book-wrapper {
  aspect-ratio: 2/3;
}

.featured-book-img {
  max-height: 100%;
  object-fit: contain;
}

/* Contact Form custom styles */
.contact-form-label {
  font-size: 0.9rem;
}

.contact-form-input {
  font-size: 0.95rem;
}

/* Margin top for book details in book card */
.book-details {
  margin-top: 20px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{bottom:47px;}
.lifelyne-toast{
    position:fixed;
    top:30px;
    right:30px;
    min-width:320px;
    max-width:420px;
    background:#222;
    color:#fff;
    padding:16px 20px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    transform:translateX(450px);
    opacity:0;
    transition:.35s ease;
    z-index:999999;
}

.lifelyne-toast.show{
    transform:translateX(0);
    opacity:1;
}

.lifelyne-toast.success{
    background:#198754;
}

.lifelyne-toast.error{
    background:#dc3545;
}

.lifelyne-toast i{
    font-size:20px;
}

@media(max-width:576px){

    .lifelyne-toast{

        left:15px;
        right:15px;
        top:20px;
        min-width:auto;
        max-width:none;

    }

}
.added_to_cart.wc-forward{
    display:none !important;
}


.lp-page{
    padding:40px 0 80px;
    min-height:60vh;
}
.lp-page-header{
    text-align:center;
    margin-bottom:50px;
}
.lp-page-title{
    font-size:48px;
    font-weight:700;
    color:#0b2b4c;
    margin-bottom:0;
}
.lp-page-content{
    width:100%;
}
.lp-page-header + .lp-page-content{
    margin-top:30px;
}
.footer-credit{
    margin:0;
    font-size:15px;
    color:rgba(255,255,255,.75);
    display:flex;
    align-items:center;
    gap:6px;
}

.footer-credit a{
    color:#f4b400;
    text-decoration:none;
    font-weight:600;
    position:relative;
    transition:all .3s ease;
}

.footer-credit a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#f4b400;
    transition:width .3s ease;
}

.footer-credit a:hover{
    color:#ffffff;
}

.footer-credit a:hover::after{
    width:100%;
}

.footer-credit .heart{
    color:#ff4d4f;
    font-size:14px;
}

@media (max-width:768px){

    .footer-credit{
        justify-content:center;
        text-align:center;
        flex-wrap:wrap;
    }

}
.site-main{
    padding-top:100px;
}

@media(max-width:991px){
    .site-main{
        padding-top:85px;
    }
}

@media(max-width:767px){
    .site-main{
        padding-top:70px;
    }
}

