:root{
  --green:#4F6D3D;
  --brown:#8B5B3A;
  --tan:#E1C6A8;
  --sage:#B7D9A8;
  --off:#F4F1E6;
  --ink:#222222;
  --line: rgba(0,0,0,.10);
  --shadow: 0 10px 28px rgba(0,0,0,.10);
  --radius: 18px;
  --radius-sm: 14px;
}

.top-strip { height: 10px; background: var(--green); }


.page-shell{
  max-width: 1100px;
  margin: 18px auto 28px;
  background: var(--off);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  background:#e9e6dd;
  font-family:Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(1080px, calc(100% - 32px));
  margin:0 auto;
}

a{ color:inherit; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: rgba(244,241,230,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:4px;
  min-width: 0;
}

.brand-logo{
  height: 40px;     /* desktop size (smaller, refined) */
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-decoration: none;
}

.top-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
}
.top-nav a{
  text-decoration:none;
  color:rgba(0,0,0,.72);
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.top-nav a.active,
.top-nav a:hover{
  background:rgba(79,109,61,.10);
  color:var(--green);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid transparent;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
  cursor:pointer;
}
.btn:focus-visible{ outline:3px solid rgba(79,109,61,.30); outline-offset:2px; }
.btn-primary{ background:var(--green); color:#fff; }
.btn-secondary{ background:var(--tan); color:#3b2a1f; }
.btn-ghost{ background:transparent; color:rgba(0,0,0,.72); border-color:rgba(0,0,0,.14); box-shadow:none; }
.btn-small{ padding:10px 14px; box-shadow:none; font-weight:700; }
.btn-icon{
  width:42px;
  height:42px;
  padding:0;
  border-radius:999px;
  box-shadow:none;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.30);
}
.btn-icon:hover{ background:rgba(79,109,61,.10); border-color:rgba(79,109,61,.25); }

/* Hero */
.page-hero{ padding:28px 0 14px; }

/* When using the image-based hero layout, remove the default hero padding */
.page-hero.hero-full{ padding:0; background: var(--off); }
.page-hero.hero-full .container{
  width: 100%;
  max-width: none;
  padding: 0;
}
h1{
  margin:6px 0 8px;
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  letter-spacing:.2px;
  font-size:52px;
  line-height:1.05;
}

.subhead{
  margin:0;
  max-width: 64ch;
  font-size:16px;
  color:rgba(0,0,0,.72);
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 8px; }

/* Hero (image element, no crop, locked to site width via .container wrapper in HTML) */
.hero-full{
  position: relative;
  overflow: hidden;
  background: var(--off);
}

/* Optional helper wrapper around the image (used as <div class="container hero-media">...) */
.hero-media{ position: relative; }

.hero-img{
  width: 100%;
  height: auto;            /* keep aspect ratio */
  max-height: none;       /* desktop/tablet hero height */
  display: block;
  filter: brightness(0.92);/* slightly darker */
}

/* Overlay sits above the edge fade */
.hero-full .hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  background: none;
  z-index: 2;
  
}
/* Nudge hero text slightly lower for a relaxed feel */
.hero-full .hero-overlay .container{
  transform: translateY(10%);
}


/* Center the hero text + re-enable clicks */
.hero-full .hero-overlay .container{
  text-align: center;
  pointer-events: auto;     /* buttons/links work */
}

/* Center all hero content */
.hero-full .hero-overlay .container{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers buttons + text block */
}



/* Improve text legibility on the image without washing out off-white sides */
.hero-full h1{
  color:#fff;
  text-shadow:0 6px 18px rgba(0,0,0,.35);
}
.hero-full .subhead{
  color: rgba(255,255,255,.92);
  max-width: 48ch;
  text-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* Subtle top-edge fade for the image area */
.hero-full::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.08) 12%,
    rgba(0,0,0,0.00) 30%
  );
}

/* Mobile: keep hero tighter */
@media (max-width: 768px){
  /* Give the hero a little more breathing room */
  .hero-img{
    max-height: 420px;
  }

  /* Scale text down for small screens */
  .hero-full h1{
    font-size: 34px;
    line-height: 1.05;
  }

  .hero-full .subhead{
    font-size: 14px;
    max-width: 34ch;
  }

  /* Make sure buttons wrap nicely and stay centered */
  .hero-full .cta-row{
    justify-content: center;
  }
}

