/* Gyraffe — Product detail page styles (layered on styles.css + about.css) */

/* Solid black button (Download Datasheet) */
.btn--solid {
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
  transition: background .25s ease, transform .25s ease;
}
.btn--solid:hover { background: #000; transform: translateY(-1px); }

/* ===================== Product detail ===================== */
.pd { background: #fff; }
.pd__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pd__inner {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    padding-block: 5rem;
  }
}

.pd__media {
  background: var(--surface-gray);
  border-radius: 14px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.pd__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .22));
}

.pd__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}
.pd__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin: .85rem 0 1.25rem;
  font-size: .95rem;
  color: rgba(0, 0, 0, .55);
}
.pd__sep { color: rgba(0, 0, 0, .25); }
.in-stock { color: var(--green); font-weight: 600; }
.pd__desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, .8);
  margin-bottom: 1.75rem;
}

.spec-table { border-top: 1px solid rgba(0, 0, 0, .1); margin-bottom: 2rem; }
.spec-table h3 { font-size: 1.2rem; font-weight: 600; margin: 1.4rem 0 .9rem; }
.spec-table dl { margin: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: .5rem 0;
}
.spec-row dt { color: rgba(0, 0, 0, .6); font-size: 1rem; }
.spec-row dd { margin: 0; font-weight: 600; text-align: right; }

.pd__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ===================== Product features ===================== */
.pfeatures { background: #fff; }
.pfeatures .container { padding-block: 3.5rem; }
@media (min-width: 1024px) { .pfeatures .container { padding-bottom: 5rem; } }

.pfeatures__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pfeature {
  position: relative;
  flex: 0 1 32%;
  min-width: 280px;
  max-width: 420px;
  min-height: 112px;
  display: flex;
  align-items: center;
  background: var(--surface-gray);
  border-left: 5px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 3.75rem 1.5rem 1.5rem;
}
.pfeature--orange { border-left-color: var(--orange); }
.pfeature p { font-size: 1.0625rem; line-height: 1.45; font-weight: 500; }
.pfeature__icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: rgba(0, 0, 0, .7);
}
.pfeature__icon svg { width: 20px; height: 20px; }

/* ===================== Process ===================== */
.process { background: var(--surface-gray); }
.process .container { padding-block: 4rem; }
@media (min-width: 1024px) { .process .container { padding-block: 6rem; } }

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 820px) {
  .process__grid { grid-template-columns: repeat(3, 1fr); column-gap: 3rem; }
  .process__col:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, .15);
    padding-left: 3rem;
  }
}
.process__col h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.25rem; }
.process__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.process__col li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, .78);
}
.process__col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--black);
  font-weight: 700;
}

