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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #fff;
  scroll-behavior: smooth;
}

/* HEADER */
header {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #f5c842;
}

.right-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.right-icons i {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.fa-shopping-bag {
  font-size: 26px;
  margin-left: 20px;
}

/* HERO */
.hero {
  background: #121212;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 60px;
  color: #f5c842;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 35px;
}

.hero button {
  background: #f5c842;
  border: none;
  color: #000;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.hero button:hover {
  background: #fff;
  color: #000;
}

/* BOOK SECTION */
.book-section {
  padding: 80px 40px;
  text-align: center;
}

.book-section h2 {
  font-size: 36px;
  color: #f5c842;
  margin-bottom: 40px;
}

.books {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.book-card {
  background: #1d1d1d;
  border-radius: 12px;
  overflow: hidden;
  width: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.book-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.5;
  object-fit: cover;
  border-bottom: 1px solid #333;
}

.book-info {
  padding: 15px;
}

.book-card h3 {
  font-size: 18px;
  color: #f5c842;
  margin-bottom: 10px;
}

.book-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #f5c842;
}

.price del {
  color: #999;
  margin-right: 6px;
}

/* SECTIONS */
.about-section,
.vip-section {
  padding: 60px 40px;
  text-align: center;
}

.about-section h2,
.vip-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f5c842;
}

.about-section p,
.vip-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #ddd;
}

.vip-section button {
  background-color: #f5c842;
  color: #000;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.vip-section button:hover {
  background-color: #fff;
  color: #000;
}

/* FOOTER */


a:visited {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav {
    gap: 15px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .books {
    flex-direction: column;
    align-items: center;
  }
}


/* BOOK DETAIL PAGE */
.book-detail {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
}

.book-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  align-items: center;
}

