/** Shopify CDN: Minification failed

Line 238:14 Expected identifier but found whitespace
Line 238:16 Unexpected "{"
Line 238:25 Expected ":"
Line 238:59 Expected ":"
Line 239:17 Expected identifier but found whitespace
Line 239:19 Unexpected "{"
Line 239:28 Expected ":"
Line 239:65 Expected ":"
Line 247:10 Expected identifier but found whitespace
Line 247:11 Unexpected "0"
... and 3 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-section (INDEX:5) */
/* ============================================================
   RAS = Roy About Story — all classes scoped with ras- prefix
   to avoid conflicts with any theme styles.
   ============================================================ */

div#shopify-section-template--19444469596321__about_section_wYFW4J {
    overflow: hidden;
}
.ras-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
/* ----- Main column flex ----- */
.ras-main-flex {
  display: flex;
  flex-direction: column;
  gap: var(--ras-main-gap, 66px);
  width: 100%;
}

/* ----- Two-column top container ----- */
.ras-top-container {
  display: grid;
  grid-template-columns: 1fr 1fr;           /* equal halves on desktop */
  gap: var(--ras-col-gap, 60px);
  width: 100%;
  padding: 0;                                /* no horizontal padding — edge to edge */
  box-sizing: border-box;
  align-items: stretch;
}

/* ----- Image ----- */
.ras-image-wrapper {
  min-width: 0;
  overflow: hidden;
  /* Stretch to fill the full grid row height (matches right column) */
  display: flex;
  align-self: stretch;
}

.ras-image {
  width: 100%;
  display: block;
  object-fit: cover;        /* crop to fill without distortion */
  object-position: center;
  flex: 1;                  /* grow inside the flex wrapper */
}

.ras-placeholder-image {
  width: 100%;
  flex: 1;
  background-color: #f5f5f5;
}

/* ----- Text wrapper ----- */
.ras-text-wrapper {
  min-width: 0;
  display: flex;
   padding-right: 60px;
  flex-direction: column;
  /* No fixed gap — story block uses margin-top: auto to always sit at the bottom */
}

/* ----- Headline ----- */
.ras-headline {
  margin: 0 0 clamp(1rem, 2vw, 1.625rem) 0;
  white-space: pre-line;
  /* Fluid font: mobile → desktop via CSS custom props set inline */
  font-size: clamp(var(--ras-hl-mob, 1.75rem), 3.33vw, var(--ras-hl-desk, 3rem));
}

/* ----- Description ----- */
.ras-description {
  white-space: pre-line;
  font-size: clamp(var(--ras-desc-mob, 0.875rem), 1.25vw, var(--ras-desc-desk, 1.125rem));
}

/* ----- Story block: always pinned to the bottom of the text column ----- */
.ras-story-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;  /* pushes story block to bottom so its bottom aligns with image */
}

.ras-story-heading {
  margin: 0;
  font-size: clamp(var(--ras-sh-mob, 1.125rem), 1.67vw, var(--ras-sh-desk, 1.5rem));
}

.ras-story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ras-story-col-gap, 24px);
}

.ras-story-column {
  min-width: 0;
  white-space: pre-line;
  font-size: clamp(var(--ras-st-mob, 0.875rem), 1.25vw, var(--ras-st-desk, 1.125rem));
}

/* ----- Feature bar: FULL WIDTH, no horizontal padding on wrapper ----- */
.ras-feature-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  gap: var(--ras-fb-gap, 36px);
}

.ras-feature-item {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(var(--ras-feat-mob, 0.75rem), 1.25vw, var(--ras-feat-desk, 1.125rem));
  /* Fluid shrink via min-width 0 so items compress gracefully */
  min-width: 0;
  flex: 1 1 0;
}



