.elementor-14644 .elementor-element.elementor-element-2224ec6{margin-top:-60px;margin-bottom:0px;}@media(max-width:767px){.elementor-14644 .elementor-element.elementor-element-2224ec6{margin-top:0px;margin-bottom:0px;}}/* Start custom CSS for html, class: .elementor-element-58d116a *//* ===============================
   FOREST RIBBON (MATHAVARA × COORG)
================================= */
.zf-ribbon.forest {
  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 16px 0;

  background:
    radial-gradient(circle at 25% 10%, rgba(180,220,200,0.18), transparent 40%),
    linear-gradient(
      180deg,
      #5f8f7a 0%,
      #3f6f5a 35%,
      #2e4f3c 70%,
      #1a2b22 100%
    );

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}

/* ===============================
   EDGE FADE
================================= */
.zf-ribbon.forest .fade-left,
.zf-ribbon.forest .fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.zf-ribbon.forest .fade-left {
  left: 0;
  background: linear-gradient(to right,#1a2b22 45%, transparent);
}

.zf-ribbon.forest .fade-right {
  right: 0;
  background: linear-gradient(to left,#1a2b22 45%, transparent);
}

/* ===============================
   TRACK
================================= */
.zf-ribbon.forest .zf-ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;

  animation: zfForestScroll 36s linear infinite;
}

.zf-ribbon.forest:hover .zf-ribbon-track {
  animation-play-state: paused;
}

/* ===============================
   PILLS
================================= */
.zf-ribbon.forest .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0 10px;
  padding: 8px 18px;

  border-radius: 999px;

  font-size: 12.6px;
  font-weight: 500;
  letter-spacing: 0.2px;

  white-space: nowrap;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);

  color: #cfe7dc;

  backdrop-filter: blur(8px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.35);

  transition: all 0.25s ease;
}

/* ===============================
   HOVER
================================= */
.zf-ribbon.forest .pill:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* ===============================
   SCROLL ANIMATION
