/* ===== SO PLUMP COSMETICS — SHARED STYLES ===== */

:root {
  --copper: #b87a4b;
  --copper-light: #c9956b;
  --copper-dark: #9a6339;
  --tan: #d4a87c;
  --cream: #faf5f0;
  --cream-dark: #f0e6d8;
  --dark: #2c2c2c;
  --gold: #c9a96e;
  --gold-light: #e0c992;
  --gold-shimmer: linear-gradient(135deg, #c9a96e 0%, #e0c992 50%, #c9a96e 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: var(--gold);
}
.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== NAVBAR ===== */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Solid navbar for inner pages */
.navbar-custom.solid {
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-custom .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.navbar-custom .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 767px) {
  .navbar-custom .nav-links {
    display: none;
  }
}

.navbar-custom .nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
}

.navbar-custom .nav-links a:hover {
  color: var(--gold-light);
}

.navbar-custom .btn-shop {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  color: var(--dark);
  padding: 0.5rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-custom .btn-shop:hover {
  background-position: right center;
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .navbar-custom .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
  }
  .navbar-custom .nav-links.open { display: flex !important; }
  .navbar-custom .nav-links li {
    text-align: center;
    padding: 0.8rem 0;
  }
  .navbar-custom .nav-links .btn-shop {
    margin-top: 0.5rem;
  }
}

/* ===== HERO ===== */
.hero {
  background: url('/1.png') center/cover no-repeat;
  min-height: 100vh;
  min-height: 100svh; /* small viewport height — accounts for mobile browser chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .hero {
    background-position: 60% center;
    min-height: 40svh;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: 55% center;
    min-height: 35svh;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero .scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 8rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  background: var(--cream);
  padding: 6rem 0;
}

.product-card {
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  color: var(--dark);
}

.product-card .card-img-top {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--cream-dark);
}

.product-card .img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--tan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--copper);
  letter-spacing: 2px;
}

.product-card .card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--copper-dark);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-card .card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  flex: 1;
}

.product-card .card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper);
  margin-top: 1rem;
}

.product-card .badge-bestseller {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-shimmer);
  color: var(--dark);
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

/* ===== SECTION: ABOUT ===== */
.about {
  background-color: var(--cream);
  padding: 6rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}

.about h2 {
  color: var(--copper-dark);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about p {
  font-size: 1.08rem;
  line-height: 2;
  color: #555;
}

.about .lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--copper);
  line-height: 1.8;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about .signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--copper);
  font-size: 1.3rem;
  margin-top: 2rem;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  background: var(--dark);
  color: #fff;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.product-detail::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.product-detail h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.product-detail .product-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}

.product-detail .product-description {
  font-size: 1.1rem;
  line-height: 2;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.product-img-wrapper {
  position: relative;
  text-align: center;
}

.product-img-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
}

.product-img {
  max-height: 480px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.product-img:hover {
  transform: scale(1.03);
}

.product-img-placeholder {
  width: 300px;
  height: 400px;
  background: linear-gradient(135deg, rgba(201,169,110,0.2) 0%, rgba(201,169,110,0.05) 100%);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-list li {
  font-size: 1.15rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ingredient-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-plump {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  color: var(--dark);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
}

.btn-plump:hover {
  background-position: right center;
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
  transform: translateY(-2px);
}

.btn-plump-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-plump-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== TAGLINE BANNER ===== */
.tagline-banner {
  background: linear-gradient(
    135deg,
    var(--copper-dark) 0%,
    var(--copper) 30%,
    var(--tan) 60%,
    var(--copper-light) 100%
  );
  color: #fff;
  text-align: center;
  padding: 7rem 0;
  position: relative;
}

.tagline-banner::before,
.tagline-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}
.tagline-banner::before { top: 0; }
.tagline-banner::after { bottom: 0; }

.tagline-banner h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.tagline-banner .brand-footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 300;
}

.tagline-banner .gold-line {
  width: 120px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ===== HOW TO USE ===== */
.howto {
  background-color: var(--cream);
  color: var(--dark);
  padding: 7rem 0;
  position: relative;
}

.howto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}

.howto h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 1.5rem;
}

.howto p {
  font-size: 1.05rem;
  line-height: 2;
  color: #555;
}

.howto .ingredients-text {
  font-size: 0.92rem;
  line-height: 2;
  color: #777;
}

.howto .card-custom {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto .card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.howto .card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-shimmer);
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--cream);
  padding: 6rem 0;
}

.review-card {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  position: relative;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-shimmer);
}

.review-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card .review-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-card .reviewer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper-dark);
}

.review-card .review-product {
  font-size: 0.85rem;
  color: var(--copper);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--dark);
  color: #fff;
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== EMAIL SIGNUP ===== */
.email-signup {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.email-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}

.email-signup h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.email-signup p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.email-signup .signup-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.email-signup .signup-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-signup .signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.email-signup .signup-form input[type="email"]:focus {
  border-color: var(--gold);
}

.email-signup .signup-form button {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  color: var(--dark);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-signup .signup-form button:hover {
  background-position: right center;
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}

.email-signup .signup-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  display: none;
}

@media (max-width: 480px) {
  .email-signup .signup-form {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1rem;
  }
  .email-signup .signup-form button {
    padding: 0.9rem;
  }
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
}

.blog-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shimmer);
}

.blog-card {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  color: var(--dark);
}

.blog-card .blog-card-body {
  padding: 2rem;
  flex: 1;
}

.blog-card .blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--copper-dark);
  margin-bottom: 0.8rem;
}

.blog-card .blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.blog-card .blog-card-date {
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  position: relative;
  text-align: center;
}

.product-gallery .main-img-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-gallery .main-img-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
}

.product-gallery .main-img {
  max-height: 480px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.product-gallery .main-img:hover {
  transform: scale(1.03);
}

.product-gallery .thumb-row {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-gallery .thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-gallery .thumb:hover,
.product-gallery .thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.product-gallery .thumb-placeholder {
  display: none;
}

@media (max-width: 768px) {
  .product-gallery .main-img { max-height: 300px; margin-bottom: 1rem; }
  .product-gallery .main-img-wrapper::before { width: 220px; height: 220px; }
  .product-gallery .thumb { width: 55px; height: 55px; }
  .product-gallery .thumb-placeholder { width: 55px; height: 55px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* hero mobile handled above with svh units */
  .about h2 { font-size: 2rem; }
  .product-detail { padding: 4rem 0; }
  .product-detail h2 { font-size: 2.4rem; }
  .tagline-banner h3 { font-size: 1.6rem; }
  .product-img { max-height: 300px; margin-bottom: 2rem; }
  .product-img-wrapper::before { width: 220px; height: 220px; }
  .howto .card-custom { padding: 2rem; }
  .tagline-banner { padding: 4rem 0; }
  .about, .howto { padding: 4rem 0; }
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero h1 { font-size: 2rem; }
  .product-card .card-img-top,
  .product-card .img-placeholder { height: 240px; }
}
