:root {
  --orange: #f4a300;
  --orange-dark: #a96500;
  --red: #e4482c;
  --turquoise: #178fa9;
  --ink: #24211d;
  --muted: #69645d;
  --cream: #f8f4ec;
  --cream-deep: #efe7d8;
  --white: #ffffff;
  --line: #e6ddcf;
  --green: #1fae55;
  --shadow-sm: 0 8px 24px rgba(45, 35, 20, 0.08);
  --shadow-lg: 0 22px 60px rgba(45, 35, 20, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 3px;
}

.container {
  margin-inline: auto;
  width: min(var(--max), 92%);
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 9999;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 236, 0.93);
  border-bottom: 1px solid rgba(230, 221, 207, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  height: 52px;
  object-fit: contain;
  width: 52px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  margin-top: 3px;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 25px;
}

.main-nav > a:not(.button) {
  font-size: 0.91rem;
  font-weight: 750;
}

.main-nav > a:not(.button):hover {
  color: var(--red);
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  font-size: 1.8rem;
  height: 44px;
  place-items: center;
  width: 44px;
}

/* Typography and buttons */
h1,
h2,
h3 {
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 6.2vw, 6rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.05em;
}

h3 {
  letter-spacing: -0.025em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.eyebrow {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  text-transform: uppercase;
}

.eyebrow-soft {
  background: rgba(23, 143, 169, 0.11);
  color: #0e7389;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-compact {
  min-height: 42px;
  padding: 8px 15px;
}

.action-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  align-items: center;
  color: var(--turquoise);
  display: inline-flex;
  font-weight: 900;
  gap: 7px;
}

.text-link:hover {
  color: var(--red);
}

/* Home hero */
.home-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 163, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #fbf8f2 0%, #f4ede2 100%);
  overflow: hidden;
  padding: 58px 0 64px;
  position: relative;
}

.home-hero::after {
  border: 1px solid rgba(164, 117, 42, 0.17);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -190px;
  top: -170px;
  width: 520px;
}

.home-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
  position: relative;
  z-index: 1;
}

.home-hero-copy h1 {
  margin: 22px 0 24px;
  max-width: 820px;
}

.home-hero-copy .lead {
  max-width: 690px;
}

.hero-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin: 24px 0;
}

.hero-price span,
.hero-price small {
  color: var(--muted);
  font-weight: 700;
}

.hero-price strong {
  color: var(--red);
  font-size: 2.15rem;
  letter-spacing: -0.04em;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin-top: 24px;
}

.trust-list li {
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-list li::before {
  color: var(--green);
  content: "✓";
  margin-right: 7px;
}

.home-hero-visual {
  background: var(--white);
  border-radius: 44px;
  box-shadow: var(--shadow-lg);
  margin-left: auto;
  max-width: 440px;
  padding: 12px;
  position: relative;
  width: 100%;
}

.home-hero-visual video {
  aspect-ratio: 4 / 5;
  background: #161616;
  border-radius: 34px;
  object-fit: cover;
  width: 100%;
}

.visual-note {
  align-items: center;
  background: var(--ink);
  border-radius: 18px;
  bottom: 24px;
  color: var(--white);
  display: flex;
  gap: 13px;
  left: -52px;
  padding: 13px 16px;
  position: absolute;
  width: 225px;
}

.visual-note > span {
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.visual-note p {
  font-size: 0.78rem;
  line-height: 1.45;
}

/* General sections */
.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--cream-deep);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 38px;
}

.split-heading h2,
.section-heading h2 {
  margin-top: 16px;
}

.split-heading > p,
.section-heading > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading {
  margin-bottom: 38px;
  max-width: 780px;
  text-align: center;
}

.section-heading > p {
  margin-top: 12px;
}

/* Product grids */
.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.product-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-media {
  background: #ede7dd;
  overflow: hidden;
  position: relative;
}

.product-media video,
.product-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-card-wholesale .product-media img {
  object-fit: contain;
  padding: 16px;
}

.wholesale-visual {
  align-items: center;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 163, 0, 0.28), transparent 35%),
    linear-gradient(145deg, #fbf6ec, #e8ded0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.wholesale-visual.is-color {
  background:
    radial-gradient(circle at 70% 20%, rgba(23, 143, 169, 0.24), transparent 35%),
    linear-gradient(145deg, #f6f1e8, #ded6e9);
}

.mug-shape {
  background: #fff;
  border: 3px solid #2b2926;
  border-radius: 5px 5px 20px 20px;
  box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.55), 36px 36px 0 rgba(255, 255, 255, 0.25);
  display: block;
  height: 82px;
  margin: 0 35px 28px 0;
  position: relative;
  width: 88px;
}

.mug-shape::after {
  border: 9px solid #2b2926;
  border-left: 0;
  border-radius: 0 28px 28px 0;
  content: "";
  height: 39px;
  position: absolute;
  right: -31px;
  top: 12px;
  width: 22px;
}