/* ===================== Other Specification tabs ===================== */
.otherspec { background: #fff; }
.otherspec .container { padding-block: 4rem; }
@media (min-width: 1024px) { .otherspec .container { padding-block: 5.5rem; } }

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.tab {
  padding: .85rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 6px;
  background: #fff;
  color: var(--black);
  font-size: 1rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tab:hover:not(.is-active) { border-color: var(--black); }
.tab.is-active { background: var(--black); color: #fff; border-color: var(--black); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: tab-fade .35s ease; }
@keyframes tab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.spec-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .spec-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .spec-cards { grid-template-columns: repeat(3, 1fr); } }

.spec-card {
  background: var(--surface-gray);
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
}
.spec-card--green { border-left-color: var(--green); }
.spec-card h4 { font-size: 1.05rem; font-weight: 500; color: rgba(0, 0, 0, .85); margin-bottom: .75rem; }
.spec-card__val { font-size: 1.05rem; color: rgba(0, 0, 0, .55); margin-bottom: .35rem; }
.spec-card__val strong { font-size: 2.25rem; font-weight: 700; color: var(--black); margin-right: .25rem; }
.spec-card__sub { font-size: .95rem; color: rgba(0, 0, 0, .5); }

/* Application guide */
.tab-prose { max-width: 60rem; }
.guide-list { margin: 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 1.1rem; }
.guide-list li { font-size: 1.0625rem; line-height: 1.6; color: rgba(0, 0, 0, .78); }
.guide-list li strong { color: var(--black); }

/* Documents */
.doc-list { list-style: none; margin: 0; padding: 0; max-width: 46rem; display: flex; flex-direction: column; gap: .9rem; }
.doc-list :is(a, button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 8px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.doc-list :is(a, button):hover { border-color: transparent; box-shadow: var(--shadow-card); transform: translateY(-2px); }
.doc-list__name { font-weight: 500; }
.doc-list__name::before { content: '⤓  '; color: var(--green); font-weight: 700; }
.doc-list__meta { color: rgba(0, 0, 0, .45); font-size: .9rem; flex: none; }

/* ===== Documents tab — PDF cards (2-col grid, red PDF badge + download pill) ===== */
#tab-documents .doc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
}
@media (max-width: 640px) { #tab-documents .doc-list { grid-template-columns: 1fr; } }
#tab-documents .doc-list :is(a, button) {
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}
#tab-documents .doc-list :is(a, button):hover {
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}
#tab-documents .doc-list__name {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-weight: 600;
  line-height: 1.3;
}
#tab-documents .doc-list__name::before {
  content: 'PDF';
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 48px;
  background: #e8453c;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .03em;
  border-radius: 6px;
}
#tab-documents .doc-list__meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: #eef6ea;
  color: var(--green);
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
}
#tab-documents .doc-list__meta::before { content: '⤓'; font-size: 1.05rem; line-height: 1; }
#tab-documents .doc-list :is(a, button):hover .doc-list__meta { background: var(--green); color: #fff; }

/* Reviews */
.reviews { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review {
  background: var(--surface-gray);
  border-radius: 10px;
  padding: 1.75rem;
}
.review__stars { color: var(--orange); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: .75rem; }
.review__star--dim { color: rgba(0, 0, 0, .2); }
.review__body { font-size: 1.0625rem; line-height: 1.6; color: rgba(0, 0, 0, .8); margin-bottom: 1rem; }
.review__author { font-weight: 600; font-size: .95rem; }

/* ===================== Coverage calculator ===================== */
.calc { background: var(--surface-gray); }
.calc .container { padding-block: 4rem; text-align: center; }
@media (min-width: 1024px) { .calc .container { padding-block: 5.5rem; } }

.calc__form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.calc__field { display: flex; flex-direction: column; gap: .45rem; text-align: left; }
.calc__field label { font-size: .9rem; color: rgba(0, 0, 0, .7); }
.calc__field input,
.calc__field select {
  height: 48px;
  border: 1px solid rgba(0, 0, 0, .3);
  border-radius: 6px;
  padding: 0 .9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--black);
}
.calc__field input:focus,
.calc__field select:focus { outline: none; border-color: var(--green); }
.calc__area { display: flex; gap: .5rem; }
.calc__area input { width: 130px; }
.calc__area select { width: 92px; }
.calc__thickness input { width: 160px; }