/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  .ras-top-container {
    grid-template-columns: 1fr;             /* stack image above text */
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .ras-image {
    /* On stacked layout, give the image a sensible intrinsic height */
    min-height: clamp(18rem, 55vw, 37.5rem);
    max-height: clamp(18rem, 70vw, 40rem);
  }

  .ras-placeholder-image {
    min-height: clamp(18rem, 55vw, 37.5rem);
  }

  .ras-feature-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 3vw, 1.5rem);
  }

  .ras-feature-item {
    flex: 0 1 auto;
    white-space: normal;
  }


}

/* Mobile: up to 768px */
@media (max-width: 768px) {
  .ras-section {
    padding-top: clamp(1.5rem, 6vw, 2.5rem);
  }

  .ras-top-container {
    padding: 0;
  }

  .ras-headline {
    line-height: 1.25 !important;           /* override inline line-height on mobile */
  }

  .ras-story-columns {
    grid-template-columns: 1fr;             /* stack story columns */
    gap: clamp(1rem, 4vw, 1.5rem);
  }

  .ras-story-column {
    text-align: left !important;            /* justify looks poor on narrow columns */
  }

  .ras-feature-bar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ras-feature-item {
    font-size: clamp(0.7rem, 3.5vw, 0.875rem);
  }
}

/* Small phones: up to 480px */
@media (max-width: 480px) {
  .ras-feature-bar {
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 4vw, 1rem);
  }

  .ras-feature-item {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
  }
}
/* END_SECTION:about-section */

/* START_SECTION:blog-post-section (INDEX:14) */
.section-blog-posts {
  padding-top: {{ section.settings.section_padding_top }}px;
  padding-bottom: {{ section.settings.section_padding_bottom }}px;
  background-color: #FFFFFF;
}

.container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 {{ section.settings.container_padding_left_right }}px;
  box-sizing: border-box;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.blog-title {
  margin: 0;
  white-space: pre-line;
}

.view-all-btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  flex-shrink: 0;
}

