/* Root Variables - Colors from the design images */
:root {
  --cream: #f5f1e8;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --beige: #e8dcc8;
  --brown: #8b7355;
  --gold: #d4af37;
  --light-text: #ffffff;
  --dark-text: #2c2c2c;
  --gray: #666666;
  --accent: #c9a961;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-content {
  text-align: center;
  color: var(--light-text);
}

.book-loader {
  margin-bottom: 1rem;
}

.book {
  position: relative;
  width: 60px;
  height: 80px;
  margin: 0 auto;
}

.book-page {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
  transform-origin: left center;
  animation: flip 1.5s infinite;
}

.book-page:nth-child(2) {
  animation-delay: 0.5s;
}

.book-page:nth-child(3) {
  animation-delay: 1s;
}

@keyframes flip {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(-180deg); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--light-text);
  letter-spacing: 3px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--light-text);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  position: relative;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle i {
  transform: rotate(-180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-bg);
  min-width: 200px;
  list-style: none;
  padding: 1rem 0;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-top: 3px solid var(--gold);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--light-text);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding-left: 2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-icon {
  color: var(--light-text);
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}
@media (max-width: 360px) {
.header-my-account{
  display: none;
}
.timeline-content {
    flex: 1;
    padding: 0.5rem !important;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold);
}
.order-item {
  display: block !important;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--cream);
  margin-bottom: 1rem;
  border-radius: 5px;
}
.order-item  .order-total{
margin-top: 15px;
}
.order-item  p{
margin-top: 15px;
}
.order-item  .status-delivered{
margin-top: 15px;
}
.order-item  .status-shipping{
margin-top: 15px;
}
.blog-detail-article{
  padding: 10px !important;
}

.blog-post-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
}
.sidebar-widgets .widget-post {
  padding: 20px 10px !important;
}
.search-box button{
  padding: 10px 10px !important;
}
}
.header-icon:hover {
  color: var(--gold);
}

.badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  display: none;
}

.nav-btn {
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  padding: 0.75rem 2rem;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.nav-btn:hover {
  background: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--light-text);
  padding: 10rem 0 6rem;
  text-align: center;
  margin-top: 70px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 100vh;
  height: auto;
  margin-top: 70px;
  overflow: hidden;
  transition: background 0.5s ease;
  padding: 4rem 0;
}

.hero-slider.dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--light-text);
}

.hero-slider.light {
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  color: var(--dark-text);
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
}

.hero-text {
  animation: fadeInUp 0.8s ease;
  padding: 80px;

}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* .btn-secondary:hover {
  background: currentColor;
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
} */

.hero-slider.light .btn-secondary:hover {
  color: var(--light-text);
  background: var(--dark-bg);
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-icon {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.btn-icon:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: 0.9rem;
}

.btn-link:hover {
  color: var(--accent);
}

.text-danger {
  color: #dc3545 !important;
}

.hero-book {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease;
}

.book-showcase {
  width: 350px;
  height: 500px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 
    20px 20px 60px rgba(0, 0, 0, 0.3),
    -10px -10px 30px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
  position: relative;
}

.book-showcase::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.book-showcase:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light-text);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--gold);
  color: var(--dark-bg);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 2rem;
}

.slider-nav.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--gold);
}

