:root {
  --book-world-primary-gold: #c9a961;
  --book-world-secondary-gold: #fdf8ed;
  --book-world-dark-gold: #b89651;
  --book-world-light-gold: #d4b371;
  --book-world-text-dark: #2c2c2c;
  --book-world-text-medium: #666;
  --book-world-text-light: #999;
  --book-world-bg-light: #fafafa;
  --book-world-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --book-world-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --book-world-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --book-world-footer-bg: #1a2332;
  --book-world-footer-dark: #0f1419;
  --book-world-gold: #c9a961;
  --book-world-gold-light: #d4b371;
  --book-world-text-white: #ffffff;
  --book-world-text-gray: #b0b8c4;
  --book-world-text-muted: #8892a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

.book-world-announcement-bar {
  background: linear-gradient(
    135deg,
    var(--book-world-primary-gold) 0%,
    var(--book-world-dark-gold) 100%
  );
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.book-world-announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: book-world-shimmer 3s infinite;
}

@keyframes book-world-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.book-world-announcement-bar .book-world-close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.book-world-announcement-bar .book-world-close-btn:hover {
  opacity: 1;
}

.book-world-main-navbar {
  background-color: #fff;
  padding: 1rem 3rem;
  box-shadow: var(--book-world-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.book-world-main-navbar.book-world-scrolled {
  padding: 0.6rem 3rem;
  box-shadow: var(--book-world-shadow-md);
}

.book-world-navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--book-world-text-dark) !important;
  letter-spacing: 1px;
  position: relative;
  transition: transform 0.3s ease;
}

.book-world-navbar-brand:hover {
  transform: scale(1.05);
}

.book-world-navbar-brand .book-world-subtitle {
  display: block;
  font-size: 0.45rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--book-world-text-light);
  margin-top: -5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.book-world-navbar-nav {
  gap: 0.5rem;
}

.book-world-nav-link {
  color: var(--book-world-text-dark) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.book-world-nav-link:hover,
.book-world-nav-link.book-world-active {
  color: var(--book-world-primary-gold) !important;
}

.book-world-nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--book-world-primary-gold),
    transparent
  );
  transition: transform 0.3s ease;
}

.book-world-nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.book-world-mega-menu {
  position: absolute;
  top: 100%;
  width: 800px;
  left: 0;
  background: #fff;
  box-shadow: var(--book-world-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 2rem 0;
  border-top: 2px solid var(--book-world-primary-gold);
}

/* .book-world-nav-item.book-world-dropdown:hover .book-world-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */
.book-world-mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.book-world-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-world-mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.book-world-mega-menu-column h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--book-world-text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.book-world-mega-menu-column ul {
  list-style: none;
  padding: 0;
}

.book-world-mega-menu-column ul li {
  margin-bottom: 0.5rem;
}

.book-world-mega-menu-column ul li a {
  color: var(--book-world-text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.book-world-mega-menu-column ul li a:hover {
  color: var(--book-world-primary-gold);
  padding-left: 0.5rem;
}

.book-world-mega-menu-image {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}

.book-world-mega-menu-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.3),
    rgba(44, 44, 44, 0.5)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.book-world-mega-menu-image:hover::before {
  opacity: 1;
}

.book-world-mega-menu-image .book-world-overlay-text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 1;
}

.book-world-navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.book-world-action-btn {
  background: none;
  border: none;
  color: var(--book-world-text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}

.book-world-action-btn:hover {
  color: var(--book-world-primary-gold);
  transform: translateY(-2px);
}

.book-world-action-btn .book-world-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--book-world-primary-gold);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  font-weight: 600;
}

.book-world-profile-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--book-world-primary-gold),
    var(--book-world-light-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.book-world-profile-avatar:hover {
  border-color: var(--book-world-primary-gold);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
  transform: scale(1.05);
}

.book-world-profile-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4caf50;
  border: 2px solid #fff;
  border-radius: 50%;
}

.book-world-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  animation: book-world-fadeIn 0.3s ease;
}

@keyframes book-world-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.book-world-search-modal.book-world-active {
  display: flex;
}

.book-world-search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
}

.book-world-search-input-wrapper {
  position: relative;
}