.wholesale-visual.is-color .mug-shape {
  border-top: 12px solid var(--turquoise);
}

.wholesale-visual strong {
  color: var(--red);
  font-size: 2.3rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.wholesale-visual small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: 6px;
  text-transform: uppercase;
}

.wholesale-visual-large {
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  min-height: 500px;
}

.wholesale-visual-large .mug-shape {
  transform: scale(1.45);
  margin-bottom: 55px;
}

.card-badge {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  left: 12px;
  padding: 6px 10px;
  position: absolute;
  top: 12px;
  z-index: 2;
}

.product-card-body {
  padding: 20px;
}

.card-category {
  color: var(--red) !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.28rem;
  margin: 7px 0 10px;
}

.product-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-price-row {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
  margin: 16px 0;
  padding: 13px 0;
}

.card-price-row strong {
  color: var(--red);
  font-size: 1.16rem;
}

.card-price-row small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

/* Comparison */
.comparison-section {
  background: var(--ink);
  color: var(--white);
}

.comparison-section .section-heading > p,
.comparison-section .table-note {
  color: #cbc5bc;
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid #49443d;
  padding: 17px 18px;
  text-align: left;
}

.comparison-table thead th {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-weight: 900;
}

.comparison-table tbody td:last-child {
  color: var(--orange);
  font-weight: 900;
}

.table-note {
  font-size: 0.82rem;
  margin-top: 15px;
}

/* Process */
.process-panel {
  align-items: start;
  display: grid;
  gap: clamp(36px, 8vw, 90px);
  grid-template-columns: 0.75fr 1.25fr;
}

.process-panel h2 {
  margin-top: 16px;
}

.process-list {
  display: grid;
  list-style: none;
}

.process-list li {
  align-items: start;
  border-top: 1px solid #cfc3b2;
  display: grid;
  gap: 16px;
  grid-template-columns: 44px 1fr;
  padding: 20px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid #cfc3b2;
}

.process-list li > span {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.process-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.process-list p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Wholesale and contact strip */
.wholesale-section {
  background:
    linear-gradient(120deg, rgba(244, 163, 0, 0.11), transparent 40%),
    var(--cream);
}

.contact-strip {
  align-items: center;
  background: #fff7e3;
  border: 1px solid #eed8aa;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 38px;
}

.contact-strip h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  margin: 14px 0 8px;
}

.contact-strip p {
  color: var(--muted);
  max-width: 700px;
}

/* FAQ */
.faq-section {
  background: #f5efe6;
}

.faq-list {
  display: grid;
  gap: 11px;
  max-width: 840px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 18px 50px 18px 20px;
  position: relative;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-size: 1.4rem;
  position: absolute;
  right: 20px;
  top: 12px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  padding: 0 20px 20px;
}

/* Closing and footer */
.closing-cta {
  background: var(--orange);
  padding: 60px 0;
}

.closing-inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.closing-inner > div > span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 8px;
  max-width: 780px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 46px 0 90px;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
}

.site-footer p,
.site-footer a {
  color: #cfc9c0;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer .footer-title {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 7px;
}

.site-footer .footer-label {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.floating-whatsapp {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  padding: 13px 20px;
  position: fixed;
  right: 20px;
  z-index: 900;
}

/* Product pages */
.product-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(23, 143, 169, 0.18), transparent 28%),
    var(--cream);
  padding: 28px 0 76px;
}

.wholesale-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(244, 163, 0, 0.22), transparent 28%),
    #fbf6eb;
}

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 7px;
  margin-bottom: 40px;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.product-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 95px);
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
}

.product-copy h1 {
  font-size: clamp(2.8rem, 5.6vw, 5.5rem);
  margin: 20px 0 22px;
}

.product-copy .lead {
  max-width: 700px;
}

.product-price-box {
  border-left: 4px solid var(--orange);
  display: grid;
  gap: 2px;
  margin: 24px 0;
  padding: 3px 0 3px 16px;
}

.product-price-box span,
.product-price-box small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.product-price-box strong {
  color: var(--red);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.microcopy {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 13px;
  max-width: 610px;
}

.product-featured-media {
  background: var(--white);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  margin-left: auto;
  max-width: 460px;
  padding: 12px;
  position: relative;
  width: 100%;
}

.product-featured-media video,
.product-featured-media img {
  aspect-ratio: 4 / 5;
  background: #151515;
  border-radius: 30px;
  object-fit: contain;
  width: 100%;
}

.product-featured-media img {
  background: #f3ede3;
  object-fit: contain;
  padding: 18px;
}

.media-label {
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 8px 12px;
  position: absolute;
  right: -16px;
  top: 28px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 175px;
  padding: 22px;
}

.feature-card > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-top: 38px;
}

.gallery-section {
  background: #201e1b;
  color: var(--white);
}