================================= */
@keyframes zfForestScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 600px) {
  .zf-ribbon.forest {
    padding: 12px 0;
  }

  .zf-ribbon.forest .pill {
    padding: 6px 14px;
    font-size: 11.5px;
    margin: 0 8px;
  }

  .zf-ribbon.forest .fade-left,
  .zf-ribbon.forest .fade-right {
    width: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-6b5e1fc *//* ===============================
   BASE CARD
================================= */
.coffee-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 26px;
  color: #ffffff;
  width: 100%;
  max-width: 720px;
  margin: 20px auto;

  background: linear-gradient(145deg, #1d211a 0%, #3e2b1f 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);

  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===============================
   LEFT SIDE
================================= */
.coffee-left {
  flex: 1.2;
}

.coffee-left h3 {
  font-size: 34px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ===============================
   TAG + ROAST (LOCKED ALIGNMENT)
================================= */
.tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 KEY */
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: nowrap; /* 🔥 PREVENT BREAK */
}

/* Tag stays left */
.tag {
  flex-shrink: 0; /* 🔥 prevent squeeze */
}

/* Roast always right */
.roast {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0; /* 🔥 prevent wrap */
}

/* Beans fixed size */
.bean-img {
  width: 16px;
  height: 22px;
  flex: 0 0 auto;

  opacity: 0.25;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Hover animation */
.bean-img {
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.roast:hover .bean-img {
  transform: scale(1.05);
}

/* Active beans */
.roast[data-roast="very-light"] .bean-img:nth-child(-n+1),
.roast[data-roast="light"] .bean-img:nth-child(-n+2),
.roast[data-roast="medium-light"] .bean-img:nth-child(-n+3),
.roast[data-roast="medium"] .bean-img:nth-child(-n+4),
.roast[data-roast="medium-dark"] .bean-img:nth-child(-n+5),
.roast[data-roast="dark"] .bean-img:nth-child(-n+6),
.roast[data-roast="very-dark"] .bean-img:nth-child(-n+7) {
  opacity: 1;
  filter: none;
}

/* ===============================
   NOTES
================================= */
.notes {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* ===============================
   BARS
================================= */
.bar-container {
  margin-bottom: 14px;
}

.bar-label {
  font-size: 12px;
  margin-bottom: 6px;
}

.track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #f5e6d3, #d8b892);
}

/* widths */
.w90 { width: 90%; }
.w85 { width: 85%; }
.w80 { width: 80%; }
.w75 { width: 75%; }
.w70 { width: 70%; }
.w60 { width: 60%; }
.w50 { width: 50%; }
.w40 { width: 40%; }

/* ===============================
   INFO BOX
================================= */
.info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.info-label {
  color: #d8b892;
  font-weight: 600;
}

.info-value {
  color: #fff;
}

.info-desc {
  grid-column: 2;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
}

/* ===============================
   COFFEE STORY (WHITE CARD)
================================= */
.coffee-story {
  margin: 20px auto;
  max-width: 720px;
  padding: 20px 22px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);

  color: #222222;
  font-size: 13.5px;
  line-height: 1.6;
}

.story-title {
  font-size: 14px;
  font-weight: 600;
  color: #b38b5d;
  margin-bottom: 10px;
}

.story-highlight {
  margin-top: 8px;
  font-weight: 500;
  color: #000;
}

/* ===============================
   WILDWOOD THEME (PINK RESTORED)
================================= */
.coffee-card.wildwood {
  background: linear-gradient(135deg, #2b0f18, #5a1e2c, #a13a52);
}

.coffee-card.wildwood .tag {
  background: #ffd6de;
  color: #5a1e2c;
}

.coffee-card.wildwood .fill {
  background: linear-gradient(90deg, #ffffff, #ff9fb2);
}

.coffee-card.wildwood .info-label {
  color: #ffb3c1;
}

/* ===============================
   BANANA THEME
================================= */
.coffee-card.banana {
  background: linear-gradient(135deg,#f4c542,#d89b2b);
  color: #3a2b00;
}

.coffee-card.banana .tag {
  background: #fff2b3;
  color: #5a4200;
}

.coffee-card.banana .notes {
  color: #5a4200;
}

.coffee-card.banana .track {
  background: rgba(0,0,0,0.15);
}

.coffee-card.banana .fill {
  background: linear-gradient(90deg,#ffffff,#ffcc33);
}

.coffee-card.banana .info-label {
  color: #5a4200;
}

.coffee-card.banana .info-value {
  color: #3a2b00;
}

.coffee-card.banana .info-desc {
  color: rgba(0,0,0,0.7);
}

/* ===============================
   VANILLA WHISPERS THEME
================================= */
.coffee-card.vanilla {
  background: linear-gradient(135deg, #c79aa0, #b07c82, #8e5e63);
  color: #fff7f5;
}

/* TAG */
.coffee-card.vanilla .tag {
  background: #f3e5e7;
  color: #6b4a4f;
}

/* NOTES */
.coffee-card.vanilla .notes {
  color: rgba(255,255,255,0.9);
}

/* BARS */
.coffee-card.vanilla .track {
  background: rgba(255,255,255,0.18);
}

.coffee-card.vanilla .fill {
  background: linear-gradient(90deg, #ffffff, #f5c6cb);
}

/* INFO BOX */
.coffee-card.vanilla .info-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* INFO TEXT */
.coffee-card.vanilla .info-label {
  color: #f5c6cb;
}

.coffee-card.vanilla .info-value {
  color: #ffffff;
}

.coffee-card.vanilla .info-desc {
  color: rgba(255,255,255,0.85);
}

/* ===============================
   COMBO (SPICED INDULGENCE)
================================= */
.coffee-card.combo {
  background: linear-gradient(135deg, #3b2418, #8c4b2f, #e67e22);
  color: #fff5e6;
}

/* TAG */
.coffee-card.combo .tag {
  background: #f3e0c7;
  color: #3b2418;
}

/* NOTES */
.coffee-card.combo .notes {
  color: rgba(255,255,255,0.9);
}

/* BARS */
.coffee-card.combo .track {
  background: rgba(255,255,255,0.15);
}

.coffee-card.combo .fill {
  background: linear-gradient(90deg, #ffffff, #ffd2a3);
}

/* INFO BOX */
.coffee-card.combo .info-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* INFO TEXT */
.coffee-card.combo .info-label {
  color: #ffd2a3;
}

.coffee-card.combo .info-value {
  color: #ffffff;
}

.coffee-card.combo .info-desc {
  color: rgba(255,255,255,0.85);
}

/* ===============================
   ORIGIN DUO THEME
================================= */
.coffee-card.origin-duo {
  background: linear-gradient(135deg, #1b2b24, #2f5a4a, #6fa38f);
  color: #eaf6f2;
}

/* TAG */
.coffee-card.origin-duo .tag {
  background: #dff3ec;
  color: #1f3a30;
}

/* NOTES */
.coffee-card.origin-duo .notes {
  color: rgba(255,255,255,0.9);
}

/* BARS */
.coffee-card.origin-duo .track {
  background: rgba(255,255,255,0.15);
}

.coffee-card.origin-duo .fill {
  background: linear-gradient(90deg, #ffffff, #bfe8db);
}

/* INFO BOX */
.coffee-card.origin-duo .info-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* INFO TEXT */
.coffee-card.origin-duo .info-label {
  color: #bfe8db;
}

.coffee-card.origin-duo .info-value {
  color: #ffffff;
}

.coffee-card.origin-duo .info-desc {
  color: rgba(255,255,255,0.85);
}
/* ===============================
   MOBILE
================================= */
@media (max-width: 600px) {

  .coffee-card {
    flex-direction: column;
    padding: 18px;
  }

  .coffee-left h3 {
    font-size: 26px;
  }

  .bean-img {
    width: 14px;
    height: 20px;
  }

  .notes {
    font-size: 12px;
  }

  .track {
    height: 5px;
  }

  .coffee-story {
    padding: 16px;
    font-size: 12.5px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-41f68a9 *//* ===============================
   BASE CARD (SHARED SYSTEM)
================================= */
.coffee-card {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  margin: 20px auto;

  background: linear-gradient(145deg, #1d211a 0%, #3e2b1f 100%);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);

  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===============================
   LEFT SIDE
================================= */
.coffee-left {
  flex: 1.2;
}

.coffee-left h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* TAG + ROAST ROW */
.tag-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tag {
  background: #d8b892;
  color: #1a221b;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* ===============================
   ROAST METER
================================= */
.roast {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.bean-img {
  width: 18px;
  height: 24px;
  opacity: 0.25;
  filter: grayscale(100%);
}

/* Active beans (data driven) */
.roast[data-roast="very-light"] .bean-img:nth-child(-n+1),
.roast[data-roast="light"] .bean-img:nth-child(-n+2),
.roast[data-roast="medium-light"] .bean-img:nth-child(-n+3),
.roast[data-roast="medium"] .bean-img:nth-child(-n+4),
.roast[data-roast="medium-dark"] .bean-img:nth-child(-n+5),
.roast[data-roast="dark"] .bean-img:nth-child(-n+6),
.roast[data-roast="very-dark"] .bean-img:nth-child(-n+7) {
  opacity: 1;
  filter: none;
}

/* ===============================
   NOTES
================================= */
.notes {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}

/* ===============================
   BARS
================================= */
.bar-container {
  margin-bottom: 18px;
}

.bar-label {
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

.track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #d8b892);
  border-radius: 10px;
}

/* widths */
.w90 { width: 90%; }
.w80 { width: 80%; }
.w75 { width: 75%; }
.w50 { width: 50%; }
.w40 { width: 40%; }

/* ===============================
   RIGHT SIDE
================================= */
.coffee-right {
  flex: 0.8;
}

/* ===============================
   INFO BOX (ALIGNED)
================================= */
.info-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.info-label {
  color: #d8b892;
  font-weight: 600;
}

.info-value {
  color: #ffffff;
}

.info-desc {
  grid-column: 2;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===============================
   STORY CARD (BLACK TEXT)
================================= */
.coffee-story {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  color: #222;
  font-size: 13.5px;
  line-height: 1.6;
}

.story-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.story-highlight {
  margin-top: 10px;
  font-weight: 500;
  color: #000;
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 600px) {
  .coffee-card {
    flex-direction: column;
    padding: 25px;
  }

  .coffee-left h2 {
    font-size: 30px;
  }

  .bean-img {
    width: 14px;
    height: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-0b1aaa4 *//* ===============================
   BASE CARD (SHARED SYSTEM)
================================= */
.coffee-card {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  margin: 20px auto;

  background: linear-gradient(145deg, #1d211a 0%, #3e2b1f 100%);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);

  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===============================
   LEFT SIDE
================================= */
.coffee-left {
  flex: 1.2;
}

.coffee-left h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* TAG + ROAST ROW */
.tag-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tag {
  background: #d8b892;
  color: #1a221b;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* ===============================
   ROAST METER
================================= */
.roast {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.bean-img {
  width: 18px;
  height: 24px;
  opacity: 0.25;
  filter: grayscale(100%);
}

/* Active beans (data driven) */
.roast[data-roast="very-light"] .bean-img:nth-child(-n+1),
.roast[data-roast="light"] .bean-img:nth-child(-n+2),
.roast[data-roast="medium-light"] .bean-img:nth-child(-n+3),
.roast[data-roast="medium"] .bean-img:nth-child(-n+4),
.roast[data-roast="medium-dark"] .bean-img:nth-child(-n+5),
.roast[data-roast="dark"] .bean-img:nth-child(-n+6),
.roast[data-roast="very-dark"] .bean-img:nth-child(-n+7) {
  opacity: 1;
  filter: none;
}

/* ===============================
   NOTES
================================= */
.notes {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}

/* ===============================
   BARS
================================= */
.bar-container {
  margin-bottom: 18px;
}

.bar-label {
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

.track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #d8b892);
  border-radius: 10px;
}

/* widths */
.w90 { width: 90%; }
.w80 { width: 80%; }
.w75 { width: 75%; }
.w50 { width: 50%; }
.w40 { width: 40%; }

/* ===============================
   RIGHT SIDE
================================= */
.coffee-right {
  flex: 0.8;
}

/* ===============================
   INFO BOX (ALIGNED)
================================= */
.info-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.info-label {
  color: #d8b892;
  font-weight: 600;
}

.info-value {
  color: #ffffff;
}

.info-desc {
  grid-column: 2;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===============================
   STORY CARD (BLACK TEXT)
================================= */
.coffee-story {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  color: #222;
  font-size: 13.5px;
  line-height: 1.6;
}

.story-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.story-highlight {
  margin-top: 10px;
  font-weight: 500;
  color: #000;
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 600px) {
  .coffee-card {
    flex-direction: column;
    padding: 25px;
  }

  .coffee-left h2 {
    font-size: 30px;
  }

  .bean-img {
    width: 14px;
    height: 20px;
  }
}/* End custom CSS */