.book-world-search-input {
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 2rem;
  font-size: 2rem;
  background: #fff;
  border: 3px solid var(--book-world-primary-gold);
  border-radius: 8px;
  font-family: "Cormorant Garamond", serif;
  color: var(--book-world-text-dark);
  outline: none;
}

.book-world-search-input::placeholder {
  color: var(--book-world-text-light);
}

.book-world-search-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--book-world-primary-gold);
}

.book-world-search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.book-world-search-close:hover {
  transform: rotate(90deg);
}

.book-world-search-suggestions {
  margin-top: 2rem;
  color: #fff;
}

.book-world-search-suggestions h6 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--book-world-text-light);
  margin-bottom: 1rem;
}

.book-world-suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.book-world-suggestion-tag {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-world-suggestion-tag:hover {
  background: var(--book-world-primary-gold);
  border-color: var(--book-world-primary-gold);
  transform: translateY(-2px);
}

.book-world-cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.book-world-cart-sidebar.book-world-active {
  right: 0;
}

.book-world-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.book-world-cart-overlay.book-world-active {
  display: block;
}

.book-world-cart-header {
  padding: 2rem;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-world-cart-header h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--book-world-text-dark);
}

.book-world-cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--book-world-text-medium);
  transition: color 0.3s;
}

.book-world-cart-close:hover {
  color: var(--book-world-text-dark);
}

.book-world-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.book-world-cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.book-world-cart-item-image {
  width: 100px;
  height: 120px;
  background: var(--book-world-bg-light);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.book-world-cart-item-details {
  flex: 1;
}

.book-world-cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--book-world-text-dark);
  margin-bottom: 0.3rem;
}

.book-world-cart-item-price {
  color: var(--book-world-primary-gold);
  font-weight: 600;
  font-size: 1rem;
}

.book-world-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.book-world-quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.book-world-quantity-btn:hover {
  border-color: var(--book-world-primary-gold);
  color: var(--book-world-primary-gold);
}

.book-world-cart-footer {
  padding: 2rem;
  border-top: 2px solid #e8e8e8;
  background: var(--book-world-bg-light);
}

.book-world-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.book-world-cart-total-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--book-world-text-medium);
}

.book-world-cart-total-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--book-world-text-dark);
}

.book-world-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--book-world-primary-gold),
    var(--book-world-dark-gold)
  );
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-world-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.book-world-navbar-toggler {
  border: none;
  padding: 0.4rem;
  background: transparent;
}

.book-world-navbar-toggler:focus {
  box-shadow: none;
}

.book-world-navbar-toggler-icon {
  width: 28px;
  height: 2px;
  background: var(--book-world-text-dark);
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.book-world-navbar-toggler-icon::before,
.book-world-navbar-toggler-icon::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--book-world-text-dark);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.book-world-navbar-toggler-icon::before {
  top: -8px;
}

.book-world-navbar-toggler-icon::after {
  top: 8px;
}

.book-world-navbar-toggler[aria-expanded="true"]
  .book-world-navbar-toggler-icon {
  background: transparent;
}

.book-world-navbar-toggler[aria-expanded="true"]
  .book-world-navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.book-world-navbar-toggler[aria-expanded="true"]
  .book-world-navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 991px) {
  .book-world-main-navbar {
    padding: 1rem 1.5rem;
  }

  .book-world-main-navbar.book-world-scrolled {
    padding: 0.8rem 1.5rem;
  }

  .book-world-navbar-nav {
    margin-top: 1.5rem;
    gap: 0;
  }

  .book-world-nav-link {
    padding: 1rem !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .book-world-mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 1rem 0;
    background: var(--book-world-bg-light);
    box-shadow: unset !important;
  }

  .book-world-mega-menu-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .book-world-mega-menu-image {
    display: none;
  }

  .book-world-navbar-actions {
    margin-top: 1.5rem;
    justify-content: center;
    padding-bottom: 1rem;
  }

  .book-world-cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .book-world-search-input {
    font-size: 1.5rem;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
  }

  .book-world-search-icon {
    font-size: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 576px) {
  .book-world-navbar-brand {
    font-size: 1.6rem;
  }

  .book-world-navbar-brand .book-world-subtitle {
    font-size: 0.4rem;
    letter-spacing: 3px;
  }

  .book-world-announcement-bar {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
}

/* Loading Animation */
.book-world-loading {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--book-world-primary-gold);
  border-radius: 50%;
  animation: book-world-spin 1s linear infinite;
}

@keyframes book-world-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--book-world-primary-gold);
  color: #fff;
}
.book-world-footer {
  background-color: var(--book-world-footer-bg);
  background-image:
    linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
    radial-gradient(
      circle at top right,
      rgba(201, 169, 97, 0.05),
      transparent 60%
    );
  color: var(--book-world-text-gray);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.book-world-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--book-world-gold),
    transparent
  );
  opacity: 0.3;
}

