/* =========================================================
   Evolve Mala – V2 Theme
   Inspired by current Shopify theme, improved.
   Color palette:
     White #fff   Dark #1a1a1a   Accent Blue #2563EB   Soft Gray #f5f5f5
   Font: Quicksand
   ========================================================= */

:root {
  --dark: #1a1a1a;
  --soft-gray: #f5f5f5;
  --border: #e5e5e5;
  --text-muted: #777;
  --accent: #2563EB;
  --sale: #d63031;
}

/* ── Base ─────────────────────────────────────────────────── */

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

a {
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}

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

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

/* ── Global desktop width ─────────────────────────────────── */
/* Keep v2 layouts about 25% narrower on desktop. */
@media (min-width: 992px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 912px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1056px;
  }
}

/* ── Announcement Bar ─────────────────────────────────────── */

.announcement-bar {
  background: #fffaf6;
  color: var(--dark);
  text-align: center;
  font-size: .74rem;
  font-weight: 500;
  padding: 10px 0;
  letter-spacing: .03em;
}

/* ── Navbar ───────────────────────────────────────────────── */

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0 8px;
  z-index: 1000;
}

.nav-stack {
  display: flex;
  flex-direction: column;
}

.nav-top {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 0 4px;
}

.nav-side {
  display: flex;
  align-items: center;
}

.nav-side-left {
  justify-content: flex-start;
  gap: 10px;
}

.nav-side-right {
  justify-content: flex-end;
  gap: 14px;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.brand-logo {
  max-height: 66px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}

.brand-tagline {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}

.navbar-nav .nav-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 10px;
}

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

.nav-menu-row {
  margin: 4px auto 0;
}

.navbar-collapse {
  width: 100%;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.15rem;
  line-height: 1;
}

.header-icon:hover { color: var(--accent); }

.navbar-toggler {
  border: none;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1;
  padding: 0;
}

.navbar-toggler:focus { box-shadow: none; }

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--dark);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .nav-top {
    min-height: 86px;
    padding: 0 8px;
  }

  .brand-logo {
    max-height: 70px;
  }

  .nav-menu-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-dark-solid {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 6px;
  transition: all .25s;
}

.btn-dark-solid:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all .25s;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}

.btn-link-back {
  color: var(--accent);
  font-weight: 600;
  font-size: .88rem;
}

.btn-link-back:hover { color: var(--dark); }

/* Reuse class names from v1 so _price.html macro + JS still work */
.btn-gold { composes: btn-dark-solid; }

.btn-add-cart {
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: .75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background .2s;
}

.btn-add-cart:hover { background: #333; }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  background: #fff;
  padding: 32px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  align-items: stretch;
  min-height: 460px;
}

.hero-media {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 0;
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Shop By Stone ────────────────────────────────────────── */

.section-stones {
  padding: 50px 0;
}

.stones-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.stone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
  transition: transform .2s;
  min-width: 0;
}

.stone-item:hover {
  transform: translateY(-3px);
  color: var(--accent);
}

.stone-item img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.stone-item span {
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}

/* ── Section titles ───────────────────────────────────────── */

.section-title {
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 32px;
}

/* ── Product Cards ────────────────────────────────────────── */

.section-featured,
.section-collection,
.section-related,
.section-cross-sell {
  padding: 60px 0;
}

.product-card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s;
}

.product-card:hover { transform: translateY(-3px); }

.product-card-img-link { display: block; }

.product-card-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--soft-gray);
  border-radius: 10px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-img img.placeholder-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: .12;
}

.product-card-body {
  padding: 14px 4px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: .8rem;
  font-weight: 400;
  margin-bottom: 6px;
  flex: 1;
  line-height: 1.4;
}

.product-card-title a { color: var(--dark); }
.product-card-title a:hover { color: var(--accent); }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
}

/* Price with compare-at */

.price-group {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  font-size: .95rem;
}

.price-compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .85em;
}

.price-sale { color: var(--dark); }

/* Smaller, lighter card metadata for collection/grid views */
.product-card .price-group {
  font-size: .8rem;
  font-weight: 400;
}

.product-card .price-compare { font-weight: 400; }

.product-card .price-current,
.product-card .price-sale { font-weight: 500; }