.book-image {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.book-text {
  max-width: 500px;
}

.book-text h1 {
  color: #f5c842;
  margin-bottom: 15px;
}

.book-text .price {
  font-size: 20px;
  color: #f5c842;
  margin-bottom: 15px;
}

.book-text .price del {
  color: #888;
  margin-right: 10px;
}

.book-text .description {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 25px;
}

.buy-btn {
  background-color: #f5c842;
  color: #000;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.buy-btn:hover {
  background-color: #fff;
}


/* ADVANCED BOOK PAGE */
.book-detail-advanced {
  padding: 60px 40px;
  background-color: #121212;
  color: #fff;
  max-width: 1100px;
  margin: auto;
}

.book-hero {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.book-image-large {
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.book-info-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-info-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f5c842;
}

.book-info-hero .tagline {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 15px;
}

.book-info-hero .price {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f5c842;
}

.book-info-hero .price del {
  color: #888;
  margin-right: 10px;
}

.book-info-hero .buy-btn {
  background-color: red;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.book-content h2 {
  color: #f5c842;
  margin-top: 30px;
}

.book-content ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}

.book-content p {
  margin-bottom: 15px;
  color: #ccc;
}


/* MODERN GRADIENT BACKGROUND */
.bg-gradient {
  background: linear-gradient(135deg, #0a0a0a, #1b0d17, #2a0f23, #0e0e0e);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Cleaned h2 styling */
.book-content h2 {
  margin-top: 40px;
  font-size: 22px;
  color: #f5c842;
}

.book-content ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

.book-content ul li {
  margin-bottom: 10px;
  color: #ddd;
}


/* Modern Font and Smoother Layout */
body {
  font-family: 'Segoe UI', 'Poppins', 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  background-color: #111;
}

.book-detail-advanced {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.book-hero {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
}

/* Updated Gradient Background */
.bg-gradient {
  background: radial-gradient(circle at top left, #1e1e1e, #0d0d0d, #1e0e17);
  background-size: cover;
}

/* Headings and spacing */
.book-content h2 {
  font-size: 24px;
  color: #f5c842;
  margin-top: 40px;
  margin-bottom: 15px;
}

.book-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.book-content ul {
  margin-bottom: 30px;
  padding-left: 25px;
}

.book-content ul li {
  margin-bottom: 12px;
  color: #ddd;
}


/* Updated yellow-black background with blur overlay */
.bg-gradient {
  background: linear-gradient(135deg, #000000, #1a1a00, #f5c842, #000000);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  position: relative;
  z-index: 1;
}

.book-detail-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  z-index: 0;
}

.book-detail-advanced > * {
  position: relative;
  z-index: 2;
}

/* Make book pages more spacious */
.book-detail-advanced {
  padding: 100px 40px;
  max-width: 1200px;
  margin: auto;
}

/* Adjust hero section */
.book-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

/* Improve layout for smaller screens */
@media (max-width: 768px) {
  .book-hero {
    flex-direction: column;
    align-items: center;
  }
}


/* Enlarged fonts for book detail pages */
.book-info-hero h1 {
  font-size: 42px;
}

.book-info-hero .tagline {
  font-size: 20px;
}

.book-info-hero .price {
  font-size: 22px;
}

.buy-btn {
  font-size: 18px;
  padding: 14px 28px;
}

/* Slightly larger headings inside the content */
.book-content h2, .book-content h3 {
  font-size: 24px;
}

.book-content p, .book-content li {
  font-size: 17px;
}


/* NAVIGATION ACTIVE STATE (yellow highlight) */
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a.active {
  color: #f5c842;
}





.hero {
  background: url('hero-dark-below.png') no-repeat center center/cover;
  min-height: 90vh;
  padding: 120px 20px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 60px;
  color: #f5c842;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero button {
  background: #f5c842;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #ffffff;
  color: #000000;
}

.hero {
  background: url('hero-dark-below.png') no-repeat center center/cover;
  min-height: 100vh;
  padding: 200px 20px 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 70px;
  color: #f5c842;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 35px;
}

.hero button {
  background: #f5c842;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero button:hover {
  background: #fff;
  color: #000;
}

.hero {
  background: url('hero-dark-below.png') no-repeat center center/cover;
  min-height: 100vh;
  padding: 200px 20px 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 70px;
  color: #f5c842;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 35px;
}

.hero button {
  background: #f5c842;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero button:hover {
  background: #fff;
  color: #000;
}


/* Make the hero button more compact */
.hero button {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

/* Enlarge book card images in shop */
.book-card {
  width: 320px;
}

.book-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: auto;
}


.about-section {
  padding: 100px 20px;
  background-color: #111;
  text-align: center;
  color: #fff;
}

.about-section h2 {
  font-size: 42px;
  color: #f5c842;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
}

.testimonial-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-gallery img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.testimonial-gallery img:hover {
  transform: scale(1.03);
}


.testimonial-slider {
  width: 100%;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
}

.testimonial-slider .slides {
  display: flex;
  width: 400%;
  animation: slide 20s infinite ease-in-out;
}

.testimonial-slider img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

@keyframes slide {
  0%   { transform: translateX(0%); }
  25%  { transform: translateX(0%); }
  30%  { transform: translateX(-100%); }
  55%  { transform: translateX(-100%); }
  60%  { transform: translateX(-200%); }
  85%  { transform: translateX(-200%); }
  90%  { transform: translateX(-300%); }
  100% { transform: translateX(-300%); }
}


.testimonial-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: thin;
}

.testimonial-scroll img {
  flex: 0 0 auto;
  width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.testimonial-scroll img:hover {
  transform: scale(1.03);
}

.vip-

.vip-footer h2 {
  font-size: 40px;
  color: #f5c842;
  margin-bottom: 15px;
}

.vip-footer p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vip-footer .vip-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #f5c842;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.vip-footer .vip-btn:hover {
  background-color: #fff;
}


.testimonial-scroll {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: thin;
}

.testimonial-scroll img {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.testimonial-scroll img:hover {
  transform: scale(1.05);
}

.copyright-


.copyright-

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 150px;
}


.copyright-

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 150px;
}



/* Modern footer styles */
footer.modern-

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-left h2, .footer-right h3 {
  margin-bottom: 10px;
}

.footer-icon {
  height: 40px;
  margin: 5px;
}

.email-contact {
  font-size: 1.1em;
  color: white;
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.9em;
  color: #ccc;
}


.footer-logo img {
    height: 48px !important;
    width: auto !important;
}

.footer-links a {
    font-size: 12px !important;
    line-height: 1.4 !important;
    display: block;
    margin-bottom: 2px !important;
}

.footer-email {
    font-size: 13px;
    margin-top: 4px;
}


.footer-security img {
    height: 42px !important;
    width: auto !important;
}

.footer-links {
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
}

.footer-links a {
    font-size: 12px !important;
    display: block;
    margin-bottom: 1px !important;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2px !important; /* minimal spacing */
    margin-bottom: 0 !important;
}

.footer-links a {
    font-size: 12px !important;
    font-weight: bold;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-security img {
    height: 56px !important;
    width: auto !important;
    display: inline-block;
}


.footer-logo img {
    height: 72px !important;
    width: auto !important;
}

.footer-security img {
    height: 84px !important;
    width: auto !important;
}


.vip-blend-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #111);
    height: 200px;
    width: 100%;
    display: block;
    position: relative;
    z-index: 0;
}


.vip-blend-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #111);
    height: auto;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.vip-blend-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), #111);
    padding: 60px 20px 80px;
    text-align: center;
}

.vip-blend-section .vip-title {
    color: #FFD700;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vip-blend-section .vip-desc {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 20px;
}

.vip-blend-section .vip-button {
    background-color: #FFD700;
    color: #111;
    padding: 12px 26px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.vip-blend-section .vip-button:hover {
    background-color: #e6c200;
}


.back-button {
  display: inline-block;
  margin: 20px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background-color: #000;
  padding: 10px 15px;
  border-radius: 8px;
}



.book-label {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.book-card:hover .book-label {
  opacity: 1;
}





footer {
  font-family: 'Montserrat', sans-serif !important;
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

.rich-footer {
  background: linear-gradient(to top, #000000 7%, #8c6f14);
  color: #fff;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}
.footer-left, .footer-center, .footer-right {
  flex: 1 1 250px;
}
.footer-left h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-left p, .footer-right p {
  margin: 5px 0;
}
.footer-center img {
  max-height: 30px;
  margin: 5px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #ccc;
}
.social-icons i {
  font-size: 20px;
  margin-top: 10px;
  color: white;
}


/* Stil za sniženu cijenu */


.price-sale {
  background: #f5c842;
  color: #000;
  font-weight: bold;
  font-size: 17px;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 2px;
}







.footer-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-payment-icons img {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-payment-icons img[alt="Visa"],
.footer-payment-icons img[alt="MasterCard"] {
    height: 45px;
}

.footer-payment-icons img[alt="PayPal"] {
    height: 55px;
}

.footer-payment-icons img[alt="SSL Secure"] {
    height: 60px;
}

.footer-payment-icons img:hover {
    transform: scale(1.05);
}

/* Mobile friendly adjustments */
@media (max-width: 600px) {
    .footer-payment-icons {
        gap: 15px;
    }

    .footer-payment-icons img {
        height: 36px !important;
    }
}



.footer-cta {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 25px 15px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
}

.footer-cta .highlight {
    color: #f2d200; /* žuta */
}

.footer-cta .dim {
    color: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .footer-cta {
        font-size: 19px;
        padding: 20px 10px;
    }
}



.hero-transition-bg {
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('book-blur.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 180px;
}

@media (max-width: 600px) {
    .hero-transition-bg {
        height: 100px;
    }
}


.about-core {
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('book-blur.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 20px;
}



.about-core {
    position: relative;
    overflow: hidden;
}

.about-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0a0a0a 100%);
    pointer-events: none;
}



/* ANIMACIJE */

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

.fade-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.fade-up-delayed {
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.cta-button:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 255, 0, 0.2);
}

.cta-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make sure text animations work on small screens */
@media (max-width: 600px) {
  .fade-up {
    animation-duration: 0.8s;
  }
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}
.price del {
  color: #888;
  margin-right: 8px;
  font-size: 15px;
  text-decoration: line-through;
}

.price span {
  background: linear-gradient(to right, #222, #444);
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}

.nav-link.active {
  color: #facc15 !important;
  border-bottom: 2px solid #facc15;
}

.nav-link:hover {
  color: #facc15 !important;
  border-bottom: 2px solid #facc15;
}

.promo-banner {
  background-color: #facc15;
  color: black;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease-in-out;
}

.promo-banner a {
  color: black;
  text-decoration: underline;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Add to bag button style for all book pages */
.buy-btn#addToBagBtn {
  min-width: 120px !important;
  width: auto !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}
