.lm-story-block {
  background: #eee2da;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lm-story-title {
  font-family: 'Domine', sans-serif;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.lm-story-block p {
  margin-bottom: 1rem;
  color: var(--brand-text);
  line-height: 1.75;
  font-size: 1rem;
}
.lm-highlight-block {
  background: white;
  border-left: 4px solid #512810;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lm-highlight-quote {
  font-family: 'Domine', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #512810;
  line-height: 1.4;
}

.lm-highlight-note {
  font-size: 0.95rem;
  opacity: 0.85;
  color: #000;
  line-height: 1.65;
}

/* ----------------------------------------------- */
/* LORANDO & MORINI — SEASONAL BANNER WIDGET       */
/* ----------------------------------------------- */

.banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: #FEFCF8; 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  align-items: stretch;
}

.banner--seasonal {
  background: #FEFCF8;
}

/* Left content area */
.banner-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eee2da
}

.banner-content .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #512810; 
  display: inline-block;
}

.banner-content h3 {
  font-family: 'Domine', sans-serif;
  color: #512810; 
  font-size: 1.9rem;
}

.banner-content p {
  color: var(--brand-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Buttons */
.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Right image area */
.banner-visual {
  background: #eee2da;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-visual img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  object-fit: contain;
}

/* ----------------------------------------------- */
/* RESPONSIVE                                      */
/* ----------------------------------------------- */

@media (max-width: 700px) {
  .banner {
    grid-template-columns: 1fr;
  }

  .banner-content {
    padding: 2rem;
  }

  .banner-visual {
    padding: 1.5rem;
  }
}

/* ---------------------------------------------------
   FULL IMAGE HERO SLIDER (LORANDO & MORINI)
--------------------------------------------------- */

.lm-home-slider-full {
  width: 100%;
  height: 600px; /* full screen hero */
  position: relative;
  border-radius: 10px;
}

/* Each slide uses background image */
.lm-slide-full {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* Optional dark overlay for readability */
.lm-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Centered content */
.lm-slide-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

/* Text styling */
.lm-full-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.lm-full-title {
  font-family: 'Domine', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FEFCF8; 
}

.lm-full-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #FEFCF8; 
}

/* Button row */
.lm-full-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Override buttons for dark background */
.btn-primary {
  background: #BD9E67;  
  color: #512810; 
}

.btn-outline {
  border-color: #FEFCF8;
  color: #FEFCF8;
}

.btn-outline:hover {
  background: #BD9E67;  
  color: white;
  border-color: #BD9E67;  
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #BD9E67;  
}
/* ---------------------------
   FLIP LAYOUT FEATURE
   (image left, text right)
---------------------------- */

.banner--flip {
  direction: rtl; /* trick: reverses flex/grid order */
}

.banner--flip .banner-content,
.banner--flip .banner-visual {
  direction: ltr; /* fix text direction */
}
/* ---------------------------------------------------
   LORANDO & MORINI — REVIEW SLIDER
--------------------------------------------------- */

.lm-review-slider {
  width: 100%;
  padding: 2rem 0;
}

.lm-review-slide {
  display: flex;
  justify-content: center;
}

.lm-review-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 2rem;
  max-width: 420px;
  text-align: center;
  position: relative;
}

.lm-review-avatar img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border: 3px solid #FEFCF8; 
}

.lm-review-rating {
  color: #f3b31a;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.lm-review-text {
  font-style: italic;
  color: #4b3b35;
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.lm-review-author {
  color: #512810; 
  font-weight: 600;
}

.lm-review-location {
  color: #6b5e55;
  font-weight: 400;
}

.lm-review-roast {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #BD9E67;
}

/* Swiper UI */
.swiper-button-next,
.swiper-button-prev {
  color: v#512810; 
}

.swiper-pagination-bullet {
  background: #512810; 
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #BD9E67;
  opacity: 1;
}