/* Home featured cards: show current price first and keep sizes equal */
.section-featured .product-card .price-group {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.section-featured .product-card .price-current,
.section-featured .product-card .price-sale,
.section-featured .product-card .price-compare {
  font-size: 1em;
}

.price-lg { font-size: 1.3rem; }
.price-lg .price-compare { font-size: .8em; }

/* ── Brand Story ──────────────────────────────────────────── */

.section-story {
  padding: 70px 0;
  background: var(--soft-gray);
}

.story-image-block {
  position: relative;
  height: 380px;
  border-radius: 10px;
  background: var(--border);
}

.story-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent);
  border-radius: 10px;
}

.story-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.story-values {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
}

.value-item i { font-size: 1.1rem; color: var(--accent); }

/* ── Testimonials ─────────────────────────────────────────── */

.section-testimonials { padding: 60px 0; }

.testimonial-card {
  background: var(--soft-gray);
  border-radius: 10px;
  padding: 28px;
  height: 100%;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: .85rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── Newsletter ───────────────────────────────────────────── */

.section-newsletter {
  padding: 50px 0;
  background: var(--dark);
  color: #fff;
}

.newsletter-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter-subtitle {
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  font-size: .9rem;
}

.newsletter-form { max-width: 420px; margin: 0 auto; }

.newsletter-form .form-control {
  border-radius: 6px 0 0 6px;
  border: none;
  padding: 13px 16px;
  font-size: .88rem;
  font-family: 'Quicksand', sans-serif;
}

.newsletter-form .btn-dark-solid {
  border-radius: 0 6px 6px 0;
  padding: 13px 24px;
}

/* ── Collection Page ──────────────────────────────────────── */

.collection-hero {
  padding: 48px 0 36px;
  background: #fff;
}

.collection-hero-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.collection-hero-subtitle {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Pagination ───────────────────────────────────────────── */

.pagination-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

/* ── PDP ──────────────────────────────────────────────────── */

.section-pdp { padding: 30px 0 70px; }

/* Gallery */

.pdp-gallery { position: sticky; top: 80px; }

.pdp-main-media {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-main-media img,
.pdp-main-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-main-media iframe { width: 100%; height: 100%; border: none; }

.pdp-main-media img.placeholder-img {
  width: 180px; height: 180px; object-fit: contain; opacity: .1;
}

/* Thumbnails */

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdp-thumb {
  position: relative;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--soft-gray);
  padding: 0;
  cursor: pointer;
  transition: border-color .2s;
}

.pdp-thumb:hover,
.pdp-thumb.active { border-color: var(--dark); }

.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 1.1rem;
}

.pdp-info { padding-left: 24px; }

.pdp-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.25;
}

.pdp-price { margin-bottom: 16px; }