@media (max-width: 820px){
  .feature-bar-inner{
    grid-template-columns: 1fr;
  }

  .feature-item:not(:last-child){
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
}

@media (max-width: 768px){
  .hero-full .hero-overlay .container{
    transform: translateY(6%);
  }
}
@media (max-width: 420px){
  .brand{
    gap:2px;
  }
}

@media (max-width: 420px){
  .btn-small{
    padding: 7px 10px;
    font-size: 12px;
  }
}

@media (max-width: 420px){
  .hero-full .cta-row .btn{
    padding: 9px 12px;
    font-size: 13px;
  }
}





/* Cards / sections */

.card-top-strip{
  height: 12px;
  background: var(--green);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.card{
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h2{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-size:26px;
  color:rgba(139,91,58,.95);
}
.muted{ color:rgba(0,0,0,.70); }
.tiny{ font-size:13px; }

/* Home page */
.home-grid{
  padding: 10px 0 26px;
}

/* Come Say Hi — internal layout polish */
.card:not(.favorites-card) h2{
  margin-bottom: 14px;
}

.card:not(.favorites-card) p{
  margin-bottom: 14px;
  line-height: 1.6;
}

.card:not(.favorites-card) p + p{
  margin-top: 6px;
}

.card:not(.favorites-card) .btn{
  margin-top: 12px;
}



.grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.features{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.feature{
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(183,217,168,.18);
}
.feature .title{ font-weight:800; font-size:14px; }
.feature .desc{ margin-top:6px; color:rgba(0,0,0,.70); font-size:13px; }

/* 3-icon feature row under hero — flat style */
.feature-bar{
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
  );
}

.feature-bar-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item{
  display: flex;
  flex-direction: column;      /* icon on top */
  align-items: center;         /* horizontal centering */
  justify-content: center;     /* vertical centering */
  gap: 8px;
  padding: 14px 10px;
  text-align: center;
}


/* vertical dividers only */
.feature-item:not(:last-child){
  border-right: 1px solid var(--line);
}

.feature-title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.feature-desc{
  font-size: 13px;
  color: rgba(0,0,0,.65);
  line-height: 1.2;
}




.favorites-title{
  margin: 6px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--brown);
  letter-spacing: .2px;
}

.favorites-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.favorite{
  padding: 0;
}

/* Works for both <img class="favorite-img"> and <div class="favorite-img placeholder"> */
.favorite-img{
  width: 100%;
  height: 165px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  display: block;
}

/* If you use placeholders instead of real images */
.favorite-img.placeholder{
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.55),
    rgba(225,198,168,.55)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorite-img.placeholder::after{
  content: "☕";
  font-size: 36px;
  opacity: .35;
  line-height: 1;
}

/* Optional: set data-icon="🥐" etc. to customize each tile */
.favorite-img.placeholder[data-icon]::after{
  content: attr(data-icon);
}

.favorite-name{
  margin: 10px 0 3px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(0,0,0,.82);
}

.favorite-desc{
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

.favorites-cta{
  margin-top: 9px;
  display: flex;
  justify-content: center;
  padding-bottom: 18px;
}


@media (max-width: 900px){
  .favorites-grid{ grid-template-columns: 1fr; }
  .favorite-img{ height: 200px; }
  .favorites-title{ font-size: 34px; }
}

.favorites{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}
.fav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(225,198,168,.18);
  border: 1px solid rgba(0,0,0,.06);
}
.fav .name{ font-weight:700; }
.fav .tag{ font-size:12px; color:rgba(0,0,0,.65); }

/* Specials */
.specials{
  margin:14px 0 8px;
  padding:18px 18px 16px;
  background:rgba(183,217,168,.28);
  border:1px solid rgba(79,109,61,.18);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.specials-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.specials h2{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:26px;
  color:var(--brown);
}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(225,198,168,.55);
  border:1px solid rgba(0,0,0,.08);
}
.specials-note{ margin:6px 0 10px; color:rgba(0,0,0,.65); font-size:14px; }

/* Menu lists */
.menu-list{ list-style:none; padding:0; margin:0; }

/* Each menu item is now clickable (button) with an expandable description */
.menu-item{
  border-bottom:1px dashed rgba(0,0,0,.12);
}
.menu-item:last-child{ border-bottom:none; }

.menu-item-toggle{
  width:100%;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  background:transparent;
  border:0;
  font:inherit;
  color:inherit;
  cursor:pointer;
  text-align:left;
}

.menu-item-toggle:hover{
  background:rgba(79,109,61,.06);
}

/* Keep hover from changing layout by giving the button a subtle inset feel */
.menu-item-toggle{
  border-radius:10px;
  padding-left:10px;
  padding-right:10px;
  margin-left:-10px;
  margin-right:-10px;
}

.menu-item-toggle:focus-visible{
  outline:2px solid rgba(79,109,61,.45);
  outline-offset:2px;
}

.item-name{ font-weight:600; }
.item-price{ min-width:72px; text-align:right; font-weight:800; color:rgba(0,0,0,.75); }

.menu-desc{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: rgba(34,34,34,0.72);
  font-size: 14px;
  line-height: 1.45;

  transition:
    max-height 260ms ease,
    opacity 260ms ease,
    margin-top 260ms ease;
}

.menu-item.open .menu-desc{
  opacity: 1;
  margin-top: 6px;
}

/* A subtle indent + guide line to match your calm style */
.menu-desc{
  padding-left:22px;
  border-left:1px solid rgba(0,0,0,.10);
  margin-left:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:800;
  margin-left:8px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(225,198,168,.55);
  border:1px solid rgba(0,0,0,.08);
}

.menu-section{ padding:22px 0; scroll-margin-top: 110px; }
.menu-section h2{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:34px;
  color:var(--brown);
}
.section-head{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.section-note{ margin:0; color:rgba(0,0,0,.65); font-size:14px; }
.section-list{
  background:rgba(255,255,255,.45);
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding:6px 14px;
}
.subsection{ margin-top:16px; }
.subsection h3{
  margin:14px 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-size:24px;
  color:rgba(139,91,58,.95);
}

/* Sticky anchors */
.sticky-anchors{
  position:sticky;
  top:64px;
  z-index:30;
  background:rgba(244,241,230,.94);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.anchors-row{
  display:flex;
  gap:10px;
  padding:10px 0;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.anchors-row a{
  white-space:nowrap;
  text-decoration:none;
  color:rgba(0,0,0,.72);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(225,198,168,.18);
  font-weight:700;
}
.anchors-row a:hover{ background:rgba(79,109,61,.10); border-color:rgba(79,109,61,.25); color:var(--green); }

/* Visit page */
.visit-grid{ padding: 10px 0 26px; }
.stack{ display:flex; flex-direction:column; gap:14px; }
.hours{ display:flex; flex-direction:column; gap:8px; margin-top: 6px; }
.hours .row{
  display:flex; justify-content:space-between; gap:14px;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(225,198,168,.18);
  border: 1px solid rgba(0,0,0,.06);
}
.bullets{ margin:0; padding-left:18px; color:rgba(0,0,0,.72); }
.map-embed{
  border-radius: var(--radius-sm);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(183,217,168,.20);
}
.map-embed iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}
.mini-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

/* Coming soon */
.coming-soon{
  min-height:80vh;
  display:flex;
  align-items:center;
  text-align:center;
  padding: 10px 0 26px;
}
.soon-text{
  max-width: 56ch;
  margin: 12px auto 22px;
  color: rgba(0,0,0,.70);
  font-size: 16px;
}

/* Footer */
.site-footer{
  margin-top: 18px;
  padding: 24px 0 18px;
  border-top: 1px solid rgba(0,0,0,.10);
  background: rgba(244,241,230,.92);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.footer-brand .brand-line{
  font-family:"Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(0,0,0,.82);
}
.footer-title{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,0,0,.62);
  margin-bottom: 10px;
}
.footer-link{
  display:block;
  text-decoration:none;
  color: rgba(0,0,0,.74);
  padding: 6px 0;
  word-break: break-word;
}
.footer-link:hover{ color: var(--green); }
.footer-muted{
  color: rgba(0,0,0,.62);
  font-size: 14px;
  line-height: 1.5;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Mobile nav (drawer) */
.mobile-only{ display:none; }
.drawer-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  display:none;
  z-index:60;
}
.drawer{
  position:fixed;
  top:0; right:0;
  width:min(360px, 92vw);
  height:100%;
  background: rgba(244,241,230,.98);
  border-left:1px solid rgba(0,0,0,.10);
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  transform: translateX(102%);
  transition: transform .22s ease;
  z-index:70;
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.drawer.open{ transform: translateX(0); }
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.drawer-title{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:22px;
}
.drawer-nav{ display:flex; flex-direction:column; gap:8px; padding-top: 8px; }
.drawer-nav a{
  text-decoration:none;
  font-weight:800;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.40);
}
.drawer-nav a.active{ border-color: rgba(79,109,61,.30); background: rgba(79,109,61,.10); color: var(--green); }
.drawer-nav a:hover{ background: rgba(225,198,168,.22); }
.drawer-footer{ margin-top:auto; padding-top: 10px; border-top:1px solid rgba(0,0,0,.10); }
.drawer-footer .footer-muted{ font-size: 13px; }

@media (max-width: 900px){
  h1{ font-size:42px; }
  .grid-2{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .map-embed iframe{ height:360px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; }

  .top-nav{ display:none; }
  .mobile-only{ display:inline-flex; }
  .sticky-anchors{ top:62px; }
  .menu-section{ scroll-margin-top: 120px; }
}

@media (max-width: 420px){
  .container{ width: calc(100% - 24px); }
  .brand-text{ font-size:16px; }
  .btn{ padding:12px 16px; }
  .btn-icon{ width:30px; height:40px; }
  .item-price{ min-width:66px; }
}

/* Slightly smaller on mobile */
@media (max-width: 420px){
  .brand-logo{
    height: 28px;
  }
}

/* Remove underline from brand link in all states */
.brand,
.brand:hover,
.brand:focus,
.brand:active{
  text-decoration: none;
}

.card{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 22px 26px;
}

.card h2{
  margin-top: 0;
  margin-bottom: 16px;
}

.card p{
  margin-bottom: 12px;
}



/* =========================
   Customer Favorites — mockup alignment fixes
   Works with either the new .favorites-grid markup OR the existing .favorites/.fav markup.
   ========================= */

/* Make the favorites panel read like the mockup (darker tan, inset width, centered) */
.card.favorites-card{
  background: #edddc1;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  margin: 18px auto 18px; /* extra room before next section */
  padding: 5px 18px 18px; /* tighter top, a bit more bottom */
}

/* Title centered with rules on both sides */
.card.favorites-card > h2,
.favorites-card .favorites-title{
  text-align: center;
  margin: 2px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--brown);
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  
}
.card.favorites-card > h2::before,
.card.favorites-card > h2::after,
.favorites-card .favorites-title::before,
.favorites-card .favorites-title::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.10);
}

/* --- If you are using the NEW grid markup (.favorites-grid / .favorite ...) --- */
.favorites-card .favorites-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-items: center;
  margin-top: 8px;
}
.favorites-card .favorite{
  width: 100%;
  max-width: 260px;
  text-align: center;
}

/* --- If you are still using the EXISTING markup (.favorites / .fav ...) --- */
.favorites-card .favorites{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: center;
  margin-top: 6px;
}
.favorites-card .fav{
  width: 100%;
  max-width: 260px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 6px;
}
.favorites-card .fav .name{
  font-weight: 800;
  font-size: 15px;
  color: rgba(0,0,0,.82);
}
.favorites-card .fav .tag{
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

/* Center the CTA button like the mockup */
.favorites-card .favorites-cta,
.favorites-card .cta-row{
  justify-content: center;
}

/* Center-align Come Say Hi content */
.card:not(.favorites-card){
  text-align: center;
}

.card:not(.favorites-card) .btn{
  display: inline-block;
}

.card:not(.favorites-card) .mini-cta{
  justify-content: center;
}

/* Center the two buttons inside Come Say Hi */
.card:not(.favorites-card) .mini-cta{
  width: 100%;
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 10px;
}

/* Center the two buttons in the Come say hi card (they use .cta-row in index.html) */
.card:not(.favorites-card) .cta-row{
  width: 100%;
  justify-content: center;
}


/* Mobile: stack tiles only on small screens (mockup keeps 3-across on desktop) */
@media (max-width: 720px){
  .favorites-card .favorites-grid{ grid-template-columns: 1fr; }
  .favorites-card .favorites{ grid-template-columns: 1fr; }
  .favorites-card .favorite,
  .favorites-card .fav{ max-width: 420px; }
  .card.favorites-card > h2,
  .favorites-card .favorites-title{ font-size: 34px; }
}


/* === Cleanups replacing inline styles === */
.card:not(.favorites-card) .muted{
  margin: 0;
}

.card:not(.favorites-card) .cta-row{
  margin-top: 14px;
}

.card:not(.favorites-card) .tiny{
  margin-top: 10px;
}

/* === Feature icons: final alignment fix === */
.feature-bar .feature-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-bar .feature-icon{
  height: 0px;              /* equal visual baseline */
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: center;
  margin-bottom: 6px;
  margin: 36px 0;
}

.feature-bar .feature-icon img{
  width: 60px;               /* larger icons */
  height: auto;
  display: block;
  opacity: 1;     /* keeps icons subtle */
}

/* Nudge only the first (espresso) icon up */
.feature-bar .feature-item:first-child .feature-icon{
  transform: translateY(-8px);
}

/* Force the first feature item (espresso) to nudge up on mobile too */
@media (max-width: 768px){
  .feature-bar .feature-bar-inner > .feature-item:nth-of-type(1) .feature-icon{
    transform: translateY(-6px) !important;
  }
}

/* Keep subtle outlines on all feature items on mobile */
@media (max-width: 768px){
  .feature-bar .feature-item{
    border: 1px solid rgba(0,0,0,.10) !important;
  }
}

@media (max-width: 768px){
  .feature-bar .feature-item .feature-text{
    margin-top: 0 !important;
  }
}

/* Equalize spacing between feature bar and Customer Favorites */
.feature-bar{
  margin-bottom: 0px;
}

@media (max-width: 768px){
  .feature-bar{
    margin-bottom: 0px;
    padding: 12px 0px;

  }
}


/* Utility spacing (replaces a couple of inline margin-top styles) */
.mt-14{ margin-top:14px; }
.mt-8{ margin-top:8px; }
