:root {
  --color-background: #f4f2ed;
  --color-ink: #1d1c1a;
  --color-muted: #5f5c57;
  --color-accent: hsl(168, 63%, 27%);
  --color-accent-dark: #14574a;
  --color-highlight: #f2e6c8;
  --font-heading: 'EB Garamond', serif;
  --font-body: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-background);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(244, 242, 237, 1);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(30, 28, 26, 0.08);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  flex-shrink: 0;
}

.brand-text {
  margin-left: 0.4rem;
  flex: 1;
}

.site-nav {
  /* margin-top: 4px; */
}

.site-nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a.button {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  
  padding: 0.4rem 1rem;
  padding-top: calc(0.4rem + 1px);
  margin-left: 1.2rem;
}

.site-nav-link {
  position: relative;
  top: 1px;
}

.site-nav-link:hover {
  color: var(--color-accent);
}

main {
  display: block;
}

.hero {
  background: linear-gradient(135deg, rgba(20, 87, 74, 0.85), rgba(26, 114, 96, 0.7)),
    url('https://cdn.pixabay.com/photo/2019/05/12/15/45/creek-4198377_1280.jpg') center/cover;
  color: #fff;
  padding: 8rem 0;
  text-align: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3), inset 0 0 200px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero .lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section {
  padding-top: 6.5rem;
  padding-bottom: 7.5rem;
}

.section.highlight {
  background: var(--color-highlight);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.1), inset 0 0 160px rgba(0, 0, 0, 0.05);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  margin-top: 0;
}

.section p.subtitle {
  margin-left: 4px;
  margin-top: -0.5rem;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 1.75rem;
  padding-top: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 18px 35px rgba(20, 87, 74, 0.08);
  text-align: center;
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.card p {
  margin: 0;
}

.card-meta {
  margin-top: 1rem !important;
  margin-bottom: 0rem !important;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.card--sold-out {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(26, 114, 96, 0.4);
}

.card--sold-out .bottle-image {
  opacity: 0.6;
  filter: grayscale(1);
}

.card--sold-out h3,
.card--sold-out p {
  color: rgba(29, 28, 26, 0.75);
}

.badge {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.badge-sold-out {
  background: #b7423c;
  color: #fff;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  box-shadow: 0 6px 18px rgba(183, 66, 60, 0.28);
}

.bottle-image {
  width: 120px;
  height: 200px;
  object-fit: contain;
  /* margin-bottom: 1.5rem;  */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(20, 87, 74, 0.2);
}

.awards-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.awards-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(30, 28, 26, 0.1);
}

.awards-list .year {
  font-weight: 700;
  color: var(--color-accent-dark);
  min-width: 4rem;
}

.awards-list .name {
  flex: 1;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.button-primary {
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
}

.button-primary:hover,
.button-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 8px rgba(20, 87, 74, 0.3);
}

.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 12px 30px rgba(20, 87, 74, 0.12);
  margin: 2rem 0;
}

.order-hero {
  background: linear-gradient(135deg, rgba(20, 87, 74, 0.9), rgba(26, 114, 96, 0.7)),
    url('../images/destill.jpg') center/cover;
  color: #fff;
  padding: 6rem 0 4.5rem;
  text-align: left;
}

.order-hero .lead {
  max-width: 640px;
}

.order-hero-list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 2.5rem;
  font-weight: 600;
}

.order-hero-list li::before {
  content: '✓';
  margin-right: 0.5rem;
}