.pdp-description {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pdp-variant {
  margin-bottom: 16px;
}

.pdp-variant-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pdp-variant-select {
  max-width: 280px;
  font-size: .86rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: 'Quicksand', sans-serif;
}

.pdp-shipping-note {
  background: var(--soft-gray);
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-shipping-note i { color: var(--accent); }

/* Add to Cart area */

.pdp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.qty-btn {
  width: 38px;
  height: 44px;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s;
}

.qty-btn:hover { background: var(--soft-gray); }

.qty-input {
  width: 44px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: .92rem;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  appearance: textfield;
  -moz-appearance: textfield;
}

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

.btn-pdp-add {
  flex: 1;
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: .88rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 6px;
  transition: background .2s;
  font-family: 'Quicksand', sans-serif;
}

.btn-pdp-add:hover { background: #333; color: #fff; }

/* PDP Accordion */

.pdp-accordion { margin-top: 8px; }

.pdp-accordion .accordion-item {
  border: none;
  border-top: 1px solid var(--border);
}

.pdp-accordion .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-size: .86rem;
  font-weight: 700;
  padding: 14px 0;
  background: transparent;
  box-shadow: none;
}

.pdp-accordion .accordion-button:not(.collapsed) {
  color: var(--dark);
  background: transparent;
}

.pdp-accordion .accordion-body {
  padding: 0 0 14px 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Breadcrumb */

.breadcrumb { font-size: .8rem; margin-bottom: 0; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--dark); }

/* ── Cart Page ────────────────────────────────────────────── */

.section-cart { padding: 40px 0 70px; }

.cart-title {
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.cart-items { display: flex; flex-direction: column; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 85px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--soft-gray);
}

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

.cart-item-img img.placeholder-img {
  width: 45px; height: 45px; object-fit: contain; opacity: .1;
  margin: 20px auto; display: block;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.cart-item-name a { color: var(--dark); }
.cart-item-name a:hover { color: var(--accent); }

.cart-item-variant {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cart-item-unit-price { font-size: .8rem; color: var(--text-muted); }

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.cart-item-qty .qty-btn { width: 30px; height: 32px; font-size: .85rem; }

.qty-display {
  width: 34px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 32px;
}

.cart-item-total {
  font-size: 1rem;
  font-weight: 700;
  min-width: 65px;
  text-align: right;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: .85rem;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}

.cart-item-remove:hover { color: var(--sale); }

/* Order Summary */

.order-summary {
  background: var(--soft-gray);
  border-radius: 10px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.summary-title { font-size: 1.2rem; margin-bottom: 18px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: 8px;
}

.summary-total { font-size: 1.05rem; font-weight: 700; }

.free-shipping-hint {
  font-size: .8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.free-shipping-hint i { margin-right: 4px; }

.summary-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--text-muted);
}

.summary-trust i { margin-right: 3px; color: var(--accent); }

/* Empty Cart */

.empty-cart { padding: 70px 0; }
.empty-cart i { font-size: 3rem; color: var(--border); margin-bottom: 14px; }
.empty-cart h2 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-cart p { color: var(--text-muted); max-width: 400px; margin: 0 auto 20px; font-size: .9rem; }

/* Cross-sell */

.section-cross-sell {
  margin-top: 36px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

/* ── Toast ────────────────────────────────────────────────── */

#cartToast { background: var(--dark); color: #fff; border-radius: 8px; }
#cartToast .btn-close-white { filter: invert(1); }

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  background: var(--soft-gray);
  padding: 50px 0 24px;
}

.footer-brand { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }

.footer-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-text { font-size: .85rem; line-height: 1.7; color: var(--text-muted); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: .85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter .form-control {
  border-radius: 6px 0 0 6px;
  font-size: .82rem;
  padding: 10px 12px;
  font-family: 'Quicksand', sans-serif;
}

.footer-newsletter .btn-dark-solid {
  padding: 10px 18px;
  font-size: .78rem;
  border-radius: 0 6px 6px 0;
}

.footer-divider { border-color: var(--border); margin: 28px 0 14px; }

.footer-copyright {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-top {
    min-height: 64px;
    column-gap: 12px;
    padding: 0 2px;
  }

  .brand-logo {
    max-height: 54px;
  }

  .nav-side-left {
    gap: 8px;
  }

  .nav-side-right {
    gap: 10px;
  }

  .header-icon {
    font-size: 1.05rem;
  }

  .navbar-collapse {
    margin-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 8px;
  }

  .nav-menu-row {
    margin-top: 0;
  }

  .navbar-nav .nav-link {
    font-size: .9rem;
    text-align: center;
    padding: 9px 0;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { grid-column: 1; }
  .hero-text { padding: 28px 20px; text-align: center; }
  .hero-title { font-size: 2rem; }
  .pdp-info { padding-left: 0; margin-top: 12px; }
  .story-values { flex-wrap: wrap; }
  .stones-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .stone-item {
    flex: 0 0 calc((100% - 48px) / 5);
    scroll-snap-align: start;
  }

  .stone-item img { width: 60px; height: 60px; }
}

@media (max-width: 767.98px) {
  .hero { padding: 20px 0 0; }
  .hero-inner { min-height: auto; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-media img { display: none; }
  .hero-media video { max-height: 320px; }
  .hero-title { font-size: 1.7rem; }
  .stones-grid { gap: 12px; }
  .stone-item { flex: 0 0 calc((100% - 30px) / 3.5); }
  .stone-item img { width: 52px; height: 52px; }
  .stone-item span { font-size: .7rem; }
  .pdp-thumb { flex: 0 0 56px; width: 56px; height: 56px; }
  .pdp-title { font-size: 1.4rem; }
  .pdp-actions { flex-direction: column; align-items: stretch; }
  .btn-pdp-add { max-width: none; }
  .cart-item { flex-wrap: wrap; gap: 10px; }
  .cart-item-total { min-width: auto; }
  .section-featured, .section-collection, .section-related, .section-cross-sell { padding: 40px 0; }
  .collection-hero-title { font-size: 1.7rem; }
}