.calc__btn {
  height: 48px;
  padding: 0 2.25rem;
  border: 0;
  border-radius: 6px;
  background: var(--black);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.calc__btn:hover { background: #000; transform: translateY(-1px); }

.calc__result {
  margin-top: 1.4rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, .62);
}

/* ===== B4: new product blocks (pack chips, benefits, applications, grades, faq) ===== */
.pd__packs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 1rem 0 1.25rem; }
.pd__packs-label { font-weight: 600; color: rgba(0, 0, 0, .7); }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--surface-gray, #f2f4ef); color: var(--black, #14140f);
  font-size: .95rem; line-height: 1; text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .08); transition: background .25s ease, color .25s ease, border-color .25s ease;
}
a.chip:hover { background: var(--green, #78a841); color: #fff; border-color: var(--green, #78a841); }
.chip--pack { background: #fff; }

.pbenefits, .papps, .pgrades, .pdownloads, .pfaq { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.pbenefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.pbenefit {
  background: #fff; border: 1px solid rgba(0, 0, 0, .1); border-radius: 12px; padding: 1.5rem;
  transition: transform .35s ease, box-shadow .35s ease;
}
.pbenefit:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .07); }
.pbenefit h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--green, #78a841); }
.pbenefit p { font-size: 1rem; line-height: 1.55; color: rgba(0, 0, 0, .72); }
.papps__chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.75rem; }
.pfaq .faq { max-width: 820px; margin-top: 1.75rem; }

/* Applications as cards (image + title + short description) */
.papps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1023px) { .papps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .papps__grid { grid-template-columns: 1fr; } }
.papp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s var(--ease, ease), box-shadow .35s ease, border-color .35s ease;
}
.papp-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0, 0, 0, .1); border-color: var(--green); }
.papp-card__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.papp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.papp-card:hover .papp-card__img img { transform: scale(1.06); }
.papp-card__img--ph { display: grid; place-items: center; background: linear-gradient(135deg, #eef6ea, #e3efdc); color: var(--green); }
.papp-card__img--ph svg { width: 46px; height: 46px; opacity: .65; }
.papp-card__body { padding: 1.15rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.papp-card__title { font-weight: 600; font-size: 1.15rem; color: var(--black); line-height: 1.3; }
.papp-card__desc { font-size: .95rem; line-height: 1.55; color: rgba(0, 0, 0, .62); }
.papp-card__more { margin-top: .35rem; font-weight: 600; font-size: .9rem; color: var(--green); transition: color .25s ease; }
.papp-card:hover .papp-card__more { color: var(--orange); }

/* ===================== Lead capture modal ===================== */
body.gyr-modal-open { overflow: hidden; }
.gyr-modal[hidden] { display: none; }
.gyr-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.gyr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 10, .55);
  backdrop-filter: blur(2px);
}
.gyr-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.9rem 2.1rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
  animation: gyrModalIn .3s var(--ease, ease);
}
@keyframes gyrModalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.gyr-modal__close {
  position: absolute;
  top: .85rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-gray, #f1f3ee);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.gyr-modal__close:hover { background: var(--green); color: #fff; }
.gyr-modal__title { font-size: 1.6rem; font-weight: 600; margin-bottom: .4rem; }
.gyr-modal__sub { color: rgba(0, 0, 0, .6); font-size: .98rem; margin-bottom: 1.5rem; line-height: 1.5; }
.gyr-lead { display: flex; flex-direction: column; gap: 1.15rem; }
.gyr-lead__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.gyr-lead__field { position: relative; }
.gyr-lead__field input,
.gyr-lead__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  padding: 1.1rem 1rem .55rem;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 8px;
  background: #fff;
  resize: vertical;
  transition: border-color .2s ease;
}
.gyr-lead__field input:focus,
.gyr-lead__field textarea:focus { outline: none; border-color: var(--green); }
.gyr-lead__field label {
  position: absolute;
  left: 1rem;
  top: .95rem;
  color: rgba(0, 0, 0, .5);
  font-size: 1rem;
  pointer-events: none;
  transition: transform .18s ease, font-size .18s ease, color .18s ease;
  transform-origin: left top;
}
.gyr-lead__field input:focus + label,
.gyr-lead__field input:not(:placeholder-shown) + label,
.gyr-lead__field textarea:focus + label,
.gyr-lead__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-.7rem) scale(.78);
  color: var(--green);
}
.gyr-lead__submit { margin-top: .35rem; width: 100%; justify-content: center; }
.gyr-lead__status { margin: 0; font-size: .92rem; min-height: 1.2em; }
.gyr-lead__status.is-ok { color: var(--green); }
.gyr-lead__status.is-err { color: #c0392b; }

/* ---- Bulk / project-order option ---- */
.pbulk { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.pbulk__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: rgba(var(--green-rgb), .06);
  border: 1px solid rgba(var(--green-rgb), .28);
  border-radius: 20px;
}
@media (min-width: 860px) {
  .pbulk__inner { grid-template-columns: 1.6fr 1fr; gap: 3rem; }
}
.pbulk__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.pbulk__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem);
  color: var(--black);
  margin: 0 0 .75rem;
}
.pbulk__text { color: rgba(0, 0, 0, .7); line-height: 1.6; margin: 0 0 1.25rem; max-width: 60ch; }
.pbulk__points { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
@media (min-width: 560px) { .pbulk__points { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pbulk__points li { display: flex; align-items: flex-start; gap: .55rem; font-size: .95rem; line-height: 1.4; color: var(--ink); }
.pbulk__check { flex: none; width: 20px; height: 20px; color: var(--green-dark); margin-top: 1px; }
.pbulk__cta {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}
.pbulk__cta-note { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--black); margin: 0 0 1rem; }
.pbulk__cta .btn { width: 100%; justify-content: center; }
.pbulk__cta-fine { margin: .85rem 0 0; font-size: .82rem; color: rgba(0, 0, 0, .55); }

/* Document rows are request-only buttons — reset native button chrome so they
   render exactly like the previous anchors. */
.doc-list button {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* ============ Product detail — refinement pass ============ */

/* Media panel: softer frame, less dead space around the pack shot */
.pd__media {
  background: linear-gradient(158deg, #fafafa 0%, var(--surface-gray) 100%);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  aspect-ratio: 4 / 3.6;
  padding: 2.25rem;
  position: sticky;
  top: 100px;
}
@media (max-width: 899px) { .pd__media { position: static; aspect-ratio: 4 / 3.2; } }
.pd__media img { max-height: 100%; filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .18)); }

/* Meta line: SKU and stock read as small pills rather than loose text */
.pd__meta { gap: .5rem; margin-bottom: 1.1rem; }
.pd__meta > span:not(.pd__sep) {
  background: rgba(0, 0, 0, .04);
  border-radius: 999px;
  padding: .3rem .75rem;
  font-size: .875rem;
}
.pd__sep { display: none; }

/* Pack sizes */
.pd__packs { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.pd__packs-label { font-size: .95rem; color: rgba(0, 0, 0, .6); }
.chip--pack {
  background: #fff;
  border: 1px solid rgba(var(--green-rgb), .45);
  color: var(--green-dark);
  font-weight: 600;
}

/* Specifications: a proper technical sheet instead of a flat list */
.spec-table {
  border: 1px solid rgba(0, 0, 0, .09);
  border-top: 1px solid rgba(0, 0, 0, .09);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: #fff;
}
.spec-table h3 {
  margin: 0;
  padding: .95rem 1.15rem;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: rgba(0, 0, 0, .028);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.spec-row {
  padding: .72rem 1.15rem;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, .055);
  transition: background .2s ease;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row:nth-of-type(even) { background: rgba(0, 0, 0, .014); }
.spec-row:hover { background: rgba(var(--green-rgb), .05); }
.spec-row dt { font-size: .95rem; color: rgba(0, 0, 0, .62); }
.spec-row dd { font-size: .95rem; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 520px) {
  .spec-row { flex-direction: column; align-items: flex-start; gap: .15rem; }
  .spec-row dd { text-align: left; white-space: normal; }
}

/* Actions: equal-width pair with a clear primary */
.pd__actions { display: grid; grid-template-columns: 1fr; gap: .8rem; }
@media (min-width: 560px) { .pd__actions { grid-template-columns: 1fr 1fr; } }
.pd__actions .btn {
  width: 100%;
  justify-content: center;
  padding: .95rem 1.1rem;
  font-size: 1rem;
  border-radius: 10px;
}
.pd__actions .btn--solid { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.pd__actions .btn--solid:hover { background: var(--green); border-color: var(--green); }