.view-all-btn:hover {
  opacity: 0.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(var(--desktop-columns), 1fr);
  width: 100%;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-article-title {
  opacity: 0.75;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-link:hover .blog-image {
  transform: scale(1.02);
}

.placeholder-image {
  width: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.blog-content {
  display: flex;
  flex-direction: column;
}

.blog-date {
  display: block;
  line-height: 1.4;
}

.blog-article-title {
  margin: 0;
  transition: opacity 0.2s;
}

/* 2-line excerpt clamp — the key CSS */
.blog-excerpt {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* -webkit-line-clamp is set inline from section settings */
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(var(--tablet-columns), 1fr);
    gap: var(--tablet-gap) !important;
  }

  .blog-title {
    font-size: var(--title-tablet) !important;
  }

  .view-all-btn {
    font-size: var(--view-all-tablet) !important;
  }

  .blog-date {
    font-size: var(--date-tablet) !important;
  }

  .blog-article-title {
    font-size: var(--article-title-tablet) !important;
  }

  .blog-excerpt {
    font-size: var(--excerpt-tablet) !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(var(--mobile-columns), 1fr);
    gap: var(--mobile-gap) !important;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px !important;
  }

  .blog-title {
    font-size: var(--title-mobile) !important;
  }

  .view-all-btn {
    font-size: var(--view-all-mobile) !important;
    padding: 12px 20px !important;
  }

  .blog-date {
    font-size: var(--date-mobile) !important;
  }

  .blog-article-title {
    font-size: var(--article-title-mobile) !important;
  }

  .blog-excerpt {
    font-size: var(--excerpt-mobile) !important;
  }
}

@media (max-width: 480px) {
  .view-all-btn {
    width: 100%;
    text-align: center;
  }
}
/* END_SECTION:blog-post-section */

/* START_SECTION:page-cart (INDEX:41) */
.modern-cart-page {
  padding: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cart-main-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.cart-items-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.item-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.item-remove:hover {
  color: #000;
}

.item-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  grid-row: 1;
  grid-column: 1;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-column: 2;
  grid-row: 1;
}

.item-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.item-title a {
  color: #000;
  text-decoration: none;
}

.item-variant {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.item-price {
  font-size: 14px;
  color: #000;
  margin: 0;
  font-weight: 500;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 4px 8px;
  grid-column: 3;
  grid-row: 1;
}

.qty-btn {
  background: none !important;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  color: #000;
  border-radius: 4px;
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-input {
  width: 45px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #000;
}

.qty-input:focus {
  outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.item-total {
  text-align: right;
  grid-column: 4;
  grid-row: 1;
}

.item-total-price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.cart-summary-section {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-total {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.total-amount {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.total-note {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checkout-btn:hover {
  background: #333;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.empty-cart p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.continue-shopping-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cart-summary-section {
    position: static;
  }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .modern-cart-page {
    padding: 24px 0;
  }

  .cart-main-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-summary-section {
    position: static;
    order: -1;
    margin-bottom: 20px;
  }

  .cart-item-card {
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .item-image {
    width: 100px;
    height: 100px;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .item-details {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
  }

  .item-title {
    font-size: 14px;
  }

  .item-price {
    font-size: 13px;
  }

  .item-variant {
    font-size: 12px;
  }

  .item-quantity {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    gap: 6px;
    padding: 3px 6px;
  }

  .item-remove {
    top: 8px;
    right: 8px;
  }

  .item-total {
    grid-column: 2;
    grid-row: 2;
    grid-column-end: 3;
    justify-self: end;
  }

  .item-total-price {
    font-size: 14px;
  }

  .qty-input {
    width: 40px;
    font-size: 13px;
  }

  .qty-btn {
    padding: 4px;
  }

  .empty-cart {
    padding: 40px 20px;
  }

  .empty-cart h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .empty-cart p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Small mobile (below 480px) */
@media (max-width: 480px) {
  .cart-main-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .cart-item-card {
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 12px;
    margin-bottom: 10px;
  }

  .item-image {
    width: 80px;
    height: 80px;
  }

  .item-title {
    font-size: 13px;
  }

  .item-price {
    font-size: 12px;
  }

  .item-variant {
    font-size: 11px;
  }

  .item-quantity {
    gap: 4px;
    padding: 2px 4px;
  }

  .qty-input {
    width: 35px;
    font-size: 12px;
  }

  .item-remove svg {
    width: 18px;
    height: 18px;
  }

  .total-amount {
    font-size: 18px;
  }

  .total-label {
    font-size: 14px;
  }

  .checkout-btn {
    padding: 14px;
    font-size: 14px;
  }
}
/* END_SECTION:page-cart */

/* START_SECTION:product-template (INDEX:46) */
/* ═══════════════════════════════════════════════════════════
   ALL values here come from CSS custom properties defined in
   the <style> tag above — Liquid in {% stylesheet %} is NEVER
   executed. Use var(--pdp-*) for every settings-driven value.
═══════════════════════════════════════════════════════════ */
/* ── ROOT WRAPPER ── */
.pdp-root {
  padding-top: var(--pdp-margin-top, 0px);
  padding-bottom: var(--pdp-margin-bottom, 0px);
}
/* ── CENTERED CONTENT WRAP ── */
.pdp-wrap {
  max-width: var(--pdp-max-width, 1440px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pdp-pad-desktop, 40px);
  padding-right: var(--pdp-pad-desktop, 40px);
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}
/* ── TWO-COLUMN GRID ── */
.pdp-grid {
  display: grid;
  grid-template-columns: var(--pdp-grid-left, 45%) var(--pdp-grid-right, 55%);
  gap: var(--pdp-grid-gap, 60px);
  align-items: start;
}
/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}
.pdp-main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: visible;
}
.pdp-main-img {
  width: 100%; height: 100%;
  border: none; outline: none;
  display: block;
}
.pdp-main-img:focus,
.pdp-main-img:focus-visible,
.pdp-main-img:active { border: none; outline: none; }
.pdp-coffee-tag {
  position: absolute;
  top: var(--pdp-tag-top, -20px);
  right: var(--pdp-tag-right, -20px);
  width: var(--pdp-tag-w, 200px);
  height: var(--pdp-tag-h, 200px);
  z-index: 2;
  pointer-events: none;
}
.pdp-coffee-tag-img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1 / 1;
  background: #f0f4f8;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pdp-thumb:hover,
.pdp-thumb.is-active { border-color: #111; }
.pdp-thumb-img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* ═══════════════════════════════════════
   RIGHT COLUMN — DETAILS
═══════════════════════════════════════ */
.pdp-details { display: flex; flex-direction: column; padding-right: 40px}
/* Block spacing */
.pdp-title-block,
.pdp-meta-block,
.pdp-tasting-block,
.pdp-desc-block,
.pdp-price-block,
.pdp-grind-block,
.pdp-form-block,
.pdp-bullets-block,
.pdp-app-block {
  margin-bottom: 0;
}
/* Inline collapsible items */
.pdp-coll-item-inline {
  margin-bottom: 0;
  border-bottom: none;
}
/* Title */
.pdp-title {
  font-family: var(--pdp-title-font, 'Adamina', Georgia, serif);
  font-size: var(--pdp-title-size, 40px);
  color: var(--pdp-title-color, #111);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
/* Meta row */
.pdp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 12px;
  font-family: var(--pdp-meta-font, inherit);
  font-size: var(--pdp-meta-size, 14px);
  color: var(--pdp-meta-color, #888);
  line-height: 1.4;
}
.pdp-meta-left { font-weight: 500; }
.pdp-meta-right { text-align: right; }
/* Tasting notes */
.pdp-tasting {
  font-family: var(--pdp-meta-font, inherit);
  font-size: var(--pdp-meta-size, 14px);
  color: var(--pdp-meta-color, #888);
  margin-bottom: 12px;
  line-height: 1.5;
}
/* Divider */
.pdp-divider { border: none; border-top: 1px solid #e8e8e8; margin: 2px 0 14px; }
/* Description */
.pdp-desc {
  font-family: var(--pdp-desc-font, inherit);
  font-size: var(--pdp-desc-size, 14px);
  color: var(--pdp-desc-color, #444);
  line-height: 1.7;
  margin-bottom: 18px;
}
/* Price */
.pdp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.pdp-price {
  font-family: var(--pdp-price-font, inherit);
  font-size: var(--pdp-price-size, 32px);
  color: var(--pdp-price-color, #111);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.pdp-compare-price {
  font-size: 0.75em;
  text-decoration: line-through;
  color: #aaa;
}
/* Grind selector */
.pdp-grind-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 13px 0;
  margin-bottom: 20px;
  font-family: var(--pdp-meta-font, inherit);
  font-size: var(--pdp-meta-size, 14px);
  color: var(--pdp-meta-color, #888);
}
.pdp-grind-label { font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.pdp-grind-select-wrap { position: relative; display: flex; align-items: center; flex: 1; }
.pdp-grind-select {
  appearance: none; -webkit-appearance: none;
  border: none; background: transparent;
  font-size: inherit; font-family: inherit;
  font-weight: 500; color: inherit;
  cursor: pointer; padding-right: 22px; outline: none;
  width: 100%;
}
/* Subscription block */
.pdp-subscription {
  margin-bottom: 20px;
  font-family: var(--sub-body-font, inherit);
  font-size: var(--sub-body-size, 14px);
}
/* ── Subscription widget CSS vars pass-through ── */
.pdp-subscription [class*="purchase-option"][class*="title"],
.pdp-subscription [class*="po-title"] {
  font-size: 11px !important; font-weight: 600 !important;
  color: #999 !important; letter-spacing: 0.07em !important;
  text-transform: uppercase !important; margin: 0 0 10px !important;
  display: block !important;
}
.pdp-subscription [class*="purchase-type"],
.pdp-subscription [class*="purchase_type"],
.pdp-subscription [class*="plan-option"]:not(select):not(option),
.pdp-subscription [class*="selling-plan-option"],
.pdp-subscription [class*="subs-option"],
.pdp-subscription [class*="sub-option"] {
  border: 1px solid var(--sub-border, #e0e0e0) !important;
  border-radius: 4px !important; padding: 0 !important;
  margin-bottom: 10px !important; cursor: pointer !important;
  background: #fff !important;
  display: flex !important; flex-direction: column !important; overflow: hidden !important;
}
.pdp-subscription [class*="purchase-type"][class*="selected"],
.pdp-subscription [class*="purchase-type"][class*="active"],
.pdp-subscription [class*="plan-option"][class*="selected"],
.pdp-subscription [class*="subs-option"][class*="active"] {
  border-color: var(--sub-active-border, #111) !important;
  background: var(--sub-active-bg, #f9f9f9) !important;
}
.pdp-subscription [class*="purchase-type"] > label,
.pdp-subscription [class*="plan-option"] > label,
.pdp-subscription label:has(> input[type="radio"]),
.pdp-subscription label:has(input[type="radio"]) {
  display: flex !important; flex-direction: row !important;
  align-items: center !important; flex-wrap: nowrap !important;
  gap: 12px !important; padding: 14px 16px !important;
  cursor: pointer !important; width: 100% !important;
  box-sizing: border-box !important; margin: 0 !important;
  color: #111 !important; font-weight: 600 !important;
}
.pdp-subscription input[type="radio"] {
  appearance: none !important; -webkit-appearance: none !important;
  width: 18px !important; height: 18px !important; min-width: 18px !important;
  border: 2px solid var(--sub-border, #ccc) !important;
  border-radius: 50% !important; background: #fff !important;
  cursor: pointer !important; position: relative !important;
  margin: 0 !important; flex-shrink: 0 !important;
}
.pdp-subscription input[type="radio"]:checked { border-color: var(--sub-accent, #111) !important; }
.pdp-subscription input[type="radio"]:checked::after {
  content: '' !important; position: absolute !important;
  width: 8px !important; height: 8px !important;
  background: var(--sub-accent, #111) !important; border-radius: 50% !important;
  top: 50% !important; left: 50% !important; transform: translate(-50%,-50%) !important;
}
.pdp-subscription select {
  border: 1px solid var(--sub-border, #e0e0e0) !important;
  border-radius: 4px !important; padding: 9px 32px 9px 12px !important;
  font-size: 13px !important; background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 10px center !important;
  appearance: none !important; -webkit-appearance: none !important;
  color: #111 !important; width: 100% !important; max-width: 220px !important; outline: none !important;
  margin: 0 16px 16px !important;
}
.pdp-subscription [class*="benefits"], .pdp-subscription ul:not(.pdp-bullets) {
  padding: 0 16px 16px !important; margin: 0 !important; list-style: none !important; font-size: 13px !important; color: #555 !important;
  line-height: 1.5 !important;
}
.pdp-subscription li {
  position: relative !important; padding-left: 22px !important; margin-bottom: 6px !important;
}
.pdp-subscription li:before {
  content: '✓' !important; position: absolute !important; left: 0 !important; color: #111 !important;
}
/* Cart form */
.pdp-form { margin-bottom: 14px; }
.pdp-actions {
  display: flex;
  align-items: stretch;
  gap: var(--pdp-action-gap, 10px);
}
.pdp-qty {
  display: flex; align-items: center;
  border: 1px solid #e0e0e0; height: 48px;
  flex-shrink: 0; min-width: 120px; overflow: hidden;
}
.pdp-qty-btn {
  width: 40px; height: 100%; border: none;
  background: #f5f5f5; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #333; transition: background 0.2s;
}
.pdp-qty-btn:hover { background: #e8e8e8; }
.pdp-qty-input {
  flex: 1; min-width: 0; border: none; text-align: center;
  font-size: 16px; font-weight: 600; height: 100%; padding: 0; background: #fff;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty-input[type=number] { -moz-appearance: textfield; }
.pdp-btn-group { display: flex; gap: 10px; flex: 1; }
.pdp-btn {
  flex: 1; height: 48px; border: none;
  font-family: var(--pdp-btn-font, inherit);
  font-size: var(--pdp-btn-size, 14px);
  font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
.pdp-btn-atc {
  background-color: var(--pdp-btn-atc-bg, #f0f0f0);
  color: var(--pdp-btn-atc-color, #111);
  border: 1px solid #e0e0e0;
}
.pdp-btn-buy {
  background-color: var(--pdp-btn-buy-bg, #111);
  color: var(--pdp-btn-buy-color, #fff);
}
.pdp-btn:hover { opacity: 0.85; }
.pdp-btn:disabled { opacity: 0.5; cursor: not-allowed; }
/* Feature bullets */
.pdp-bullets {
  font-family: var(--pdp-meta-font, inherit);
  font-size: var(--pdp-bullets-size, 12px);
  color: var(--pdp-meta-color, #888);
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
  line-height: 1.5;
}
/* App blocks */
.pdp-app-block {
  margin-bottom: 20px;
}
/* ═══════════════════════════════════════
   COLLAPSIBLE ACCORDION
═══════════════════════════════════════ */
.pdp-collapsibles {
  border-top: 1px solid var(--pdp-coll-divider, #e0e0e0);
  margin-top: 48px;
}
.pdp-coll-item {
  border-bottom: 1px solid var(--pdp-coll-divider, #e0e0e0);
}
.pdp-coll-trigger {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: 'Adamina';
  font-size: var(--pdp-coll-title-size, 18px);
  color: var(--pdp-coll-title-color, #111);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.pdp-coll-text{
  font-family:'Adamina'!important ;
}
.pdp-coll-trigger:hover { opacity: 0.6; }
.pdp-coll-icon { flex-shrink: 0; transition: transform 0.32s ease; }
.pdp-coll-trigger[aria-expanded="true"] .pdp-coll-icon { transform: rotate(180deg); }
.pdp-coll-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.pdp-coll-body.is-open { grid-template-rows: 1fr; }
.pdp-coll-inner {
  overflow: hidden;
  font-family: var(--pdp-coll-body-font, inherit);
  font-size: var(--pdp-coll-body-size, 14px);
  color: var(--pdp-coll-body-color, #444);
  line-height: 1.8;
}
.pdp-coll-body.is-open .pdp-coll-inner { padding-bottom: 28px; }
/* Rich text typography inside collapsibles */
.pdp-coll-inner h1, .pdp-coll-inner h2,
.pdp-coll-inner h3, .pdp-coll-inner h4,
.pdp-coll-inner h5, .pdp-coll-inner h6 {
  font-family: var(--pdp-coll-title-font, 'Adamina', Georgia, serif);
  font-weight: 700; color: #111; line-height: 1.25; margin: 20px 0 8px;
}
.pdp-coll-inner h3:first-child, .pdp-coll-inner h4:first-child { margin-top: 0; }
.pdp-coll-inner p { margin: 0 0 10px; }
.pdp-coll-inner ul, .pdp-coll-inner ol { padding-left: 20px; margin: 8px 0; }
.pdp-coll-inner li { margin-bottom: 6px; }
.pdp-coll-inner strong, .pdp-coll-inner b { font-weight: 700; color: #111; }
.pdp-coll-inner a { color: #111; text-decoration: underline; }
/* ═══════════════════════════════════════
   FOOTER TAGLINE
═══════════════════════════════════════ */
.pdp-tagline {
  font-family: var(--pdp-title-font, 'Adamina', Georgia, serif);
  font-size: var(--pdp-tagline-size, 24px);
  color: var(--pdp-tagline-color, #111);
  text-align: center;
  padding: 52px 0 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
/* ═══════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp-wrap {
    padding-left: var(--pdp-pad-tablet, 24px);
    padding-right: var(--pdp-pad-tablet, 24px);
  }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-gallery { position: static; }
  .pdp-title { font-size: var(--pdp-title-size-tablet, 32px); }
  .pdp-meta-row,
  .pdp-tasting { font-size: var(--pdp-meta-size-tablet, 13px); }
  .pdp-price { font-size: var(--pdp-price-size-tablet, 28px); }
  .pdp-coffee-tag {
    width: var(--pdp-tag-w-tablet, 160px);
    height: var(--pdp-tag-h-tablet, 160px);
  }
}
/* ═══════════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .pdp-wrap {
    padding-left: var(--pdp-pad-mobile, 16px);
    padding-right: var(--pdp-pad-mobile, 16px);
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .pdp-details {
    padding-right: 0px;
  }
  .pdp-grid { gap: 24px; }
  .pdp-title { font-size: var(--pdp-title-size-mobile, 26px); }
  .pdp-meta-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pdp-meta-right { text-align: left; }
  .pdp-meta-row,
  .pdp-tasting { font-size: var(--pdp-meta-size-mobile, 12px); }
  .pdp-price { font-size: var(--pdp-price-size-mobile, 24px); }
  .pdp-actions { flex-direction: column; }
  .pdp-qty { width: 100%; }
  .pdp-btn-group { width: 100%; }
  .pdp-coffee-tag {
    width: var(--pdp-tag-w-mobile, 120px);
    height: var(--pdp-tag-h-mobile, 120px);
  }
  .pdp-coll-trigger { padding: 16px 0; }
  .pdp-tagline { padding: 32px 0 16px; }
  .pdp-thumbs { gap: 8px; }
  .pdp-subscription select { max-width: none !important; margin: 0 0 16px !important; padding-left: 16px !important; }
  .pdp-subscription [class*="benefits"], .pdp-subscription ul:not(.pdp-bullets) { padding: 0 0 16px !important; }
}
@media (max-width: 480px) {
  .pdp-btn-group { flex-direction: column; }
  .pdp-btn { width: 100%; }
}
/* END_SECTION:product-template */

/* START_SECTION:section-newsletter (INDEX:78) */
/* Static base styles only - no Liquid variables */
/* END_SECTION:section-newsletter */

/* START_SECTION:section-social-handles (INDEX:94) */
/*
  Base styles — no Liquid here.
  Heights are driven by CSS custom properties set inline per card:
    --card-h        → desktop height
    --card-h-tablet → tablet height (78% of desktop)
  The <style> tag in the section head overrides these at mobile.
*/

.sh-inner {
  box-sizing: border-box;
}

.sh-title {
  margin: 0;
  text-align: center;
}

/* ── Grid ─────────────────────────────────────────────────── */
.sh-grid {
  display: flex;
  flex-direction: row;
  align-items: center; /* vertically centres shorter cards against taller */
  width: 100%;
}

/* ── Card ─────────────────────────────────────────────────── */
.sh-card {
  flex: 1 1 0;
  min-width: 0;
  /*
    height is set via CSS custom property so it works on both
    the editor iframe and the rendered storefront without !important
    fighting inline style vs flexbox.
  */
  height: var(--card-h, 290px);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
}

/* ── Image ────────────────────────────────────────────────── */
.sh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.sh-card:hover .sh-img {
  transform: scale(1.04);
  opacity: 0.88;
}

/* ── Placeholder (editor) ─────────────────────────────────── */
.sh-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ebebeb, #f7f7f7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-size: 12px;
}
/* END_SECTION:section-social-handles */