.order-section {
  background: linear-gradient(180deg, #f4f2ed 0%, #fff 40%, #f4f2ed 100%);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 2.75rem;
  align-items: start;
}

.order-form {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 20px 45px rgba(20, 87, 74, 0.12);
}

.order-fieldset {
  border: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
}

.order-fieldset legend {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.order-fieldset-description {
  margin: 0 0 1.5rem 0;
  color: var(--color-muted);
  max-width: 640px;
}

.order-product {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  border: 1px solid rgba(26, 114, 96, 0.18);
  border-radius: 1.1rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
}

.order-product--sold-out {
  background: rgba(183, 66, 60, 0.1);
  border-color: rgba(183, 66, 60, 0.35);
}

.order-product-info {
  flex: 1 1 280px;
  min-width: 200px;
}

.order-product-info h3 {
  margin: 0 0 0.35rem 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.order-product-meta {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.order-product-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.order-product-quantity label {
  font-weight: 600;
  font-size: 0.95rem;
}

.order-product-quantity input[type='number'] {
  width: 5.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(26, 114, 96, 0.3);
  font-size: 1rem;
}

.order-product-quantity input[type='number']:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 114, 96, 0.18);
}

.order-product-status {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-product-status .badge-sold-out {
  position: static;
  box-shadow: none;
}

.order-product-status-note {
  margin: 0;
  color: rgba(29, 28, 26, 0.7);
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-form .form-group {
  margin-bottom: 1.5rem;
}

.order-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(26, 114, 96, 0.25);
  background: #fdfdfb;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.order-form textarea {
  resize: vertical;
  min-height: 110px;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 114, 96, 0.18);
}

.order-delivery-note {
  margin: 0 0 1.5rem 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  display: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 0.35rem;
}

.order-form-disclaimer {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

.order-summary {
  position: sticky;
  top: 6.5rem;
}

.order-summary-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(20, 87, 74, 0.1);
}

.order-summary-intro {
  color: var(--color-muted);
  margin-top: 0.35rem;
}

.order-summary-list {
  list-style: none;
  margin: 1.75rem 0 1.5rem 0;
  padding: 0 0 1.25rem 0;
  border-bottom: 1px solid rgba(26, 114, 96, 0.16);
}

.order-summary-item,
.order-summary-empty {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.order-summary-empty {
  color: var(--color-muted);
}

.order-summary-totals {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.order-summary-totals div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.order-summary-totals dt {
  font-weight: 600;
}

.order-summary-totals dd {
  margin: 0;
}

.order-summary-grand dt,
.order-summary-grand dd {
  font-size: 1.2rem;
  font-weight: 700;
}

.order-summary-payment {
  margin-top: 1.75rem;
}

.order-summary-payment h3 {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.order-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-card-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 114, 96, 0.25);
  font-size: 0.85rem;
}

.order-summary-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1.75rem;
}

.order-summary-note a {
  color: inherit;
  font-weight: 600;
}

.site-footer {
  background: #111;
  color: #e6e4dd;
  padding: 3rem 0;
  text-align: center;
}

.newsletter-signup {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(230, 228, 221, 0.2);
}

.newsletter-signup h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0rem;
  color: #fff;
}

.newsletter-signup p {
  margin-bottom: 1.5rem;
  color: #b8b5ae;
  max-width: 800px;
  margin-top: 0px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: flex-start;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(230, 228, 221, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
  color: #b8b5ae;
}

.newsletter-form .button {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
  align-self: flex-start;
}

.footer-info {
  margin-top: 1.5rem;
}

.footer-info p {
  margin: 0.5rem 0;
  color: #b8b5ae;
}

@media (max-width: 1024px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: -10px;
  }

  .site-nav a {
    margin: 0 0.5rem;
  }

  .site-nav a.button {
    margin-left: 0.75rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .site-nav-link, .site-nav a.button-primary {
    display: none;
  }

  .hero {
    padding: 6rem 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    align-items: stretch;
  }

  .newsletter-form .button {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }

  .newsletter-signup h3 {
    font-size: 1.3rem;
  }

  .newsletter-signup p {
    font-size: 0.95rem;
  }

  .newsletter-signup input[type="email"] {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 5rem;
  }

  .order-hero {
    padding: 4.5rem 0 3.5rem;
    text-align: center;
  }

  .order-hero-list {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .order-form {
    padding: 2rem 1.5rem;
  }

  .order-fieldset legend {
    font-size: 1.5rem;
  }

  .order-product {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-product-quantity {
    width: 100%;
  }

  .order-product-quantity input[type='number'] {
    width: 100%;
  }

  .order-summary-card {
    padding: 1.75rem;
  }

  .order-summary-item,
  .order-summary-empty,
  .order-summary-totals div {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ─── Business Card Page ─── */

.bc-page {
  padding: 5rem 0 6rem;
}

.bc-page-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
}

.bc-page-subtitle {
  color: var(--color-muted);
  margin: 0 0 3rem;
}

.bc-showcase {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.bc-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin: 0;
}

.bc-card {
  width: 380px;
  height: 218px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.bc-card--print {
  --bc-bleed: 14px;
  width: calc(380px + var(--bc-bleed) * 2);
  height: calc(218px + var(--bc-bleed) * 2);
  border-radius: 0;
  box-shadow: none;
}

.bc-print-offscreen {
  position: absolute;
  left: -9999px;
  top: 0;
}

/* ── Front ── */

.bc-front {
  background: linear-gradient(145deg, #14574a 0%, #1a7260 50%, #1e8a73 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.bc-card--print.bc-front {
  padding: var(--bc-bleed);
}

.bc-front-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--color-highlight), rgba(242, 230, 200, 0.3));
  flex-shrink: 0;
}

.bc-front-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 0.1rem;
}

.bc-front .bc-logo {
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.bc-front-text {
  display: flex;
  flex-direction: column;
}

.bc-company {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 0.15rem;
}

.bc-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.bc-title {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.8;
  margin: 0.1rem 0 0;
}

.bc-front-tagline {
  position: absolute;
  bottom: 1.25rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.bc-card--print .bc-front-tagline {
  bottom: calc(1.25rem + var(--bc-bleed));
  right: calc(2rem + var(--bc-bleed));
}

/* ── Back ── */

.bc-back {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
}

.bc-card--print.bc-back {
  padding: calc(1.5rem + var(--bc-bleed)) calc(2rem + var(--bc-bleed));
}

.bc-back-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(26, 114, 96, 0.15);
}

.bc-back-header .bc-logo {
  width: 26px;
  height: 26px;
}

.bc-back-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-left: 0.3rem;
  color: var(--color-ink);
}

.bc-back-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.bc-detail-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.bc-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  min-width: 64px;
}

.bc-detail-value {
  font-size: 0.85rem;
  color: var(--color-ink);
  text-decoration: none;
}

a.bc-detail-value:hover {
  color: var(--color-accent);
}

.bc-back-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  text-align: right;
}

.bc-download {
  text-align: center;
  margin-top: 3rem;
}

.bc-download-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bc-download .button {
  font-family: var(--font-body);
}

.bc-btn-png {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.bc-btn-png:hover,
.bc-btn-png:focus {
  background: rgba(26, 114, 96, 0.08);
  transform: translateY(-2px);
}

.bc-download .button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.bc-download-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bc-page {
    padding: 3rem 0 4rem;
  }

  .bc-showcase {
    gap: 2rem;
  }

  .bc-card:not(.bc-card--print) {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 380 / 218;
  }
}

@media (max-width: 420px) {
  .bc-front-body {
    padding: 1.25rem 1.5rem;
  }

  .bc-name {
    font-size: 1.25rem;
  }

  .bc-back {
    padding: 1.25rem 1.5rem;
  }

  .bc-front-tagline {
    right: 1.5rem;
    bottom: 1rem;
  }
}

/* Floating ORDER button: hidden by default (desktop) */
.fab-order {
  display: none;
}

/* Floating ORDER ONLINE button - mobile only */
@media (max-width: 768px) {
  .fab-order {
    position: fixed;
    right: 1.8rem;
    bottom: 1.5rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    /* box-shadow: 0 12px 22px rgba(20, 87, 74, 0.28); */
    text-decoration: none;
    /*remove blue flash on mobile*/
    -webkit-tap-highlight-color: transparent; 
  }

  .fab-order:hover {
    transform: translateY(0px);
    box-shadow: none;
  }

  /* Hide the header Order button on mobile; we already hide via .site-nav a.button-primary */
  .fab-order .fab-label {
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
  }
}
