html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --bg: #f7f4ee;
  --card: #efebe3;
  --card-alt: #e6dfd4;
  --dark: #221e1d;
  --border: #dcd5c9;
  --accent: #b85d19;
  --muted: #6f6963;
  --paper: #fffdf8;
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    linear-gradient(
      rgba(247, 244, 238, .94),
      rgba(247, 244, 238, .94)
    ),
    url("../graphix/textures/Texture0118.jpg");

  color: var(--dark);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   CINZEL HEADINGS / STRONG
   ========================================================= */
h1,
h2,
h3,
h4 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;

}



/* =========================================================
   MAIN SHELL
   ========================================================= */

.offerings {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 28px 0 60px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  margin-bottom: 22px;
  padding: 44px 25px 40px;

  text-align: center;

  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.header-title .eyebrow {
  margin: 16px 0 0;

  color: #9c4e18;

  font-family: 'Cinzel Decorative', serif;
  font-weight: 700; /* Adjust boldness if needed */

font-size: clamp(3rem, 3vw, 3rem);
	font-weight: 700;
  line-height: 1.2;

  letter-spacing: .08em;
 
}
.italic	{
	  font-family: "Tangerine", cursive;
  font-size: clamp(2rem, 5vw + 1rem, 5rem);
  line-height: 1.2;
	font-weight: 400;
  font-style: normal;
	font-color: "blue";
}
.header-title h1 {
  margin: 0;

  font-family: "Cinzel", Georgia, serif;


  letter-spacing: .025em;
}

.header-title p {
  margin: 14px auto 0;

  color: var(--muted);

 
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;

  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   INFORMATION BLOCKS
   ========================================================= */

.instructions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-bottom: 18px;
}

.instruction-block {
  padding: 18px;

  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.instruction-block h2 {
  margin: 0 0 8px;

  color: var(--dark);

  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.instruction-block p {
  margin: 0;

  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.instruction-block p + p {
  margin-top: 10px;
}

.instruction-block strong {
  color: var(--dark);
}


/* =========================================================
   STICKY CART WRAPPER
   ========================================================= */
.sticky-cart-wrapper {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0px; /* Spacing between the two bars */
  margin-bottom: 28px;
}

/* Base Bar Styling */
.section-cart-bar-1,
.section-cart-bar {
  width: 100%;
  padding: 12px 16px;

  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;

  color: #5f5954;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Align contents inside the cart status bar (Far Left / Far Right) */
.cart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/* Align contents inside the cart bar filters (evenly) */
.filters {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
/* Links */
.cart-bar a {
  color: #954713;
  text-decoration: none;
}

.cart-bar a:hover {
  color: var(--accent);
}


/* =========================================================
   COFFEE SECTIONS
   ========================================================= */

.coffee-section {
  margin: 0 0 30px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 9px;
  padding: 0 7px 8px;

  border-bottom: 2px solid var(--dark);
}

.section-heading h2 {
  margin: 0;

  color: var(--dark);

  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: .05em;
}

.section-heading .size {
  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.special-heading h2 span {
  color: #a62920;
}


/* =========================================================
   COFFEE ITEM CARDS
   ========================================================= */

.coffee-item {
  display: grid;

  grid-template-columns:
    minmax(190px, .85fr)
    minmax(0, 2fr)
    78px;

  align-items: center;
  gap: 18px;

  width: 100%;
  min-width: 0;
  min-height: 56px;

  margin: 6px 0;
  padding: 10px 14px;

  background: var(--card);

  border: 1px solid var(--border);
  border-radius: 9px;

  color: var(--dark);

  transition:
    background-color .12s ease,
    border-color .12s ease,
    transform .12s ease;
}


/* Alternate backgrounds */

.coffee-section .coffee-item:nth-of-type(even) {
  background: var(--card-alt);
}


/* Hover */

.coffee-item:hover {
  background: var(--paper);
  border-color: #b9aa98;
  transform: translateX(2px);
}


/* =========================================================
   COFFEE NAME
   ========================================================= */

.coffee-name {
  min-width: 0;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}


/* =========================================================
   COFFEE DESCRIPTION
   ========================================================= */

.coffee-description {
  min-width: 0;

  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}


/* =========================================================
   PRICE
   ========================================================= */

.price-field {
  width: 78px;
  min-width: 78px;

  color: var(--dark);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;

  text-align: right;
  white-space: nowrap;
}


/* =========================================================
   CHANGE THIS VALUE TO UPDATE PRICES
   ========================================================= */

.price-field::after {
  content: " $15.00";
}


/* =========================================================
   RECEIPT NOTICE
   ========================================================= */

.receipt-notice {
  margin: 35px 0;

  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.6;

  text-align: center;
}

/* =========================================================
Filters
   ========================================================= */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.filter-button {
  border: 1px solid var(--border);
  background: #fff;
  color: #5f5954;
  border-radius: 7px;
  padding: 10px 14px;
  font: bold 11px Arial;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
/* Add this to your stylesheet */
.coffee-card.is-hidden {
  display: none !important;
}

.section1-cart-bar {
  flex-wrap: wrap; /* add this so the section itself can wrap on small screens */
}
/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 65px 0 25px;

  background: var(--dark);
  color: var(--bg);
}

.footer .shell {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    repeat(3, 1fr);

  gap: 45px;

  padding-bottom: 45px;
}


/* Central Coffee — deliberately larger */

.footer strong {
  display: block;

  margin-bottom: 12px;

  color: #d18a3d;

  font-family: 'Cinzel Decorative', serif;
  font-weight: 700; /* Adjust boldness if needed */

  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: .08em;
 
}

.footer p {
  color: #a9a29d;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.footer h4 {
  margin: 0 0 12px;

  color: #d18a3d;

  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer a {
  display: block;

  margin-bottom: 7px;

  color: #cfc8c2;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.footer a:hover {
  color: #d18a3d;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;

  border-top: 1px solid #3c3633;

  padding-top: 18px;

  color: #77706b;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  display: inline;
  margin: 0;
}


/* =========================================================
   MOBILE NAV
   HIDDEN ON DESKTOP
   ========================================================= */

.mobile-nav {
  display: none;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .offerings {
    width: min(100% - 28px, 720px);
  }


  /* ---------------------------------------------
     Coffee cards
     --------------------------------------------- */

  .coffee-item {
    grid-template-columns:
      minmax(0, 1fr)
      70px;

    gap: 5px 12px;

    min-width: 0;

    padding: 11px 12px;
  }

  .coffee-name {
    grid-column: 1;
    min-width: 0;

    overflow-wrap: anywhere;
  }

  .coffee-description {
    grid-column: 1;
    min-width: 0;

    overflow-wrap: anywhere;
  }

  .price-field {
    grid-column: 2;
    grid-row: 1 / span 2;

    align-self: center;

    width: 70px;
    min-width: 70px;

    text-align: right;
    white-space: nowrap;
  }


  /* ---------------------------------------------
     Footer
     --------------------------------------------- */

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }


  /* ---------------------------------------------
     Mobile bottom navigation
     --------------------------------------------- */

  body {
    padding-bottom: 74px;
  }

  .mobile-nav {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 100;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding:
      8px
      10px
      calc(8px + env(safe-area-inset-bottom));

    background: #221e1df7;

    border-top: 1px solid #3c3633;
  }

  .mobile-nav a {
    min-height: 50px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;

    color: #aaa29c;

    font-family: Verdana, Geneva, sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: .1em;

    text-transform: uppercase;
  }

  .mobile-nav a.is-current,
  .mobile-nav a:hover {
    color: #d18a3d;
  }

  .mobile-nav span {
    font-size: 17px;
    line-height: 18px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .offerings {
    width: calc(100% - 14px);
    padding-top: 10px;
  }


  /* ---------------------------------------------
     Header
     --------------------------------------------- */

  .site-header {
    padding: 34px 18px;
  }

  .header-title h1 {
    font-size: 40px;
  }

  .header-title .eyebrow {
    font-size: 22px;
  }


  /* ---------------------------------------------
     Instructions
     --------------------------------------------- */

  .instructions {
    grid-template-columns: 1fr;
  }


  /* ---------------------------------------------
     Cart
     --------------------------------------------- */

  .cart-bar {
    padding: 12px;
  }


  /* ---------------------------------------------
     Section heading
     --------------------------------------------- */

  .section-heading {
    gap: 10px;
  }


  /* ---------------------------------------------
     Coffee cards
     --------------------------------------------- */

  .coffee-item {
    grid-template-columns:
      minmax(0, 1fr)
      64px;

    gap: 4px 10px;

    padding: 10px;
  }

  .coffee-name {
    font-size: 12px;
    line-height: 1.35;
  }

  .coffee-description {
    font-size: 11px;
    line-height: 1.4;
  }

  .price-field {
    width: 64px;
    min-width: 64px;

    font-size: 12px;
  }


  /* ---------------------------------------------
     Footer — centered mobile version
     --------------------------------------------- */

  .footer .shell {
    width: min(100% - 28px, 720px);
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 25px;

    text-align: center;
  }

  .footer-grid > div {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .footer strong {
    font-size: 24px;
  }

  .footer-bottom {
    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 10px;

    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
  }
}


