.elementor-6597 .elementor-element.elementor-element-e6beb23{margin-top:-74px;margin-bottom:0px;}@media(max-width:767px){.elementor-6597 .elementor-element.elementor-element-520bfd2{width:initial;max-width:initial;}.elementor-6597 .elementor-element.elementor-element-520bfd2 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-6597 .elementor-element.elementor-element-7d75675{width:initial;max-width:initial;}.elementor-6597 .elementor-element.elementor-element-7d75675 > .elementor-widget-container{margin:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-0d242b6 *//* ===============================
   COORG RIBBON (BASE)
================================= */
.coorg-ribbon {
  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 16px 0;

  background: linear-gradient(
    135deg,
    #3e5f3a 0%,
    #1e2f1c 100%
  );

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

/* ===============================
   EDGE FADE
================================= */
.coorg-ribbon .fade-left,
.coorg-ribbon .fade-right {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.coorg-ribbon .fade-left {
  left: 0;
  background: linear-gradient(to right, #1e2f1c 40%, transparent);
}

.coorg-ribbon .fade-right {
  right: 0;
  background: linear-gradient(to left, #1e2f1c 40%, transparent);
}

/* ===============================
   TRACK (SMOOTH SCROLL)
================================= */
.coorg-ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;

  animation: coorgScroll 38s linear infinite;
}

/* ===============================
   PILLS (PREMIUM BLENDED STYLE)
================================= */
.coorg-ribbon .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0 10px;
  padding: 8px 18px;

  border-radius: 999px;

  font-family: "Inter", system-ui, sans-serif;
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 0.25px;

  white-space: nowrap;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);

  color: #e6f1eb;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.12);

  transition: all 0.25s ease;
}

/* ===============================
   SUBTLE FLAVOUR COLOR HINTS
================================= */
.coorg-ribbon .pill.citrus   { color: #f0e39a; }
.coorg-ribbon .pill.fruit    { color: #eab29a; }
.coorg-ribbon .pill.honey    { color: #f2cf7a; }
.coorg-ribbon .pill.floral   { color: #d8c4e0; }
.coorg-ribbon .pill.clean    { color: #b8ded0; }
.coorg-ribbon .pill.origin   { color: #e6f1eb; }
.coorg-ribbon .pill.brew     { color: #bfe3db; }
.coorg-ribbon .pill.altitude { color: #b8e0c8; }

/* ===============================
   HOVER (SUBTLE PREMIUM)
================================= */
.coorg-ribbon .pill:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

/* ===============================
   SCROLL ANIMATION
================================= */
@keyframes coorgScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.coorg-ribbon:hover .coorg-ribbon-track {
  animation-play-state: paused;
}

/* ===============================
   RESPONSIVE (MOBILE TUNING)
================================= */
@media (max-width: 600px) {
  .coorg-ribbon {
    padding: 12px 0;
  }

  .coorg-ribbon .pill {
    padding: 6px 14px;
    font-size: 11.8px;
    margin: 0 8px;
  }

  .coorg-ribbon .fade-left,
  .coorg-ribbon .fade-right {
    width: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-635d476 *//* ===============================
   BASE VARIABLE SYSTEM
================================= */
.coffee-card {
  --bg-gradient: linear-gradient(145deg, #1d211a, #3e2b1f);
  --text-main: #ffffff;
  --text-soft: rgba(255,255,255,0.75);
  --accent: #d8b892;
  --tag-bg: #ffffff;
  --tag-text: #000000;
  --bar-gradient: linear-gradient(90deg, #f5e6d3, #d8b892);

  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 26px;

  color: #ffffff; /* fallback */
  color: var(--text-main);

  width: 100%;
  max-width: 720px;
  margin: 20px auto;

  background: linear-gradient(145deg, #1d211a, #3e2b1f); /* fallback */
  background: var(--bg-gradient);

  box-shadow: 0 20px 40px rgba(0,0,0,0.35);

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  font-family: 'Segoe UI', Roboto, sans-serif;
 position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* subtle gradient glow overlay */
.coffee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover interaction */
.coffee-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.coffee-card:hover::before {
  opacity: 1;
}

/* LEFT */
.coffee-left { flex: 1.2; }

.coffee-left h3 {
  font-size: 34px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* TAG ROW */
.tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 🔥 FIX */
  margin-bottom: 16px;
}

.tag {
  background: #ffffff; /* fallback */
  background: var(--tag-bg);

  color: #000000; /* fallback */
  color: var(--tag-text);

  padding: 5px 12px; /* slightly increased */
  border-radius: 10px;
  font-weight: 500;
  font-size: 12px;
}

/* ROAST */
.roast {
  display: flex;
  align-items: center;
  transform: translateY(1px);
  gap: 2px;
  line-height: 0; /* 🔥 removes vertical shift */
}

.bean-img {
  width: 16px;
  height: 22px;
  opacity: 0.25;
  filter: grayscale(100%);
}

.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;
}

/* TEXT */
.notes {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  color: var(--text-soft);
  margin-bottom: 16px; /* 🔥 FIX */
  line-height: 1.5;
}
/* BARS */
.bar-container { margin-bottom: 14px; }
.bar-container:first-of-type {
  margin-top: 12px; /* 🔥 THIS FIXES YOUR ISSUE */
}

.bar-label { font-size: 12px; }

.track {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
}

.fill {
   height: 100%;
  border-radius: 10px; /* 🔥 smooth premium finish */
  background: linear-gradient(90deg, #f5e6d3, #d8b892); /* fallback */
  background: var(--bar-gradient);
}

/* WIDTHS */
.w90 { width: 90%; }
.w85 { width: 85%; }
.w80 { width: 80%; }
.w75 { width: 75%; }
.w70 { width: 70%; }
.w60 { width: 60%; }
.w50 { width: 50%; }

/* INFO */
.info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 14px;
  border-radius: 16px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px 10px; /* 🔥 spacing fix */
  align-items: start;
}
.info-label {
  color: #d8b892; /* fallback */
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  font-weight: 600;
}

.info-value {
  color: #ffffff; /* fallback */
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.info-desc {
  color: rgba(255,255,255,0.75); /* fallback */
  color: var(--text-soft);
  font-size: 9px;
  grid-column: 2;
  font-size: 12px;
  line-height: 1.5;
  
}

/* ===============================
   SINGLE PRODUCT THEMES
================================= */

/* 🌶 Wildwood */
.coffee-card.wildwood {
  --bg-gradient: linear-gradient(135deg, #2b0f18, #5a1e2c, #a13a52);
  --accent: #ffb3c1;
  --tag-bg: #ffd6de;
  --tag-text: #5a1e2c;
  --bar-gradient: linear-gradient(90deg, #ffffff, #ff9fb2);
  
}

/* 🍌 Banana */
.coffee-card.banana {
  --bg-gradient: linear-gradient(135deg, #c6922f, #e0a93d, #b67f1f);

  --text-main: #3a2b00;
  --text-soft: rgba(58,43,0,0.75);

  --accent: #5a4200;

  --tag-bg: #fff2b3;
  --tag-text: #5a4200;

  --bar-gradient: linear-gradient(90deg,#fff7cc,#ffcc33);
  
}


/* 🌿 Coorg */
.coffee-card.coorg {
  --bg-gradient: linear-gradient(135deg, #0f2b24, #1f5a4d, #3aa58c);
  --accent: #9fe3d3;
  --tag-bg: #d6fff5;
  --tag-text: #1f5a4d;
  --bar-gradient: linear-gradient(90deg,#ffffff,#7be0c5);
}

/* 🥭 Mango */
.coffee-card.mango {
  --bg-gradient: linear-gradient(135deg, #ffb347, #ff6a00);
  --text-main: #2b1a00;
  --text-soft: rgba(0,0,0,0.7);
  --accent: #7a3e00;
  --tag-bg: #ffe0b3;
  --tag-text: #7a3e00;
  --bar-gradient: linear-gradient(90deg,#ffffff,#ff9a3d);
}

/* 🍷 Bourbon */
.coffee-card.bourbon {
  --bg-gradient: linear-gradient(135deg, #2a1a14, #5a3b2e, #8b5e3c);
  --accent: #d6a87c;
  --tag-bg: #f3e2d3;
  --tag-text: #4a2c1f;
  --bar-gradient: linear-gradient(90deg,#ffffff,#c89b6d);
}

/* 🌸 Blossom */
.coffee-card.blossom {
  --bg-gradient: linear-gradient(135deg, #ff4f7a, #ff7ca3);
  --accent: #ffd1dc;
  --tag-bg: #ffe6ee;
  --tag-text: #7a1f3a;
  --bar-gradient: linear-gradient(90deg,#ffffff,#ff9ab5);
}

/* 🌰 Monsoon */
.coffee-card.monsoon {
  --bg-gradient: linear-gradient(135deg, #1f3a5f, #3f6fa5);
  --accent: #cce0ff;
  --tag-bg: #e6f0ff;
  --tag-text: #1f3a5f;
  --bar-gradient: linear-gradient(90deg,#ffffff,#8fb8ff);
}

/* 🍯 Honey */
.coffee-card.honey {
  --bg-gradient: linear-gradient(135deg, #3a2b00, #7a5a00, #caa200);
  --accent: #ffe680;
  --tag-bg: #fff4cc;
  --tag-text: #5a4200;
  --bar-gradient: linear-gradient(90deg,#ffffff,#ffd84d);
}

/* 🌲 Mathavara */
.coffee-card.mathavara {
  --bg-gradient: linear-gradient(135deg, #2f3e2f, #5a7a5a);
  --accent: #cde3cd;
  --tag-bg: #e6ffe6;
  --tag-text: #2f3e2f;
  --bar-gradient: linear-gradient(90deg,#ffffff,#a5d6a7);
}

/* ☕ Cappuccino */
.coffee-card.cappuccino {
  --bg-gradient: linear-gradient(135deg, #2e4a3f, #6fa88f);
  --accent: #d6f5ec;
  --tag-bg: #e6fff7;
  --tag-text: #2e4a3f;
}

/* 🪵 Rum Barrel */
.coffee-card.rum {
  --bg-gradient: linear-gradient(135deg, #3a1f14, #7a3b2e, #a65e3c);
  --accent: #ffccaa;
  --tag-bg: #ffe6d6;
  --tag-text: #4a2c1f;
}

/* 🧂 Cinnamon */
.coffee-card.cinnamon {
  --bg-gradient: linear-gradient(135deg, #6b2b1e, #c0562b, #ff8a3d);
  --accent: #ffd1b3;
  --tag-bg: #ffe6d6;
  --tag-text: #6b2b1e;
}

/* 🍬 Toddy */
.coffee-card.toddy {
  --bg-gradient: linear-gradient(135deg, #3a3a3a, #888888);
  --accent: #f2f2f2;
  --tag-bg: #eeeeee;
  --tag-text: #333333;
}

/* ===============================
   COMBO THEMES
================================= */

.coffee-card.monsoon-honey { --bg-gradient: linear-gradient(135deg, #3f6fa5, #caa200); }
.coffee-card.cinnamon-bourbon { --bg-gradient: linear-gradient(135deg, #c0562b, #8b5e3c); }
.coffee-card.blossom-rum { --bg-gradient: linear-gradient(135deg, #ff4f7a, #7a3b2e); }
.coffee-card.toddy-cinnamon { --bg-gradient: linear-gradient(135deg, #888888, #c0562b); }
.coffee-card.mathavara-coorg { --bg-gradient: linear-gradient(135deg, #3b4a2f, #1f5a4d); }
.coffee-card.bourbon-rum { --bg-gradient: linear-gradient(135deg, #5a3b2e, #a65e3c); }

/* ===============================
   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;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-520bfd2 *//* ===============================
   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-7d75675 *//* ===============================
   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 */