/* Footer Top Section */
.book-world-footer-top {
  padding: 4rem 0 3rem;
  text-align: center;
}

.book-world-footer-logo {
  margin-bottom: 2rem;
}

.book-world-footer-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--book-world-text-white);
  font-weight: 400;
  letter-spacing: 2px;
}

.book-world-footer-logo-icon {
  width: 45px;
  height: 45px;
  border: 2px solid var(--book-world-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--book-world-gold);
  font-weight: 600;
}

.book-world-footer-logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--book-world-text-muted);
  font-weight: 400;
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 0.3rem 1rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.book-world-footer-tagline {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--book-world-text-white);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Links Section */
.book-world-footer-links {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-world-footer-column {
  margin-bottom: 2rem;
}

.book-world-footer-column-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--book-world-text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.book-world-footer-links-list {
  list-style: none;
  padding: 0;
}

.book-world-footer-links-list li {
  margin-bottom: 0.8rem;
}

.book-world-footer-link {
  color: var(--book-world-text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.book-world-footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--book-world-gold);
  transition: width 0.3s ease;
}

.book-world-footer-link:hover {
  color: var(--book-world-gold);
  padding-left: 5px;
}

.book-world-footer-link:hover::after {
  width: 100%;
}

/* Contact Info */
.book-world-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--book-world-text-gray);
  font-size: 0.9rem;
}

.book-world-footer-contact-icon {
  color: var(--book-world-gold);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.book-world-footer-contact-link {
  color: var(--book-world-text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.book-world-footer-contact-link:hover {
  color: var(--book-world-gold);
}

/* Footer Bottom */
.book-world-footer-bottom {
  background-color: var(--book-world-footer-dark);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.book-world-footer-copyright {
  font-size: 0.85rem;
  color: var(--book-world-text-muted);
  letter-spacing: 1px;
}

/* Social Icons */
.book-world-footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.book-world-footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--book-world-text-gray);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.book-world-footer-social-link:hover {
  background: var(--book-world-gold);
  border-color: var(--book-world-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .book-world-footer-top {
    padding: 3rem 0 2rem;
  }

  .book-world-footer-logo-img {
    font-size: 2.2rem;
  }

  .book-world-footer-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .book-world-footer-tagline {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .book-world-footer-links {
    padding: 2rem 0 1.5rem;
  }

  .book-world-footer-column {
    text-align: center;
  }

  .book-world-footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .book-world-footer-logo-img {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .book-world-footer-tagline {
    font-size: 1.2rem;
  }

  .book-world-footer-column-title {
    font-size: 0.8rem;
  }

  .book-world-footer-link,
  .book-world-footer-contact-item {
    font-size: 0.85rem;
  }
}

.book-world-demo-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.book-world-demo-text {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll to top button */
.book-world-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--book-world-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.book-world-scroll-top.book-world-visible {
  opacity: 1;
  visibility: visible;
}

.book-world-scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.6);
}
/* Proper mobile body scroll lock */
body.book-world-nav-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* Make mobile navbar scrollable */
@media (max-width: 991px) {
  .book-world-main-navbar .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .book-world-main-navbar .navbar-collapse {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
  }

  .book-world-main-navbar .navbar-collapse::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}
.book-world-mega-menu .dropdown-item {
  position: relative;
  padding-left: 25px;
}

.book-world-mega-menu .dropdown-item::before {
  content: "\f105"; /* Font Awesome right arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #caac6b;
}
.book-world-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  border-radius: 0px;
  top: 101px !important;
  transform: translateY(0);
}
.book-world-scrolled .book-world-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  border-radius: 0px;
  top: 88px !important;
  transform: translateY(0);
}
.dropdown-item {
  padding-left: 0px;
}
.clamp-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
