/* Book Showcase Section */
.book-showcase {
  text-align: center;
  padding: 40px 0;
}

/* Book Image Hover Effect */
.book-showcase .elementor-widget-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 6px solid #ddd1bb; /* default border (blue) */
  border-radius: 6px;
}

.book-showcase .elementor-widget-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-color: #a52a2a; /* red border on hover */
}

/* Buttons Styling */
.book-showcase .elementor-button {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Kindle Button (red) */
.book-showcase .elementor-button:first-of-type {
  background-color: #a52a2a;
  color: #fff;
  margin-right: 10px;
}

.book-showcase .elementor-button:first-of-type:hover {
  background-color: #7a1e1e; /* darker red */
}

/* Paperback Button (blue) */
.book-showcase .elementor-button:last-of-type {
  background-color: #ddd1bb;
  color: #fff;
}

.book-showcase .elementor-button:last-of-type:hover {
  background-color: #15285e; /* darker blue */
}

/* Description Text */
.book-showcase .elementor-widget-text-editor {
  margin-top: 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