.gallery-section .section-heading > p {
  color: #c8c2b8;
}

.video-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-tile {
  background: #2c2925;
  border: 1px solid #49443d;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-tile video {
  aspect-ratio: 4 / 5;
  background: #0e0e0e;
  object-fit: contain;
  width: 100%;
}

.video-tile > div {
  padding: 16px;
}

.video-tile h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.ideal-panel {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.85fr 1.15fr;
}

.ideal-panel h2 {
  margin-top: 15px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  list-style: none;
}

.tag-list li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  padding: 11px 16px;
}

.related-section {
  background: var(--cream-deep);
}

/* Contact page */
.contact-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 163, 0, 0.22), transparent 30%),
    var(--cream);
  padding: 82px 0;
}

.contact-hero-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  margin: 20px 0 22px;
}

.contact-hero .lead {
  margin-bottom: 26px;
  max-width: 650px;
}

.contact-data-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  padding: 26px;
}

.contact-data-card > div {
  border-bottom: 1px solid #4a453f;
  display: grid;
  gap: 3px;
  padding: 17px 0;
}

.contact-data-card > div:last-child {
  border-bottom: 0;
}

.contact-data-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-product-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.contact-product-link {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 17px;
  transition: border 160ms ease, transform 160ms ease;
}

.contact-product-link:hover {
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

.contact-product-link > span:first-child {
  color: var(--turquoise);
}

.contact-product-link > span:not(:first-child) {
  font-weight: 850;
}

.contact-product-link > strong {
  color: var(--red);
  white-space: nowrap;
}

.social-section {
  background: var(--ink);
  color: var(--white);
}

.social-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.social-grid h2 {
  margin-top: 15px;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  align-items: center;
  border-bottom: 1px solid #4a453f;
  display: flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: space-between;
  padding: 16px 0;
}

.social-links a:hover {
  color: var(--orange);
}

.social-links span {
  color: #bcb5ac;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.83rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    height: 44px;
    width: 44px;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 4%;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    padding: 14px 4px;
  }

  .main-nav .button {
    margin-top: 14px;
  }

  .home-hero-grid,
  .product-hero-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    text-align: center;
  }

  .home-hero-copy .lead {
    margin-inline: auto;
  }

  .home-hero-copy .action-row,
  .hero-price,
  .trust-list {
    justify-content: center;
  }

  .home-hero-visual,
  .product-featured-media {
    margin-inline: auto;
  }

  .split-heading,
  .process-panel,
  .ideal-panel,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
  }

  .feature-grid,
  .video-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-panel {
    gap: 28px;
  }

  .closing-inner,
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(92%, 440px);
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .home-hero,
  .contact-hero {
    padding: 42px 0 54px;
  }

  .product-hero {
    padding-bottom: 54px;
  }

  .product-copy h1,
  .contact-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section {
    padding: 62px 0;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    align-items: center;
    flex-direction: column;
  }

  .home-hero-visual,
  .product-featured-media {
    max-width: 370px;
  }

  .visual-note {
    bottom: 18px;
    left: 18px;
  }

  .product-grid,
  .product-grid-two,
  .product-grid-three,
  .feature-grid,
  .video-gallery,
  .contact-product-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .product-media,
  .product-media video,
  .product-media img {
    height: 100%;
    min-height: 100%;
  }

  .product-media video,
  .product-media img {
    aspect-ratio: auto;
  }

  .product-media .wholesale-visual {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }

  .product-media .wholesale-visual .mug-shape {
    box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.4);
    height: 54px;
    margin: 0 24px 18px 0;
    transform: scale(0.8);
    width: 60px;
  }

  .product-media .wholesale-visual strong {
    font-size: 1.55rem;
  }

  .product-media .wholesale-visual small {
    font-size: 0.58rem;
  }

  .product-card-body {
    padding: 15px;
  }

  .product-card h3 {
    font-size: 1.06rem;
  }

  .product-card-body > p:not(.card-category) {
    display: none;
  }

  .card-price-row {
    margin: 10px 0;
    padding: 9px 0;
  }

  .card-price-row strong {
    font-size: 1rem;
  }

  .card-price-row small {
    font-size: 0.65rem;
  }

  .text-link {
    font-size: 0.79rem;
  }

  .contact-strip {
    padding: 26px;
  }

  .product-price-box strong {
    font-size: 1.7rem;
  }

  .media-label {
    right: 10px;
    top: 22px;
  }

  .breadcrumbs {
    margin-bottom: 26px;
  }

  .video-tile video {
    aspect-ratio: 4 / 5;
  }

  .contact-data-card {
    padding: 20px;
  }

  .social-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .closing-cta {
    padding: 46px 0;
  }

  .floating-whatsapp {
    bottom: 12px;
    justify-content: center;
    left: 12px;
    right: 12px;
  }

  .site-footer {
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