/* Featured Section */
.featured-section {
  padding: 8rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.featured-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-label {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.featured-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.featured-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 2rem;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.author-photo {
  width: 400px;
  height: 500px;
  background: linear-gradient(135deg, var(--gray) 0%, var(--brown) 100%);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.author-photo::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  z-index: -1;
}

.about-text h2 {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 1rem;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-text .btn-primary {
  margin-top: 1rem;
}

/* Journey/Timeline Section */
.journey-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-year {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
  min-width: 100px;
  text-align: right;
}

.timeline-content {
  flex: 1;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--gray);
}

/* Awards Section */
.awards-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.award-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.award-item:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.award-item i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.award-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.award-item p {
  color: var(--gray);
}

/* Philosophy Section */
.philosophy-section {
  padding: 6rem 0;
  background: var(--beige);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.philosophy-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
}

.signature {
  font-size: 1.2rem;
  color: var(--gray);
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background: var(--beige);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 250px;
}

.testimonial-slide {
  padding: 3rem;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark-text);
  line-height: 1.8;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 115, 85, 0.2) 100%);
  border-color: var(--gold);
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.price-period {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

.features-list i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.subscription-section {
  margin-top: 4rem;
}

/* Collection Section */
.collection-section {
  padding: 6rem 0;
  background: var(--cream);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.book-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.book-card:hover {
  transform: translateY(-10px);
}

.book-cover {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.book-card:hover .book-cover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.book-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.book-category {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.book-price {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.blog-nav {
  display: flex;
  gap: 1rem;
}

.blog-nav-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-nav-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.blog-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-slider {
  overflow: hidden;
}

.blog-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: calc(50% - 1rem);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 2rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.blog-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.newsletter-content {
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.newsletter-content p {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--light-text);
  transform: translateY(-5px);
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 2rem;
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 1rem 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9998;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification i {
  color: var(--gold);
  font-size: 1.5rem;
}

/* Contact Page */
.contact-page-section {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-top:12px;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: var(--light-text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.required {
  color: #dc3545;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.contact-details p {
  color: var(--gray);
  line-height: 1.6;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--dark-bg);
  color: var(--gold);
  transform: translateY(-3px);
}

.map-section {
  padding: 4rem 0;
  background: var(--cream);
}

.map-container {
  width: 100%;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Books Page */
.books-page-section {
  padding: 6rem 0;
  background: var(--cream);
}

.books-filter {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--dark-text);
}

.filter-group select {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: var(--light-text);
  font-size: 1rem;
  cursor: pointer;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.book-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: var(--light-text);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.book-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.book-cover-large {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-details h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  margin-top: 15px;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  margin: 1rem 0;
}

.book-rating span {
  color: var(--gray);
  font-size: 0.9rem;
}

.book-description {
  color: var(--gray);
  line-height: 1.6;
  margin: 1rem 0;
}

.book-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Cart Page */
.cart-section {
  padding: 6rem 0;
  background: var(--cream);
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.cart-items {
  background: var(--light-text);
  padding: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-image .book-cover-small {
  width: 100px;
  height: 140px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
}

.cart-item-details h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.cart-item-price {
  color: var(--gold);
  font-weight: bold;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--accent);
}

.cart-item-quantity input {
  width: 50px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
}

.cart-item-total {
  font-weight: bold;
  color: var(--dark-text);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart i {
  font-size: 5rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.empty-cart h3 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.empty-cart p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.cart-summary {
  background: var(--light-text);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--gray);
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--dark-text);
}

.summary-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}

.cart-summary .btn-primary,
.cart-summary .btn-secondary {
  margin-top: 1rem;
}

/* Checkout Page */
.checkout-section {
  padding: 6rem 0;
  background: var(--cream);
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.checkout-form-wrapper {
  background: var(--light-text);
  padding: 2rem;
}

.checkout-section-block {
  margin-bottom: 3rem;
}

.checkout-section-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.payment-option input:checked + .payment-card {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.payment-card i {
  font-size: 2rem;
  color: var(--gold);
}

.checkout-summary {
  background: var(--light-text);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.checkout-items-list {
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-item-name {
  color: var(--dark-text);
}

.checkout-item-name span {
  color: var(--gray);
  font-size: 0.9rem;
}

.checkout-item-price {
  font-weight: bold;
  color: var(--gold);
}

.summary-totals {
  margin-bottom: 2rem;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 5px;
}

/* Wishlist Page */
.wishlist-section {
  padding: 6rem 0;
  background: var(--cream);
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.wishlist-item {
  background: var(--light-text);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.wishlist-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.remove-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #dc3545;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-wishlist:hover {
  background: #c82333;
  transform: rotate(90deg);
}

.wishlist-item-image {
  margin-bottom: 1rem;
}

.book-cover-medium {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
}

.wishlist-item-details {
  text-align: center;
}

.wishlist-item-details h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.wishlist-item-price {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1rem;
}

.empty-wishlist {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}

.empty-wishlist i {
  font-size: 5rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.empty-wishlist h3 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.empty-wishlist p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Account Page */
.account-section {
  padding: 6rem 0;
  background: var(--cream);
}

.account-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

.account-sidebar {
  background: var(--light-text);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.account-user {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.user-avatar {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--dark-bg);
}

.account-user h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.account-user p {
  color: var(--gray);
  font-size: 0.9rem;
}

.account-menu {
  list-style: none;
}

.account-menu li {
  margin-bottom: 0.5rem;
}

.account-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--dark-text);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.account-menu a:hover,
.account-menu a.active {
  background: var(--gold);
  color: var(--dark-bg);
}

.account-content {
  background: var(--light-text);
  padding: 2rem;
}

.account-tab {
  display: none;
}

.account-tab.active {
  display: block;
}

.account-content h2 {
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.dashboard-card {
  background: var(--cream);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.dashboard-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.dashboard-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.dashboard-card p {
  color: var(--gray);
}

.recent-orders {
  margin-top: 2rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--cream);
  margin-bottom: 1rem;
  border-radius: 5px;
}

.order-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}

.status-shipping {
  background: #fff3cd;
  color: #856404;
}

.order-total {
  font-weight: bold;
  color: var(--gold);
  font-size: 1.2rem;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 10px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-items {
  margin-bottom: 1.5rem;
}

.order-book {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.book-cover-tiny {
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
}

.order-book h4 {
  margin-bottom: 0.25rem;
}

.order-book p {
  color: var(--gray);
  font-size: 0.9rem;
}

.order-book-price {
  margin-left: auto;
  font-weight: bold;
  color: var(--gold);
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-line {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-text);
}

.profile-form {
  max-width: 600px;
}

.profile-form h3 {
  margin: 2rem 0 1rem;
  color: var(--dark-text);
}

.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.address-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 10px;
}

.address-card.add-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px dashed var(--gray);
  transition: all 0.3s ease;
}

.address-card.add-new:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.address-card.add-new i {
  font-size: 3rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.address-header .badge {
  background: var(--gold);
  color: var(--dark-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.address-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.address-actions {
  display: flex;
  gap: 1rem;
}

/* Pricing FAQ */
.pricing-faq-section {
  padding: 6rem 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--light-text);
  padding: 2rem;
  border-radius: 10px;
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Gallery Page */
.gallery-section {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 0.75rem 2rem;
  background: var(--light-text);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Authors Page */
.authors-section {
  padding: 6rem 0;
  background: var(--cream);
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.author-card {
  background: var(--light-text);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.author-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.author-image {
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  border-radius: 50%;
  margin: 0 auto;
  border: 5px solid var(--gold);
}

.author-info h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.author-title {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.author-bio {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-stats {
  display: flex;
  justify-content: space-around;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat strong {
  font-size: 1.5rem;
  color: var(--gold);
}

.stat span {
  font-size: 0.85rem;
  color: var(--gray);
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.author-social a {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--dark-bg);
  color: var(--gold);
  transform: translateY(-3px);
}

.join-authors-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: var(--light-text);
}

.join-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.join-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.join-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* FAQ Page */
.faq-page-section {
  padding: 6rem 0;
  background: var(--cream);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 0.75rem 2rem;
  background: var(--light-text);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-expand {
  background: var(--light-text);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
  color: var(--dark-text);
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--gray);
  line-height: 1.8;
}

.faq-contact-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.faq-contact-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
}

.faq-contact-box h2 {
  margin-bottom: 1rem;
}

.faq-contact-box p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Blog Page */
.blog-page-section {
  padding: 6rem 0;
  background: var(--cream);
}

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.blog-post-card {
  background: var(--light-text);
  margin-bottom: 3rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
  width: 100%;
  height: 400px;
  background-image:url('assets/images/post-1.jpg');
  background-size: cover;
  background-position: center;
  repeat: no-repeat;
  /* background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%); */
}

.submit-1{
  margin-top: 20px;
}

.blog-post-content {
  padding: 2rem;
}

.blog-post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-content h2 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.blog-post-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  gap: 1rem;
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:disabled {
  background: rgba(0, 0, 0, 0.1);
  color: var(--gray);
  cursor: not-allowed;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--accent);
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  background: var(--light-text);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--light-text);
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.search-box {
  display: flex;
  gap: 0.5rem;
}

.search-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.search-box button {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: var(--accent);
}

.categories-list {
  list-style: none;
}

.categories-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: var(--dark-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.categories-list a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.categories-list span {
  color: var(--gray);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
}

.recent-post-image {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  flex-shrink: 0;
}

.recent-post-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.recent-post-info h4 a {
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
  color: var(--gold);
}

.recent-post-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--cream);
  color: var(--dark-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag:hover {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

/* Blog Detail Page */
.blog-detail-section {
  padding: 6rem 0;
  background: var(--cream);
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.blog-detail-article {
  background: var(--light-text);
  padding: 3rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  margin-bottom: 3rem;
}

.article-content {
  color: var(--gray);
  line-height: 1.8;
}

.article-content h2 {
  color: var(--dark-text);
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.article-content h3 {
  color: var(--dark-text);
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--cream);
  margin: 2rem 0;
  font-style: italic;
  color: var(--dark-text);
  font-size: 1.1rem;
}

.article-content cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--dark-bg);
  color: var(--gold);
  transform: translateY(-3px);
}

.article-author-bio {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--cream);
  margin-top: 3rem;
  border-radius: 10px;
}

.author-bio-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-bio-content h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.author-bio-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.author-bio-social {
  display: flex;
  gap: 0.5rem;
}

.author-bio-social a {
  width: 35px;
  height: 35px;
  background: var(--gold);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-bio-social a:hover {
  background: var(--dark-bg);
  color: var(--gold);
}

.article-comments {
  margin-top: 3rem;
}

.article-comments h3 {
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.comment-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--accent) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-header strong {
  color: var(--dark-text);
}

.comment-header span {
  color: var(--gray);
  font-size: 0.9rem;
}

.comment-content p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.comment-reply {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}

.comment-reply:hover {
  color: var(--accent);
}

.comment-form {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 10px;
}

.comment-form h4 {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .books-grid {
    grid-template-columns: 1fr;
  }
  
  .authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu a {
    display: flex;
    padding: 1rem 0;
    justify-content: space-between;
    width: 100%;
  }
  
  /* Mobile Dropdown Styles */
  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-top: none;
    background: rgba(255, 255, 255, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .has-dropdown.active .dropdown-toggle i {
    transform: rotate(-180deg);
  }
  
  .dropdown-menu a:hover {
    padding-left: 1.5rem;
  }
  
  .header-actions .nav-btn {
    display: none;
  }
  
  .header-actions {
    gap: 0.75rem;
  }
  
  .header-icon {
    font-size: 1.1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 2rem 0;
  }
  
  .hero-text {
    width: 100%;
  }
  
  .hero-book {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .book-showcase {
    width: 280px;
    height: 400px;
    margin: 0 auto;
  }
  
  .slider-nav {
    display: flex !important;
  }
  
  .slider-dots {
    display: flex !important;
  }
  
  .featured-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .featured-image img {
    height: 350px;
  }
  
  .featured-text h2 {
    font-size: 2rem;
  }
  
  .featured-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .author-photo {
    width: 300px;
    height: 400px;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .account-container {
    grid-template-columns: 1fr;
  }
  
  .account-sidebar {
    position: static;
  }
  
  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .addresses-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-page-grid,
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 8rem 0 4rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .hero-slider {
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .hero-slide {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .book-showcase {
    width: 250px;
    height: 350px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    display: flex !important;
  }
  
  .slider-nav.prev {
    left: 1rem;
  }
  
  .slider-nav.next {
    right: 1rem;
  }
  
  .slider-dots {
    display: flex !important;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    min-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .authors-grid {
    grid-template-columns: 1fr;
  }
  
  .book-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .featured-image img {
    height: 350px;
  }
  
  .featured-text h2 {
    font-size: 2rem;
  }
  
  .featured-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .about-text h3 {
    font-size: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .wishlist-grid,
  .newsletter-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
